https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42082 Andrew Fuerste-Henry <andrew@bywatersolutions.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |WORKSFORME Status|NEW |RESOLVED --- Comment #1 from Andrew Fuerste-Henry <andrew@bywatersolutions.com> --- Both checkouts and accountlines data are currently available in these notices by way of the borrower object. Some example notice content: [%- FOREACH c IN borrower.checkouts %] date_due: [% c.date_due %] title: [% c.item.biblio.title %] barcode: [% c.item.barcode %] [%- END %] [%- FOREACH d IN borrower.account.debits %] outstanding: [% d.amountoutstanding %] [%- IF d.itemnumber %] title: [% d.item.biblio.title %] barcode: [% d.item.barcode %] [%- END %] [%- END %] [%- FOREACH c IN borrower.account.credits %] outstanding: [% c.amountoutstanding %] [%- END %] -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.