From 48da34ee1cab35ec6fa1cf10ba1f23a3e48cfb87 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Thu, 17 Sep 2020 11:52:10 +0000 Subject: [PATCH] Bug 15780: Add inventory number to checkout list on summary print This will add the inventory number to the list of checkouts that can be printed using the 'Print summary' feature from the patron account in staff. To test: - Apply patch - Make sure you have some items with and without inventory number set - Check them out to any patron - Go to Print > Print summary - Verify the inventory number column is showing up and the numbers show with their items. --- koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt index 9e92f4e681..14cc3bd107 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt @@ -40,6 +40,7 @@ Item type Date due Barcode + Inventory number Charge Price Status @@ -56,6 +57,7 @@ [% ItemTypes.GetDescription( issue.itype ) | html %] [% issue.date_due | $KohaDates as_due_date => 1 %] [% issue.barcode | html %] + [% issue.stocknumber | html %] [% issue.charge | $Price %] [% issue.replacementprice | $Price %] [% IF ( issue.overdue ) %]Overdue![% ELSE %] [% END %] @@ -63,7 +65,7 @@ [% END %] - Totals: + Totals: [% totaldue | $Price %] [% totalprice | $Price %]   -- 2.11.0