@@ -, +, @@ transactions tab --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 6 ++++++ 2 files changed, 8 insertions(+) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -666,6 +666,8 @@ modules: - columnname: issuedate - + columnname: checked_out_from + - columnname: note - columnname: amount --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -52,6 +52,7 @@ Due date Checkin date Checkout date + Checked out from Home library Note Amount @@ -75,6 +76,11 @@ [% IF ( account.issue_id ) %][% account.checkout.date_due | $KohaDates as_due_date => 1 %][% END %] [% IF ( account.issue_id ) %][% account.checkout.returndate | $KohaDates with_hours => 1 %][% END %] [% IF ( account.issue_id ) %][% account.checkout.issuedate | $KohaDates %][% END %] + + [% IF account.issue_id && account.checkout.library %] + [% account.checkout.library.branchname | html %] + [% END %] + [% IF account.itemnumber %][% Branches.GetName( account.item.homebranch ) | html %][% END %] [% account.note | html_line_break %] [% IF account.amount <= 0 %][% ELSE %][% END %][% account.amount | $Price %] --