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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.json.inc (-1 / +2 lines)
Lines 1-5 Link Here
1
[%- USE Branches -%]
1
[%- USE Branches -%]
2
[%- USE Koha -%]
2
[%- USE Koha -%]
3
[% USE AuthorisedValues %]
3
[%- biblio = item.biblio -%]
4
[%- biblio = item.biblio -%]
4
[%- biblioitem = item.biblioitem -%]
5
[%- biblioitem = item.biblioitem -%]
5
[
6
[
Lines 8-14 Link Here
8
  [%~ END %]",
9
  [%~ END %]",
9
  "[% (biblioitem.publicationyear || biblio.copyrightdate) |html %]",
10
  "[% (biblioitem.publicationyear || biblio.copyrightdate) |html %]",
10
  "[% biblioitem.publishercode |html %]",
11
  "[% biblioitem.publishercode |html %]",
11
  "[% biblioitem.collectiontitle |html %]",
12
  "[% AuthorisedValues.GetByCode( 'CCODE', item.ccode ) %]",
12
  "[% FILTER escape_quotes ~%]
13
  "[% FILTER escape_quotes ~%]
13
    <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber %]#item[% item.itemnumber %]" title="Go to item details">[% item.barcode |html %]</a>
14
    <a href="/cgi-bin/koha/catalogue/moredetail.pl?biblionumber=[% biblio.biblionumber %]#item[% item.itemnumber %]" title="Go to item details">[% item.barcode |html %]</a>
14
  [%~ END %]",
15
  [%~ END %]",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/itemsearch.tt (-3 / +2 lines)
Lines 255-261 Link Here
255
          { 'sName': 'title' },
255
          { 'sName': 'title' },
256
          { 'sName': 'publicationyear' },
256
          { 'sName': 'publicationyear' },
257
          { 'sName': 'publishercode' },
257
          { 'sName': 'publishercode' },
258
          { 'sName': 'collectiontitle' },
258
          { 'sName': 'ccode' },
259
          { 'sName': 'barcode' },
259
          { 'sName': 'barcode' },
260
          { 'sName': 'itemcallnumber' },
260
          { 'sName': 'itemcallnumber' },
261
          { 'sName': 'homebranch' },
261
          { 'sName': 'homebranch' },
Lines 273-279 Link Here
273
          { 'type': 'text' },
273
          { 'type': 'text' },
274
          { 'type': 'text' },
274
          { 'type': 'text' },
275
          { 'type': 'text' },
275
          { 'type': 'text' },
276
          { 'type': 'text' },
276
          { 'type': 'select', 'values': [% ccodes.json %] },
277
          { 'type': 'text' },
277
          { 'type': 'text' },
278
          { 'type': 'text' },
278
          { 'type': 'text' },
279
          { 'type': 'select', 'values': [% branches.json %] },
279
          { 'type': 'select', 'values': [% branches.json %] },
280
- 

Return to bug 16485