@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 2 ++ members/pay.pl | 1 + 2 files changed, 3 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -42,6 +42,7 @@   Fines & charges Description + Barcode Payment note Account type Amount @@ -102,6 +103,7 @@ [%- IF line.description %], [% line.description %][% END %] [% IF line.title %]([% line.title %])[% END %] + [% line.barcode %] [% line.accounttype %] [% line.amount | $Price %] --- a/members/pay.pl +++ a/members/pay.pl @@ -135,6 +135,7 @@ sub add_accounts_to_template { my $biblio = $item->biblio; $account_line->{biblionumber} = $biblio->biblionumber; $account_line->{title} = $biblio->title; + $account_line->{barcode} = $item ? $item->barcode : q{}; } push @accounts, $account_line; } --