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

(-)a/admin/columns_settings.yml (+2 lines)
Lines 1322-1327 modules: Link Here
1322
              columnname: holding_library
1322
              columnname: holding_library
1323
              is_hidden: 1
1323
              is_hidden: 1
1324
            -
1324
            -
1325
              columnname: shelving_location
1326
            -
1325
              columnname: barcode
1327
              columnname: barcode
1326
            -
1328
            -
1327
              columnname: call_number
1329
              columnname: call_number
(-)a/circ/overdue.pl (+2 lines)
Lines 232-237 if ($noreport) { Link Here
232
        items.barcode,
232
        items.barcode,
233
        items.homebranch,
233
        items.homebranch,
234
        items.holdingbranch,
234
        items.holdingbranch,
235
        items.location,
235
        biblio.title,
236
        biblio.title,
236
        biblio.author,
237
        biblio.author,
237
        biblio.biblionumber,
238
        biblio.biblionumber,
Lines 324-329 if ($noreport) { Link Here
324
            author                 => $data->{author},
325
            author                 => $data->{author},
325
            homebranchcode         => $data->{homebranch},
326
            homebranchcode         => $data->{homebranch},
326
            holdingbranchcode      => $data->{holdingbranch},
327
            holdingbranchcode      => $data->{holdingbranch},
328
            location               => $data->{location},
327
            itemcallnumber         => $data->{itemcallnumber},
329
            itemcallnumber         => $data->{itemcallnumber},
328
            replacementprice       => $data->{replacementprice},
330
            replacementprice       => $data->{replacementprice},
329
            itemnotes_nonpublic    => $data->{itemnotes_nonpublic},
331
            itemnotes_nonpublic    => $data->{itemnotes_nonpublic},
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/overdue.tt (-1 / +2 lines)
Lines 86-91 Link Here
86
          <th class="anti-the">Title</th>
86
          <th class="anti-the">Title</th>
87
          <th>Home library</th>
87
          <th>Home library</th>
88
          <th>Holding library</th>
88
          <th>Holding library</th>
89
          <th>Shelving location</th>
89
          <th>Barcode</th>
90
          <th>Barcode</th>
90
          <th>Call number</th>
91
          <th>Call number</th>
91
          <th>Item type</th>
92
          <th>Item type</th>
Lines 109-114 Link Here
109
          <td>[% INCLUDE 'biblio-title.inc' biblio=overdueloo link = 1 %] [% IF ( overdueloo.author ) %], by [% overdueloo.author | html %][% END %][% IF ( overdueloo.enumchron ) %], [% overdueloo.enumchron | html %][% END %]</td>
110
          <td>[% INCLUDE 'biblio-title.inc' biblio=overdueloo link = 1 %] [% IF ( overdueloo.author ) %], by [% overdueloo.author | html %][% END %][% IF ( overdueloo.enumchron ) %], [% overdueloo.enumchron | html %][% END %]</td>
110
            <td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td>
111
            <td>[% Branches.GetName( overdueloo.homebranchcode ) | html %]</td>
111
            <td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td>
112
            <td>[% Branches.GetName( overdueloo.holdingbranchcode ) | html %]</td>
113
            <td>[% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.location', authorised_value => overdueloo.location ) | html %]</td>
112
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&amp;itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]">[% overdueloo.barcode | html %]</a></td>
114
          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% overdueloo.biblionumber | uri %]&amp;itemnumber=[% overdueloo.itemnum | uri %]#item[% overdueloo.itemnum | uri %]">[% overdueloo.barcode | html %]</a></td>
113
          <td>[% overdueloo.itemcallnumber | html %]</td>
115
          <td>[% overdueloo.itemcallnumber | html %]</td>
114
            <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
116
            <td>[% ItemTypes.GetDescription( overdueloo.itemtype ) | html %]</td>
115
- 

Return to bug 28695