@@ -, +, @@ --- admin/columns_settings.yml | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) --- a/admin/columns_settings.yml +++ a/admin/columns_settings.yml @@ -898,6 +898,8 @@ modules: columnname: description - columnname: barcode + - + columnname: callnumber - columnname: date_due - --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/members/boraccount.tt @@ -83,6 +83,7 @@ Account type Description of charges Barcode + Call number Due date Checkin date Checkout date @@ -108,6 +109,7 @@ [%- IF account.description %][% account.description | html %][% END %]  [% IF ( account.itemnumber ) %][% account.item.biblio.title | html %][% END %] [% IF ( account.itemnumber ) %][% account.item.barcode | html %][% END %] + [% IF ( account.itemnumber ) %][% account.item.itemcallnumber | html %][% END %] [% 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 %] @@ -159,7 +161,7 @@ [% END %] - Total due + Total due [% IF ( totalcredit ) %] [% total | $Price %] --