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

--- Comment #2 from Martin Renvoize (ashimema) 
<[email protected]> ---
Poping this here for reference:

[%- USE Price -%]
Dear [% borrower.firstname %] [% borrower.surname %],

According to our current records, you have items that are overdue.Your library
does not charge late fines, but please return or renew them at the branch below
as soon as possible.

[% branch.branchname %]
[% branch.branchaddress1 %]
[% branch.branchaddress2 %] [% branch.branchaddress3 %]
Phone: [% branch.branchphone %]
Fax: [% branch.branchfax %]
Email: [% branch.branchemail %]

If you have registered a password with the library, and you have a renewal
available, you may renew online. If an item becomes more than 30 days overdue,
you will be unable to use your library card until the item is returned.

The following item(s) is/are currently overdue:

[% FOREACH overdue IN overdues %]
[%~ SET item = overdue.item ~%]
"[% item.biblio.title %]" by [% item.biblio.author %], [% item.itemcallnumber
%], Barcode: [% item.barcode %], Fine: [%
overdue.overdue_fines.total_outstanding | \$Price %]
[% END %]
[% FOREACH overdue IN overdues %]
[%~ SET item = overdue.item ~%]
[% overdue.date_due | \$KohaDates %]\t[% item.biblio.title %]\t[% item.barcode
%]\t[% item.biblio.author %]\t[% item.itemnumber %]
[% END %]

Thank-you for your prompt attention to this matter.

[% branch.branchname %] Staff


-----------

The above only works with 17976 applied, however you can get almost the same by
replacing [% overdue.overdue_fines.total_outstanding | $Price %] with [%
overdue.account_lines.total_outstanding | $Price %].  The only difference is
that the later will include other related charges, like a rental.

-----------
What I'd be really interested in know is what people might like the 'perfect'
notice to include.. we have the opportunity to 'upgrade' it here..

-- 
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