https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42082

Andrew Fuerste-Henry <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |WORKSFORME
             Status|NEW                         |RESOLVED

--- Comment #1 from Andrew Fuerste-Henry <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to