|
Lines 397-402
Link Here
|
| 397 |
<table id="orders"> |
397 |
<table id="orders"> |
| 398 |
<thead> |
398 |
<thead> |
| 399 |
<tr> |
399 |
<tr> |
|
|
400 |
<th>No.</th> |
| 400 |
<th>Order</th> |
401 |
<th>Order</th> |
| 401 |
<th class="gste">RRP tax exc.</th> |
402 |
<th class="gste">RRP tax exc.</th> |
| 402 |
<th class="gste">ecost tax exc.</th> |
403 |
<th class="gste">ecost tax exc.</th> |
|
Lines 419-424
Link Here
|
| 419 |
<tfoot> |
420 |
<tfoot> |
| 420 |
[% FOREACH foot_loo IN book_foot_loop %] |
421 |
[% FOREACH foot_loo IN book_foot_loop %] |
| 421 |
<tr> |
422 |
<tr> |
|
|
423 |
<th></th> |
| 422 |
<th>Total (GST [% foot_loo.gstgsti %])</th> |
424 |
<th>Total (GST [% foot_loo.gstgsti %])</th> |
| 423 |
<th class="gste"> </th> |
425 |
<th class="gste"> </th> |
| 424 |
<th class="gste"> </th> |
426 |
<th class="gste"> </th> |
|
Lines 439-444
Link Here
|
| 439 |
</tr> |
441 |
</tr> |
| 440 |
[% END %] |
442 |
[% END %] |
| 441 |
<tr> |
443 |
<tr> |
|
|
444 |
<th></th> |
| 442 |
<th>Total ([% currency %])</th> |
445 |
<th>Total ([% currency %])</th> |
| 443 |
<th class="gste"> </th> |
446 |
<th class="gste"> </th> |
| 444 |
<th class="gste"> </th> |
447 |
<th class="gste"> </th> |
|
Lines 462-468
Link Here
|
| 462 |
[% FOREACH books_loo IN books_loop %] |
465 |
[% FOREACH books_loo IN books_loop %] |
| 463 |
[% IF ( books_loo.order_received ) %]<tr class="disabled">[% ELSE %][% IF ( books_loo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %][% END %] |
466 |
[% IF ( books_loo.order_received ) %]<tr class="disabled">[% ELSE %][% IF ( books_loo.toggle ) %]<tr class="highlight">[% ELSE %]<tr>[% END %][% END %] |
| 464 |
<td> |
467 |
<td> |
| 465 |
<p>[% IF ( books_loo.order_received ) %] (rcvd)[% END %] |
468 |
[% books_loo.ordernumber %] |
|
|
469 |
</th> |
| 470 |
<td> |
| 471 |
<p> |
| 472 |
[% IF ( books_loo.order_received ) %] (rcvd)[% END %] |
| 466 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %] |
473 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% books_loo.biblionumber %]">[% books_loo.title |html %]</a> by [% books_loo.author %] |
| 467 |
<br /> |
474 |
<br /> |
| 468 |
[% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %] |
475 |
[% IF ( books_loo.isbn ) %] - [% books_loo.isbn %][% END %] |
|
Lines 555-560
Link Here
|
| 555 |
<table id="cancelledorderst"> |
562 |
<table id="cancelledorderst"> |
| 556 |
<thead> |
563 |
<thead> |
| 557 |
<tr> |
564 |
<tr> |
|
|
565 |
<th>No.</th> |
| 558 |
<th>Order</th> |
566 |
<th>Order</th> |
| 559 |
<th class="gste">RRP tax exc.</th> |
567 |
<th class="gste">RRP tax exc.</th> |
| 560 |
<th class="gste">ecost tax exc.</th> |
568 |
<th class="gste">ecost tax exc.</th> |
|
Lines 572-577
Link Here
|
| 572 |
[% FOREACH order IN cancelledorders_loop %] |
580 |
[% FOREACH order IN cancelledorders_loop %] |
| 573 |
<tr style="color:grey"> |
581 |
<tr style="color:grey"> |
| 574 |
<td> |
582 |
<td> |
|
|
583 |
[% order.ordernumber %] |
| 584 |
</td> |
| 585 |
<td> |
| 575 |
<p> |
586 |
<p> |
| 576 |
[% IF ( order.order_received ) %] (rcvd)[% END %] |
587 |
[% IF ( order.order_received ) %] (rcvd)[% END %] |
| 577 |
[% IF (order.title) %] |
588 |
[% IF (order.title) %] |
| 578 |
- |
|
|