|
Lines 28-75
Link Here
|
| 28 |
<thead> |
28 |
<thead> |
| 29 |
<tr> |
29 |
<tr> |
| 30 |
<th class="anti-the"> Title </th> |
30 |
<th class="anti-the"> Title </th> |
| 31 |
<th> Order </th> |
31 |
<th> Order </th> |
| 32 |
<th> Vendor </th> |
32 |
<th> Vendor </th> |
| 33 |
<th> Item type </th> |
33 |
<th> Item type </th> |
| 34 |
<th> Left on order </th> |
34 |
<th> Left on order </th> |
| 35 |
<th> Estimated cost per unit </th> |
35 |
<th> Estimated cost per unit </th> |
| 36 |
<th class="title-string"> Date ordered </th> |
36 |
<th class="title-string"> Date ordered </th> |
| 37 |
<th> Subtotal </th> |
37 |
<th> Subtotal </th> |
| 38 |
</tr> |
38 |
</tr> |
| 39 |
</thead> |
39 |
</thead> |
| 40 |
<tbody> |
40 |
<tbody> |
| 41 |
[% FOREACH order IN ordered %] |
41 |
[% FOREACH order IN ordered %] |
| 42 |
<tr> |
42 |
<tr> |
| 43 |
<td class="cell"> |
43 |
<td class="cell"> |
| 44 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]"> |
44 |
<a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber | uri %]"> |
| 45 |
[% order.title | html %] |
45 |
[% order.title | html %] |
| 46 |
</a> |
46 |
</a> |
| 47 |
</td> |
47 |
</td> |
| 48 |
<td class="cell"> |
48 |
<td class="cell"> |
| 49 |
[% IF ( CAN_user_acquisition_order_manage ) %] |
49 |
[% IF ( CAN_user_acquisition_order_manage ) %] |
| 50 |
<a href="/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber | uri %]&booksellerid=[% order.booksellerid | uri %]&basketno=[% order.basketno | uri %]">[% order.ordernumber | html %]</a> |
50 |
<a href="/cgi-bin/koha/acqui/neworderempty.pl?ordernumber=[% order.ordernumber | uri %]&booksellerid=[% order.booksellerid | uri %]&basketno=[% order.basketno | uri %]">[% order.ordernumber | html %]</a> |
| 51 |
[% ELSE %] |
51 |
[% ELSE %] |
| 52 |
[% order.ordernumber | html %] |
52 |
[% order.ordernumber | html %] |
| 53 |
[% END %] |
53 |
[% END %] |
| 54 |
</td> |
54 |
</td> |
| 55 |
<td class="cell"> |
55 |
<td class="cell"> |
| 56 |
<a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid | uri %]">[% order.vendorname | html %]</a> |
56 |
<a href="/cgi-bin/koha/acqui/supplier.pl?booksellerid=[% order.booksellerid | uri %]">[% order.vendorname | html %]</a> |
| 57 |
</td> |
57 |
</td> |
| 58 |
<td class="cell"> |
58 |
<td class="cell"> |
| 59 |
[% ItemTypes.GetDescription( order.itype ) | html %] |
59 |
[% ItemTypes.GetDescription( order.itype ) | html %] |
| 60 |
</td> |
60 |
</td> |
| 61 |
<td class="cell"> |
61 |
<td class="cell"> |
| 62 |
[% order.left | html %] |
62 |
[% order.left | html %] |
| 63 |
</td> |
63 |
</td> |
| 64 |
<td class="data cell"> |
64 |
<td class="data cell"> |
| 65 |
[% order.ecost_tax_included | $Price %] |
65 |
[% order.ecost_tax_included | $Price %] |
| 66 |
</td> |
66 |
</td> |
| 67 |
<td class="cell"> |
67 |
<td class="cell"> |
| 68 |
<span title="[% order.entrydate | html %]">[% order.entrydate | $KohaDates %]</span> |
68 |
<span title="[% order.entrydate | html %]">[% order.entrydate | $KohaDates %]</span> |
| 69 |
</td> |
69 |
</td> |
| 70 |
<td class="data cell"> |
70 |
<td class="data cell"> |
| 71 |
[% order.subtotal | $Price %] |
71 |
[% order.subtotal | $Price %] |
| 72 |
</td> |
72 |
</td> |
| 73 |
</tr> |
73 |
</tr> |
| 74 |
[% END %] |
74 |
[% END %] |
| 75 |
</tbody> |
75 |
</tbody> |
|
Lines 91-97
Link Here
|
| 91 |
<td> </td> |
91 |
<td> </td> |
| 92 |
<td> </td> |
92 |
<td> </td> |
| 93 |
<td> </td> |
93 |
<td> </td> |
| 94 |
<td> </td> |
94 |
<td> </td> |
| 95 |
<td class="data"> |
95 |
<td class="data"> |
| 96 |
[% total | $Price %] |
96 |
[% total | $Price %] |
| 97 |
</td> |
97 |
</td> |
| 98 |
- |
|
|