@@ -, +, @@ print - 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. --- .../intranet-tmpl/prog/en/modules/members/moremember-print.tt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-print.tt +++ a/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 %]   --