View | Details | Raw Unified | Return to bug 11169
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-3 / +11 lines)
Lines 834-840 Link Here
834
                        <h2>Acquisition details</h2>
834
                        <h2>Acquisition details</h2>
835
                        [% IF Koha.Preference('AcqCreateItem') == 'ordering' %]
835
                        [% IF Koha.Preference('AcqCreateItem') == 'ordering' %]
836
                          The following items are on order.
836
                          The following items are on order.
837
                          [% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 %]
837
                          [% INCLUDE items_table items=acquisition_details.items tab="acquisition_details" noshelfbrowser=1 without="date_due" %]
838
                        [% ELSE %]
838
                        [% ELSE %]
839
                          [% acquisition_details.total_quantity %] items are on order.
839
                          [% acquisition_details.total_quantity %] items are on order.
840
                        [% END %]
840
                        [% END %]
Lines 1141-1147 Link Here
1141
                [% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy number</th>[% END %]
1141
                [% IF ( itemdata_copynumber ) %]<th id="item_copy" class="copynumber">Copy number</th>[% END %]
1142
                <th id="item_status" class="status">Status</th>
1142
                <th id="item_status" class="status">Status</th>
1143
                [% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %]
1143
                [% IF ( itemdata_itemnotes ) %]<th id="item_notes" class="notes">Notes</th>[% END %]
1144
                <th id="item_datedue" class="date_due">Date due</th>
1144
                [% IF without != "date_due" %]
1145
                  <th id="item_datedue" class="date_due">Date due</th>
1146
                [% ELSE %]
1147
                  <th id="item_datedue" class="date_due" style="display:none;">Date due</th>
1148
                [% END %]
1145
                [% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %]
1149
                [% IF ( OPACShowBarcode ) %]<th id="item_barcode" class="barcode">Barcode</th>[% END %]
1146
                [% IF holds_count.defined %]
1150
                [% IF holds_count.defined %]
1147
                    <th>Item holds</th>
1151
                    <th>Item holds</th>
Lines 1215-1221 Link Here
1215
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1219
                    [% IF ( itemdata_copynumber ) %]<td class="copynumber">[% ITEM_RESULT.copynumber %]</td>[% END %]
1216
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1220
                    <td class="status">[% INCLUDE 'item-status-schema-org.inc' item = ITEM_RESULT %][% INCLUDE 'item-status.inc' item = ITEM_RESULT %]</td>
1217
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1221
                    [% IF ( itemdata_itemnotes ) %]<td class="notes" property="description">[% ITEM_RESULT.itemnotes %]</td>[% END %]
1218
                    <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td>
1222
                    [% IF without != "date_due" %]
1223
                      <td class="date_due"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td>
1224
                    [% ELSE %]
1225
                      <td class="date_due" style="display:none;"><span title="[% ITEM_RESULT.datedue %]">[% ITEM_RESULT.datedue | $KohaDates %]</span></td>
1226
                    [% END %]
1219
                    [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1227
                    [% IF ( OPACShowBarcode ) %]<td class="barcode" property="serialNumber">[% ITEM_RESULT.barcode %]</td>[% END %]
1220
                    [% IF holds_count.defined || show_priority %]
1228
                    [% IF holds_count.defined || show_priority %]
1221
                        <td class="holds_count">
1229
                        <td class="holds_count">
(-)a/koha-tmpl/opac-tmpl/prog/en/modules/opac-detail.tt (-4 / +12 lines)
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
- 

Return to bug 11169