Lines 404-409
Link Here
|
404 |
<table id="orders"> |
404 |
<table id="orders"> |
405 |
<thead> |
405 |
<thead> |
406 |
<tr> |
406 |
<tr> |
|
|
407 |
<th>No.</th> |
407 |
<th>Order</th> |
408 |
<th>Order</th> |
408 |
<th class="gste">RRP tax exc.</th> |
409 |
<th class="gste">RRP tax exc.</th> |
409 |
<th class="gste">ecost tax exc.</th> |
410 |
<th class="gste">ecost tax exc.</th> |
Lines 426-431
Link Here
|
426 |
<tfoot> |
427 |
<tfoot> |
427 |
[% FOREACH foot_loo IN book_foot_loop %] |
428 |
[% FOREACH foot_loo IN book_foot_loop %] |
428 |
<tr> |
429 |
<tr> |
|
|
430 |
<th></th> |
429 |
<th>Total (GST [% foot_loo.gstgsti %])</th> |
431 |
<th>Total (GST [% foot_loo.gstgsti %])</th> |
430 |
<th class="gste"> </th> |
432 |
<th class="gste"> </th> |
431 |
<th class="gste"> </th> |
433 |
<th class="gste"> </th> |
Lines 446-451
Link Here
|
446 |
</tr> |
448 |
</tr> |
447 |
[% END %] |
449 |
[% END %] |
448 |
<tr> |
450 |
<tr> |
|
|
451 |
<th></th> |
449 |
<th>Total ([% currency %])</th> |
452 |
<th>Total ([% currency %])</th> |
450 |
<th class="gste"> </th> |
453 |
<th class="gste"> </th> |
451 |
<th class="gste"> </th> |
454 |
<th class="gste"> </th> |
Lines 469-475
Link Here
|
469 |
[% FOREACH books_loo IN books_loop %] |
472 |
[% FOREACH books_loo IN books_loop %] |
470 |
[% IF ( books_loo.order_received ) %]<tr class="disabled">[% ELSE %][% IF ( books_loo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %][% END %] |
473 |
[% IF ( books_loo.order_received ) %]<tr class="disabled">[% ELSE %][% IF ( books_loo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %][% END %] |
471 |
<td> |
474 |
<td> |
472 |
<p>[% IF ( books_loo.order_received ) %] (rcvd)[% END %] |
475 |
[% books_loo.ordernumber %] |
|
|
476 |
</td> |
477 |
<td> |
478 |
<p> |
479 |
[% IF ( books_loo.order_received ) %] (rcvd)[% END %] |
473 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %] |
480 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %] |
474 |
<br /> |
481 |
<br /> |
475 |
[% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %] |
482 |
[% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %] |
Lines 562-567
Link Here
|
562 |
<table id="cancelledorderst"> |
569 |
<table id="cancelledorderst"> |
563 |
<thead> |
570 |
<thead> |
564 |
<tr> |
571 |
<tr> |
|
|
572 |
<th>No.</th> |
565 |
<th>Order</th> |
573 |
<th>Order</th> |
566 |
<th class="gste">RRP tax exc.</th> |
574 |
<th class="gste">RRP tax exc.</th> |
567 |
<th class="gste">ecost tax exc.</th> |
575 |
<th class="gste">ecost tax exc.</th> |
Lines 579-584
Link Here
|
579 |
[% FOREACH order IN cancelledorders_loop %] |
587 |
[% FOREACH order IN cancelledorders_loop %] |
580 |
<tr style="color:grey"> |
588 |
<tr style="color:grey"> |
581 |
<td> |
589 |
<td> |
|
|
590 |
[% order.ordernumber %] |
591 |
</td> |
592 |
<td> |
582 |
<p> |
593 |
<p> |
583 |
[% IF ( order.order_received ) %] (rcvd)[% END %] |
594 |
[% IF ( order.order_received ) %] (rcvd)[% END %] |
584 |
[% IF (order.title) %] |
595 |
[% IF (order.title) %] |
585 |
- |
|
|