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

Return to bug 11169