176 lines
5.8 KiB
PHP
176 lines
5.8 KiB
PHP
<?php
|
|
|
|
echo $javascript->link('job_index');
|
|
?>
|
|
|
|
|
|
<h2><?php __('Jobs');?></h2>
|
|
|
|
|
|
|
|
<? //<iframe src="/jobs/index_grid" id="jobs_grid_iframe"></iframe>
|
|
?>
|
|
|
|
|
|
|
|
<?php
|
|
echo $paginator->counter(array(
|
|
'format' => __('Page %page% of %pages%, showing %current% Jobs of %count%', true)
|
|
));
|
|
?>
|
|
<div class="paging">
|
|
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
|
|
| <?php echo $paginator->numbers();?>
|
|
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class'=>'disabled'));?>
|
|
</div>
|
|
|
|
|
|
|
|
<div class="outer">
|
|
<table cellpadding="0" cellspacing="0" class="jobsTable">
|
|
<thead>
|
|
<tr>
|
|
|
|
<th class="actions">Actions</th>
|
|
<th><?php echo $paginator->sort('Order Received');?></th>
|
|
<th><?php echo $paginator->sort('Status');?></th>
|
|
<th><?php echo $paginator->sort('Sale Category');?></th>
|
|
<th><?php echo $paginator->sort('Job Type');?></th>
|
|
<th><?php echo $paginator->sort('Shipment Category');?></th>
|
|
<th><?php echo $paginator->sort('Job Number');?></th>
|
|
<th>Enquiry Number</th>
|
|
<th>CMC POs</th>
|
|
<th><?php echo $paginator->sort('Customer');?></th>
|
|
<th>Customer Order No</th>
|
|
<th><?php echo $paginator->sort('Supplier Ref');?></th>
|
|
<th><?php echo $paginator->sort('Scheduled Ex-Works');?></th>
|
|
<th><?php echo $paginator->sort('Date Sent to Customer');?></th>
|
|
<th><?php echo $paginator->sort('Freight Paid By CMC');?></th>
|
|
<th><?php echo $paginator->sort('Sale Currency');?></th>
|
|
<th><?php echo $paginator->sort('Gross Sales AUD');?></th>
|
|
<th><?php echo $paginator->sort('Net Sales AUD');?></th>
|
|
<th><?php echo $paginator->sort('Gross Profit AUD');?></th>
|
|
<th><?php echo $paginator->sort('Net Export Sales Converted to Or Charged in AUD');?></th>
|
|
<th><?php echo $paginator->sort('Gross Profit Value Export in AUD');?></th>
|
|
<th><?php echo $paginator->sort('GP% Excl Commissions');?></th>
|
|
<th><?php echo $paginator->sort('Company Gross Sales AUD');?></th>
|
|
<th><?php echo $paginator->sort('ATO Exchange Rate');?></th>
|
|
<th><?php echo $paginator->sort('Gross Australian Sales Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Net Australian Sales Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Gross Profit value Australian Sales Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Gross Export Sales Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Net Export Sales Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Gross Profit Value After Discount Exports Foreign Currency');?></th>
|
|
<th><?php echo $paginator->sort('Gross Commissions');?></th>
|
|
<th><?php echo $paginator->sort('Net Commisions');?></th>
|
|
<th class="actions"><?php __('Actions');?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<? foreach($jobs as $job):?>
|
|
|
|
|
|
<tr id="<?=$job['Job']['id']?>">
|
|
<? echo $form->create('Job', array('action'=>'ajax_edit', 'id'=>'form_'.$job['Job']['id'], 'class'=>'job_table_form')); ?>
|
|
<?=$form->input('id', array('type'=>'hidden', 'value'=>$job['Job']['id'])); ?>
|
|
<td><button class="editButton">Edit</button> <button class="saveButton">Save</button> <button class="cancelButton">Cancel</button></td>
|
|
<td><?=$job['Job']['date_order_received'];?></td>
|
|
<td><?=$job['Job']['job_status'];?></td>
|
|
<td>
|
|
<?=$job['Job']['sale_category'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['job_type'];?></td>
|
|
<td><?=$job['Job']['shipment_category'];?></td>
|
|
<td><?=$html->link($job['Job']['title'], array('controller'=>'jobs', 'action'=>'view', $job['Job']['id']));?></td>
|
|
<td><?=$html->link($job['Enquiry']['title'], array('controller'=>'enquiries','action'=>'view', $job['Enquiry']['id']));?>
|
|
<td><?
|
|
$poString = '';
|
|
foreach($job['PurchaseOrder'] as $po) {
|
|
$poString .= ' '.$html->link($po['title'], array('controller'=>'purchase_orders', 'action'=>'view', $po['id']));
|
|
}
|
|
echo $poString;
|
|
?>
|
|
</td>
|
|
<td><?=$html->link($job['Customer']['name'], array('controller'=>'customers','action'=>'view', $job['Customer']['id']));?></td>
|
|
<td>
|
|
<?=$job['Job']['customer_order_number'];?>
|
|
</td>
|
|
|
|
<td>
|
|
<?=$job['Job']['supplier_reference'];?>
|
|
</td>
|
|
|
|
<td>
|
|
<?=$job['Job']['date_scheduled_ex_works'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['date_order_sent_to_customer'];?>
|
|
|
|
</td>
|
|
<td> <?=$job['Job']['domestic_freight_paid_by'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Currency']['name'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['company_gross_sales_aud'];?>
|
|
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['net_sales_aud'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['gross_profit_aud'];?>
|
|
</td>
|
|
<td>
|
|
Net Export Sales Conv to AUD?
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['gross_profit_exports_aud'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['gp_percent'];?>
|
|
</td>
|
|
<td>? Double column?</td>
|
|
<td>
|
|
<?=$job['Job']['ato_exchange_rate'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['gross_australian_sales_foreign_currency'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['net_australian_sales_foreign_currency'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['gross_profit_value_australian_sales_foreign_currency'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['gross_export_sales_foreign_currency'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['net_export_sales_foreign_currency'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['gross_profit_value_after_discount_exports_foreign_currency'];?>
|
|
</td>
|
|
<td>
|
|
<?=$job['Job']['gross_commissions'];?>
|
|
</td>
|
|
<td> <?=$job['Job']['net_commissions'];?>
|
|
</td>
|
|
<td><button class="editButton">Edit</button> <button class="saveButton">Save</button> <button class="cancelButton">Cancel</button></td>
|
|
</tr>
|
|
<?=$form->end();?>
|
|
|
|
|
|
<? endforeach;?>
|
|
</tbody>
|
|
</table>
|
|
<div class="paging">
|
|
|
|
<?php echo $paginator->prev('<< '.__('previous', true), array(), null, array('class'=>'disabled'));?>
|
|
| <?php echo $paginator->numbers();?>
|
|
<?php echo $paginator->next(__('next', true).' >>', array(), null, array('class'=>'disabled'));?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<? //debug($jobs);
|
|
?>
|