@@ -, +, @@ settings --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt | 6 ++++++ 2 files changed, 8 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -952,6 +952,8 @@ modules: columnname: issuedate - columnname: checked_out_from + - + columnname: homebranch - columnname: note - --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/pay.tt @@ -86,6 +86,7 @@ Checkin date Checkout date Checked out from + Home library Payment note Amount Amount outstanding @@ -150,6 +151,11 @@ [% line.checkout.library.branchname | html %] [% END %] + + [% IF line.itemnumber %] + [% Branches.GetName( line.item.homebranch ) | html %] + [% END %] + Add note --