From 7ecb09d038af7728054ccf7579d3afacf6f13ee3 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 8 Apr 2021 11:27:21 +0200 Subject: [PATCH] Bug 18912: Split info into different columns Signed-off-by: Owen Leonard Signed-off-by: Kyle M Hall Signed-off-by: Kyle M Hall --- .../prog/en/modules/circ/circulation.tt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index a8806e9edf..6f0d439771 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -485,6 +485,9 @@ Title Barcode Call number + Copy number + Inventory number + Serial enumeration Collection [% IF ( item_level_itypes ) %]Item type[% END %]   @@ -499,12 +502,10 @@ [% item.barcode | html %] - - [% IF item.itemcallnumber %][% item.itemcallnumber | html %][% END %] - [% IF item.copynumber %]
Copy number: [% item.copynumber | html %][% END %] - [% IF item.stocknumber %]
Inventory number: [% item.stocknumber | html %][% END %] - [% IF item.enumchron %]
Serial enumeration: [% item.enumchron | html %][% END %] - + [% item.itemcallnumber | html %] + [% item.copynumber | html %] + [% item.stocknumber| html %] + [% item.enumchron| html %] [% AuthorisedValues.GetDescriptionByKohaField( kohafield => 'items.ccode', authorised_value => item.ccode ) | html %] -- 2.24.3 (Apple Git-128)