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 313-319 Link Here
313
          { 'sName': 'title' },
313
          { 'sName': 'title' },
314
          { 'sName': 'publicationyear' },
314
          { 'sName': 'publicationyear' },
315
          { 'sName': 'publishercode' },
315
          { 'sName': 'publishercode' },
316
          { 'sName': 'collectiontitle' },
316
          { 'sName': 'ccode' },
317
          { 'sName': 'barcode' },
317
          { 'sName': 'barcode' },
318
          { 'sName': 'itemcallnumber' },
318
          { 'sName': 'itemcallnumber' },
319
          { 'sName': 'homebranch' },
319
          { 'sName': 'homebranch' },
Lines 331-337 Link Here
331
          { 'type': 'text' },
331
          { 'type': 'text' },
332
          { 'type': 'text' },
332
          { 'type': 'text' },
333
          { 'type': 'text' },
333
          { 'type': 'text' },
334
          { 'type': 'text' },
334
          { 'type': 'select', 'values': [% ccodes.json %] },
335
          { 'type': 'text' },
335
          { 'type': 'text' },
336
          { 'type': 'text' },
336
          { 'type': 'text' },
337
          { 'type': 'select', 'values': [% branches.json %] },
337
          { 'type': 'select', 'values': [% branches.json %] },
338
- 

Return to bug 16485