aboutsummaryrefslogblamecommitdiff
path: root/include/discounts-overview.php
blob: c6c3421178c5b7d634e6f2bddf9922c3c3d8e2ad (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                             
  


                                                                       
  


                                                                  
  

                                                                        
 
                                        



















                                                                                                                            
                                                                                                     
                                                                                                                    
                                                                                                            
                                                                                  
                                                                                                                                                                               
                                                                                                                                                                                                           
                                                                                                                                                                                                                                      
                                                                                  
                                                                                                                                                                                                                                                                                                                          
                                                                                  
                                                                                                                                                                                                                                                                                             
                                                                                  
                                                                                                                                                                    


                                                                     
                                                                                                                             









                                                           
                                                                                                                                                              






                                                                                                                                                                                                                              
                                                                                                                                                                                                       




                                                                     
                                                                                                                         


                                                                                                                                        
                                                         
                                                                                                                                  
                                                                                                                                            



                                                                                                                                                                                                                  
                                                                                                      
                                                                                                                         



                                                                                                                                                                   
                                                                                                                     











































                                                                                                                                                                   
<?php
/**
 * BusinessAdmin: administrative software for small companies
 * Copyright (C) 2015 Camil Staps (ViviSoft)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

require_once(__DIR__ . '/../login.php');
?>

<div class="col-lg-12">
	<div class="panel panel-default">
		<div class="panel-heading">Overview</div>
		<div class="panel-body table-responsive">
			<table class="table table-bordered table-striped mixitup dataTable" id="overview-discounts">
				<thead>
					<tr>
						<th class="mixitup-sort sorting" data-sort="mixerOrderId:desc">#</th>
						<th class="mixitup-sort sorting" data-sort="mixerOrderOffer:desc">Offer</th>
						<th>Briefing</th>
						<th class="mixitup-sort sorting" data-sort="mixerOrderValue:desc">Value</th>
						<th>Tools</th>
					</tr>
				</thead>
				<tbody>
					<?php
					$discounts = BusinessAdmin::getDiscounts($_pdo);
					foreach ($discounts as $discount) {
						echo "<tr class='mix'
								data-mixer-order-id='{$discount->id}'
								data-mixer-order-offer='{$discount->getOffer()->id}'
								data-mixer-order-value='{$discount->value}'>
							<td class='col-min-width'>{$discount->id}</td>
							<td class='col-min-width'>
								<a href='".Constants::url_internal."/offers?id={$discount->getOffer()->id}'>#{$discount->getOffer()->id}</a> to
								<a href='".Constants::url_internal."/contacts?id={$discount->getOffer()->getContact()->id}'>{$discount->getOffer()->getContact()->name}</a>
								(<a href='".Constants::url_internal."/clients?id={$discount->getOffer()->getContact()->getClient()->id}'>{$discount->getOffer()->getContact()->getClient()->name}</a>)
							<td class='col-max-width'>
								<b><a href='#' class='editable' id='editable-discount-{$discount->id}-title' data-type='text' data-pk='{$discount->id}' data-url='".Constants::url_external."discounts/edit'>{$discount->title}</a></b><br/>
								<p><a href='#' class='editable editable-noshow' id='editable-discount-{$discount->id}-description' data-type='textarea' data-mode='inline' data-pk='{$discount->id}' data-url='".Constants::url_external."discounts/edit'>{$discount->description}</a></p>
							</td>
							<td class='col-min-width'>
							   ".Constants::invoice_valuta."<a href='#' class='editable' id='editable-discount-{$discount->id}-value' data-type='text' data-pk='{$discount->id}' data-url='".Constants::url_external."discounts/edit'>{$discount->value}</a><br/>
								<a href='#' class='editable' id='editable-discount-{$discount->id}-vat' data-type='text' data-pk='{$discount->id}' data-url='".Constants::url_external."discounts/edit'>{$discount->VAT_percentage}</a>% VAT
							</td>
							<td class='col-min-width'>
								<a title='View' href='?id={$discount->id}' class='btn btn-primary btn-circle fa fa-arrow-right'></a>
								<a title='Delete' href='?delete={$discount->id}' class='btn btn-danger btn-circle fa fa-times'></a>
							</td>
						</tr>";
					}
					if (count($discounts) == 0) {
						echo "<tr><td colspan='6'>There are no discounts in the database.</td></tr>";
					}
					?>
				</tbody>
			</table>
		</div>
	</div>
</div>
<div class="col-lg-12">
	<div class="panel panel-default">
		<div class="panel-heading">Create new</div>
		<div class="panel-body">
			<form role="form" id="newDiscount" action='<?=Constants::url_external?>discounts/new' method="post" class="bootstrapValidator ajaxify"
				data-ajaxify-options='{"success":"newDiscountSuccess","error":"newDiscountError","beforeSubmit":"newDiscountBeforeSubmit"}'>
				<div class="ajaxify-response alert alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><span class="ajaxify-response-text"></span></div>
				<div class="col-lg-6">
					<div class="form-group">
						<label>Offer:</label>
						<select name="offerId" class="form-control">
							<?php
							foreach (BusinessAdmin::getOffers($_pdo) as $offer) {
								echo "<option value='{$offer->id}'>#{$offer->id} to {$offer->getContact()->name} ({$offer->getContact()->getClient()->name})</option>";
							}
							?>
						</select>
					</div>
					<div class="form-group">
						<label>Title:</label>
						<input
							type="text" name="title" class="form-control" placeholder="Title"
							data-bv-notempty="true" data-bv-notempty-message="You have to provide a title"/>
					</div>
					<div class="form-group">
						<label>Description:</label>
						<textarea
							name="description" class="form-control" placeholder="Description" rows="4"
							data-bv-notempty="true" data-bv-notempty-message="You have to provide a description"
							data-bv-stringlength="true" data-bv-stringlength-message="The description should have at most 1000 characters" data-bv-stringlength-max="1000"></textarea>
					</div>
				</div>
				<div class="col-lg-6">
					<div class="form-group">
						<label>Value (<?=Constants::invoice_valuta?>):</label>
						<input
							type="text" name="value" class="form-control" placeholder="Value"
							data-bv-notempty="true" data-bv-notempty-message="You have to give a value"
							data-bv-numeric="true" data-bv-numeric-message="Please enter a number (with a '.' as decimal separator)" />
					</div>
					<div class="form-group">
						<label>VAT (%):</label>
						<input
							type="text" name="vat" class="form-control" placeholder="VAT"
							data-bv-notempty="true" data-bv-notempty-message="You have to provide a VAT percentage"
							data-bv-numeric="true" data-bv-numeric-message="Please enter a number (with a '.' as decimal separator)" />
					</div>
				</div>
				<div class="col-lg-6">
					<button type="submit" class="btn btn-default">Go</button>
				</div>
			</form>
			<script type="text/javascript">
			// Callback for before the form is submitted
			function newDiscountBeforeSubmit() {
				$('#newDiscount input').prop('disabled', true);
				$('#newDiscount .ajaxify-response').hide().removeClass('alert-success alert-danger').find('.ajaxify-response-text').html('');
			}

			// Callback for when the form is successfully submitted
			function newDiscountSuccess(data) {
				$('#newDiscount .ajaxify-response')
					.addClass(data.success ? 'alert-success' : 'alert-danger')
					.show()
					.find('.ajaxify-response-text')
						.html(data.message);

				$('#newDiscount input, #newDiscount button').prop('disabled', false);
				$('#newDiscount').data('bootstrapValidator').resetForm();
				if (data.success) {
					$('#newDiscount input, #newDiscount textarea').val('');
				}
			}

			// Callback for when form submission encountered an error
			function newDiscountError() {
				$('#newDiscount .ajaxify-response')
					.addClass('alert-danger')
					.show()
					.find('.ajaxify-response-text')
						.html('An unknown error occurred. Please contact support.');

				$('#newDiscount input, #newDiscount button').prop('disabled', false);
					$('#newDiscount').data('bootstrapValidator').resetForm();
			}
			</script>
		</div>
	</div>
</div>