Lines 40-45
Link Here
|
40 |
<th>Item type</th> |
40 |
<th>Item type</th> |
41 |
<th>Date due</th> |
41 |
<th>Date due</th> |
42 |
<th>Barcode</th> |
42 |
<th>Barcode</th> |
|
|
43 |
<th>Inventory number</th> |
43 |
<th>Charge</th> |
44 |
<th>Charge</th> |
44 |
<th>Price</th> |
45 |
<th>Price</th> |
45 |
<th>Status</th> |
46 |
<th>Status</th> |
Lines 56-61
Link Here
|
56 |
<td>[% ItemTypes.GetDescription( issue.itype ) | html %]</td> |
57 |
<td>[% ItemTypes.GetDescription( issue.itype ) | html %]</td> |
57 |
<td>[% issue.date_due | $KohaDates as_due_date => 1 %]</td> |
58 |
<td>[% issue.date_due | $KohaDates as_due_date => 1 %]</td> |
58 |
<td>[% issue.barcode | html %]</td> |
59 |
<td>[% issue.barcode | html %]</td> |
|
|
60 |
<td>[% issue.stocknumber | html %]</td> |
59 |
<td>[% issue.charge | $Price %]</td> |
61 |
<td>[% issue.charge | $Price %]</td> |
60 |
<td>[% issue.replacementprice | $Price %]</td> |
62 |
<td>[% issue.replacementprice | $Price %]</td> |
61 |
<td>[% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %]</td> |
63 |
<td>[% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %]</td> |
Lines 63-69
Link Here
|
63 |
[% END %] |
65 |
[% END %] |
64 |
|
66 |
|
65 |
<tr> |
67 |
<tr> |
66 |
<td colspan="6" style="text-align: right; font-weight:bold;">Totals:</td> |
68 |
<td colspan="7" style="text-align: right; font-weight:bold;">Totals:</td> |
67 |
<td>[% totaldue | $Price %]</td> |
69 |
<td>[% totaldue | $Price %]</td> |
68 |
<td>[% totalprice | $Price %]</td> |
70 |
<td>[% totalprice | $Price %]</td> |
69 |
<td colspan="3"> </td> |
71 |
<td colspan="3"> </td> |
70 |
- |
|
|