Lines 35-44
Link Here
|
35 |
transfer_order_popup( $(this).data("ordernumber")); |
35 |
transfer_order_popup( $(this).data("ordernumber")); |
36 |
}); |
36 |
}); |
37 |
|
37 |
|
38 |
$("#show_all_prices").click(function(){ |
38 |
$("table .statistics").hide(); |
39 |
if ($("#show_all_prices").is(":checked")){ |
39 |
$("table .tax_included").hide(); |
40 |
$("table .tax_excluded").show(); |
40 |
|
|
|
41 |
$("#show_all_prices").on("click",function(){ |
42 |
if ($("#show_all_prices").is(":checked") ){ |
41 |
$("table .tax_included").show(); |
43 |
$("table .tax_included").show(); |
|
|
44 |
$("table .tax_excluded").show(); |
42 |
} else { |
45 |
} else { |
43 |
[% IF ( listincgst ) %] |
46 |
[% IF ( listincgst ) %] |
44 |
$("table .tax_excluded").hide(); |
47 |
$("table .tax_excluded").hide(); |
Lines 505-519
Link Here
|
505 |
<th class="tax_included">[% foot_loo.total_tax_included | $Price %]</th> |
508 |
<th class="tax_included">[% foot_loo.total_tax_included | $Price %]</th> |
506 |
<th> </th> |
509 |
<th> </th> |
507 |
<th>[% foot_loo.tax_value | $Price %]</th> |
510 |
<th>[% foot_loo.tax_value | $Price %]</th> |
508 |
<th> </th> |
|
|
509 |
<th> </th> |
510 |
<th class="gste">[% foot_loo.totalgste %]</th> |
511 |
<th class="gste">[% foot_loo.totalgste %]</th> |
511 |
<th class="gsti">[% foot_loo.totalgsti %]</th> |
512 |
<th class="gsti">[% foot_loo.totalgsti %]</th> |
512 |
<th/> |
513 |
<th class="statistics"> </th> |
513 |
<th>[% foot_loo.gstvalue %]</th> |
514 |
<th class="statistics"> </th> |
514 |
<th/> |
|
|
515 |
<th class="statistics" /> |
516 |
<th class="statistics" /> |
517 |
[% IF ( active ) %] |
515 |
[% IF ( active ) %] |
518 |
[% UNLESS ( closedate ) %] |
516 |
[% UNLESS ( closedate ) %] |
519 |
<th> </th> |
517 |
<th> </th> |
Lines 534-548
Link Here
|
534 |
<th class="tax_included">[% total_tax_included | $Price %]</th> |
532 |
<th class="tax_included">[% total_tax_included | $Price %]</th> |
535 |
<th> </th> |
533 |
<th> </th> |
536 |
<th>[% total_tax_value | $Price %]</th> |
534 |
<th>[% total_tax_value | $Price %]</th> |
537 |
<th> </th> |
535 |
<th class="gste">[% foot_loo.totalgste %]</th> |
538 |
<th> </th> |
536 |
<th class="gsti">[% foot_loo.totalgsti %]</th> |
539 |
<th class="gste">[% total_gste %]</th> |
537 |
<th class="statistics"> </th> |
540 |
<th class="gsti">[% total_gsti %]</th> |
538 |
<th class="statistics"> </th> |
541 |
<th/> |
539 |
|
542 |
<th>[% total_gstvalue %]</th> |
|
|
543 |
<th/> |
544 |
<th class="statistics" /> |
545 |
<th class="statistics" /> |
546 |
[% IF ( active ) %] |
540 |
[% IF ( active ) %] |
547 |
[% UNLESS ( closedate ) %] |
541 |
[% UNLESS ( closedate ) %] |
548 |
<th> </th> |
542 |
<th> </th> |
Lines 680-687
Link Here
|
680 |
<th>GST %</th> |
674 |
<th>GST %</th> |
681 |
<th>GST</th> |
675 |
<th>GST</th> |
682 |
<th>Fund</th> |
676 |
<th>Fund</th> |
683 |
<th class="statistic">Statistic 1</th> |
677 |
<th class="statistics">Statistic 1</th> |
684 |
<th class="statistic">Statistic 2</th> |
678 |
<th class="statistics">Statistic 2</th> |
685 |
</tr> |
679 |
</tr> |
686 |
</thead> |
680 |
</thead> |
687 |
<tbody> |
681 |
<tbody> |
Lines 732-745
Link Here
|
732 |
<td class="number tax_included">[% order.total_tax_included | $Price %]</td> |
726 |
<td class="number tax_included">[% order.total_tax_included | $Price %]</td> |
733 |
<td class="number">[% order.tax_rate * 100 %]</td> |
727 |
<td class="number">[% order.tax_rate * 100 %]</td> |
734 |
<td class="number">[% order.tax_value | $Price %]</td> |
728 |
<td class="number">[% order.tax_value | $Price %]</td> |
735 |
<td>[% order.budget_name %] |
|
|
736 |
<td class="number gste">[% order.totalgste %]</td> |
737 |
<td class="number gsti">[% order.totalgsti %]</td> |
738 |
<td class="number">[% order.gstgsti %]</td> |
739 |
<td class="number">[% order.gstvalue %]</td> |
740 |
<td>[% order.budget_name %]</td> |
729 |
<td>[% order.budget_name %]</td> |
741 |
<td class="statistic">[% order.sort1 %]</td> |
730 |
<td class="statistics">[% order.sort1 %]</td> |
742 |
<td class="statistic">[% order.sort2 %]</td> |
731 |
<td class="statistics">[% order.sort2 %]</td> |
743 |
</tr> |
732 |
</tr> |
744 |
[% END %] |
733 |
[% END %] |
745 |
</tbody> |
734 |
</tbody> |
746 |
- |
|
|