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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc (+1 lines)
Lines 18-23 Link Here
18
  "[% FILTER escape_quotes ~%]
18
  "[% FILTER escape_quotes ~%]
19
    <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber | uri %]#item[% item.itemnumber | uri %]" title="Go to item details">[% item.barcode | html %]</a>
19
    <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber | uri %]#item[% item.itemnumber | uri %]" title="Go to item details">[% item.barcode | html %]</a>
20
  [%~ END %]",
20
  [%~ END %]",
21
  "[% item.itemnumber | html %]",
21
  "[% item.itemcallnumber | html %]",
22
  "[% item.itemcallnumber | html %]",
22
  "[% Branches.GetName(item.homebranch) | html %]",
23
  "[% Branches.GetName(item.homebranch) | html %]",
23
  "[% Branches.GetName(item.holdingbranch) | html %]",
24
  "[% Branches.GetName(item.holdingbranch) | html %]",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-1 / +2 lines)
Lines 285-290 Link Here
285
                + '      <th id="items_publisher">' + _("Publisher") + '</th>'
285
                + '      <th id="items_publisher">' + _("Publisher") + '</th>'
286
                + '      <th id="items_collection">' + _("Collection") + '</th>'
286
                + '      <th id="items_collection">' + _("Collection") + '</th>'
287
                + '      <th id="items_barcode">' + _("Barcode") + '</th>'
287
                + '      <th id="items_barcode">' + _("Barcode") + '</th>'
288
                + '      <th id="items_itemnumber">' + _("Item number") + '</th>'
288
                + '      <th id="items_callno">' + _("Call number") + '</th>'
289
                + '      <th id="items_callno">' + _("Call number") + '</th>'
289
                + '      <th id="items_homebranch">' + _("Home library") + '</th>'
290
                + '      <th id="items_homebranch">' + _("Home library") + '</th>'
290
                + '      <th id="items_holdingbranch">' + _("Current library") + '</th>'
291
                + '      <th id="items_holdingbranch">' + _("Current library") + '</th>'
Lines 441-446 Link Here
441
                    { 'sName': 'publishercode' },
442
                    { 'sName': 'publishercode' },
442
                    { 'sName': 'ccode' },
443
                    { 'sName': 'ccode' },
443
                    { 'sName': 'barcode' },
444
                    { 'sName': 'barcode' },
445
                    { 'sName': 'itemnumber' },
444
                    { 'sName': 'itemcallnumber' },
446
                    { 'sName': 'itemcallnumber' },
445
                    { 'sName': 'homebranch' },
447
                    { 'sName': 'homebranch' },
446
                    { 'sName': 'holdingbranch' },
448
                    { 'sName': 'holdingbranch' },
447
- 

Return to bug 26654