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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/catalogue/itemsearch_item.csv.inc (-1 / +4 lines)
Lines 1-5 Link Here
1
[%- USE Branches -%]
1
[%- USE Branches -%]
2
[%- USE Koha -%]
2
[%- USE Koha -%]
3
4
[%- SET delimiter = Koha.Preference( 'delimiter' ) || ',' -%]
5
3
[%- biblio = item.biblio | html -%]
6
[%- biblio = item.biblio | html -%]
4
[%- biblioitem = item.biblioitem | html -%]
7
[%- biblioitem = item.biblioitem | html -%]
5
"[% biblio.title | html %] [% IF ( Koha.Preference( 'marcflavour' ) == 'UNIMARC' && biblio.author ) %]by [% END %][% biblio.author | html %]", "[% (biblioitem.publicationyear || biblio.copyrightdate) | html %]", "[% biblioitem.publishercode | html %]", "[% biblioitem.collectiontitle | html %]", "[% item.barcode | html %]", "[% item.itemcallnumber | html %]", "[% Branches.GetName(item.homebranch) | html %]", "[% Branches.GetName(item.holdingbranch) | html %]", "[% item.location | html %]", "[% item.stocknumber | html %]", "[% item.status | html %]", "[% (item.issues || 0) | html %]"
8
"[% biblio.title | html %] [% IF ( Koha.Preference( 'marcflavour' ) == 'UNIMARC' && biblio.author ) %]by [% END %][% biblio.author | html %]"[% delimiter %] "[% (biblioitem.publicationyear || biblio.copyrightdate) | html %]"[% delimiter %] "[% biblioitem.publishercode | html %]"[% delimiter %] "[% biblioitem.collectiontitle | html %]"[% delimiter %] "[% item.barcode | html %]"[% delimiter %] "[% item.itemcallnumber | html %]"[% delimiter %] "[% Branches.GetName(item.homebranch) | html %]"[% delimiter %] "[% Branches.GetName(item.holdingbranch) | html %]"[% delimiter %] "[% item.location | html %]"[% delimiter %] "[% item.stocknumber | html %]"[% delimiter %] "[% item.status | html %]"[% delimiter %] "[% (item.issues || 0) | html %]"
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/csv_headers/catalogue/itemsearch.tt (-2 / +6 lines)
Line 1 Link Here
1
[%- BLOCK -%]Title, Publication date, Publisher, Collection, Barcode, Call number, Home library, Current location, Shelving location, Inventory number, Status, Checkouts[%- END -%]
1
[%- USE Koha -%]
2
3
[%- SET delimiter = Koha.Preference( 'delimiter' ) || ',' -%]
4
5
6
[%- BLOCK -%]Title[% delimiter %]Publication date[% delimiter %]Publisher[% delimiter %]Collection[% delimiter %]Barcode[% delimiter %]Call number[% delimiter %]Home library[% delimiter %]Current location[% delimiter %]Shelving location[% delimiter %]Inventory number[% delimiter %]Status[% delimiter %]Checkouts[%- END -%]
2
- 

Return to bug 20171