Lines 1247-1253
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1247 |
<h2>Acquisition details</h2> |
1247 |
<h2>Acquisition details</h2> |
1248 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' %] |
1248 |
[% IF Koha.Preference('AcqCreateItem') == 'ordering' %] |
1249 |
The following items are on order. |
1249 |
The following items are on order. |
1250 |
[% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 %] |
1250 |
[% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 without="date_due" %] |
1251 |
[% ELSE %] |
1251 |
[% ELSE %] |
1252 |
[% acquisition_details.total_quantity %] items are on order. |
1252 |
[% acquisition_details.total_quantity %] items are on order. |
1253 |
[% END %] |
1253 |
[% END %] |
Lines 1542-1548
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1542 |
[% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy number</th>[% END %] |
1542 |
[% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy number</th>[% END %] |
1543 |
<th id="item_status" class="status">Status</th> |
1543 |
<th id="item_status" class="status">Status</th> |
1544 |
[% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %] |
1544 |
[% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %] |
1545 |
<th id="item_datedue" class="date_due">Date due</th> |
1545 |
[% IF without != "date_due" %] |
|
|
1546 |
<th id="item_datedue" class="date_due">Date due</th> |
1547 |
[% ELSE %] |
1548 |
<th id="item_datedue" class="date_due" style="display:none;">Date due</th> |
1549 |
[% END %] |
1546 |
[% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %] |
1550 |
[% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %] |
1547 |
[% IF holds_count.defined %] |
1551 |
[% IF holds_count.defined %] |
1548 |
<th>Item holds</th> |
1552 |
<th>Item holds</th> |
Lines 1600-1606
YAHOO.util.Event.onContentReady("furtherm", function () {
Link Here
|
1600 |
[% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %] |
1604 |
[% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %] |
1601 |
<td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td> |
1605 |
<td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td> |
1602 |
[% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %] |
1606 |
[% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %] |
1603 |
<td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1607 |
|
|
|
1608 |
[% IF without != "date_due" %] |
1609 |
<td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1610 |
[% ELSE %] |
1611 |
<td class="date_due" style="display:none;"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td> |
1612 |
[% END %] |
1604 |
[% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %] |
1613 |
[% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %] |
1605 |
[% IF holds_count.defined || show_priority %] |
1614 |
[% IF holds_count.defined || show_priority %] |
1606 |
<td class="holds_count"> |
1615 |
<td class="holds_count"> |
1607 |
- |
|
|