Lines 1244-1250
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1244 |
<h2>Acquisition details</h2> |
1244 |
<h2>Acquisition details</h2> |
1245 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' %] |
1245 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' %] |
1246 |
The following items are on order. |
1246 |
The following items are on order. |
1247 |
[% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 %] |
1247 |
[% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 without="date_due" %] |
1248 |
[% ELSE %] |
1248 |
[% ELSE %] |
1249 |
[% acquisition_details.total_quantity %] items are on order. |
1249 |
[% acquisition_details.total_quantity %] items are on order. |
1250 |
[% END %] |
1250 |
[% END %] |
Lines 1527-1533
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1527 |
[% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy</th>[% END %] |
1527 |
[% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy</th>[% END %] |
1528 |
<th id="item_status" class="status">Status</th> |
1528 |
<th id="item_status" class="status">Status</th> |
1529 |
[% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %] |
1529 |
[% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %] |
1530 |
<th id="item_datedue" class="date_due">Date due</th> |
1530 |
[% IF without != "date_due" %] |
|
|
1531 |
<th id="item_datedue" class="date_due">Date due</th> |
1532 |
[% ELSE %] |
1533 |
<th id="item_datedue" class="date_due" style="display:none;">Date due</th> |
1534 |
[% END %] |
1531 |
[% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %] |
1535 |
[% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %] |
1532 |
[% IF holds_count.defined %] |
1536 |
[% IF holds_count.defined %] |
1533 |
<th>Item holds</th> |
1537 |
<th>Item holds</th> |
Lines 1585-1591
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1585 |
[% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %] |
1589 |
[% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %] |
1586 |
<td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td> |
1590 |
<td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td> |
1587 |
[% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %] |
1591 |
[% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %] |
1588 |
<td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1592 |
|
|
|
1593 |
[% IF without != "date_due" %] |
1594 |
<td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1595 |
[% ELSE %] |
1596 |
<td class="date_due" style="display:none;"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1597 |
[% END %] |
1589 |
[% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %] |
1598 |
[% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %] |
1590 |
[% IF holds_count.defined || show_priority %] |
1599 |
[% IF holds_count.defined || show_priority %] |
1591 |
<td class="holds_count"> |
1600 |
<td class="holds_count"> |
1592 |
- |
|
|