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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc (+1 lines)
Lines 19-24 Link Here
19
  "[% FILTER escape_quotes ~%]
19
  "[% FILTER escape_quotes ~%]
20
    <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
    <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>
21
  [%~ END %]",
21
  [%~ END %]",
22
  "[% item.enumchron | html %]",
22
  "[% item.itemcallnumber | html %]",
23
  "[% item.itemcallnumber | html %]",
23
  "[% Branches.GetName(item.homebranch) | html %]",
24
  "[% Branches.GetName(item.homebranch) | html %]",
24
  "[% Branches.GetName(item.holdingbranch) | html %]",
25
  "[% Branches.GetName(item.holdingbranch) | html %]",
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/catalogue/itemsearch.tt (+2 lines)
Lines 12-17 Link Here
12
[%- delimiter | $raw -%]
12
[%- delimiter | $raw -%]
13
"Barcode"
13
"Barcode"
14
[%- delimiter | $raw -%]
14
[%- delimiter | $raw -%]
15
"Serial enumeration"
16
[%- delimiter | $raw -%]
15
"Call number"
17
"Call number"
16
[%- delimiter | $raw -%]
18
[%- delimiter | $raw -%]
17
"Home library"
19
"Home library"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-1 / +3 lines)
Lines 324-329 Link Here
324
                + '      <th id="items_publisher">' + _("Publisher") + '</th>'
324
                + '      <th id="items_publisher">' + _("Publisher") + '</th>'
325
                + '      <th id="items_collection">' + _("Collection") + '</th>'
325
                + '      <th id="items_collection">' + _("Collection") + '</th>'
326
                + '      <th id="items_barcode">' + _("Barcode") + '</th>'
326
                + '      <th id="items_barcode">' + _("Barcode") + '</th>'
327
                + '      <th id="items_barcode">' + _("Serial enumeration") + '</th>'
327
                + '      <th id="items_callno">' + _("Call number") + '</th>'
328
                + '      <th id="items_callno">' + _("Call number") + '</th>'
328
                + '      <th id="items_homebranch">' + _("Home library") + '</th>'
329
                + '      <th id="items_homebranch">' + _("Home library") + '</th>'
329
                + '      <th id="items_holdingbranch">' + _("Current library") + '</th>'
330
                + '      <th id="items_holdingbranch">' + _("Current library") + '</th>'
Lines 481-486 Link Here
481
                    { 'sName': 'publishercode' },
482
                    { 'sName': 'publishercode' },
482
                    { 'sName': 'ccode' },
483
                    { 'sName': 'ccode' },
483
                    { 'sName': 'barcode' },
484
                    { 'sName': 'barcode' },
485
                    { 'sName': 'enumchron' },
484
                    { 'sName': 'itemcallnumber' },
486
                    { 'sName': 'itemcallnumber' },
485
                    { 'sName': 'homebranch' },
487
                    { 'sName': 'homebranch' },
486
                    { 'sName': 'holdingbranch' },
488
                    { 'sName': 'holdingbranch' },
Lines 510-515 Link Here
510
                    [% END %]
512
                    [% END %]
511
                    { 'type': 'text' },
513
                    { 'type': 'text' },
512
                    { 'type': 'text' },
514
                    { 'type': 'text' },
515
                    { 'type': 'text' },
513
                    { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
516
                    { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
514
                    { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
517
                    { 'type': 'select', 'values': [% INCLUDE escape_html_value_label elts => branches %] },
515
                    [% IF locations.size %]
518
                    [% IF locations.size %]
516
- 

Return to bug 30858