|
Lines 432-434
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, conten
Link Here
|
| 432 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_REQUEST_CANCEL', '', 'ILL request cancelled', 0, "Interlibrary loan request cancelled", "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:\n\n[% ill_full_metadata %]", 'sms', 'default'); |
432 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_REQUEST_CANCEL', '', 'ILL request cancelled', 0, "Interlibrary loan request cancelled", "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has requested cancellation of this ILL request:\n\n[% ill_full_metadata %]", 'sms', 'default'); |
| 433 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_REQUEST_MODIFIED', '', 'ILL request modified', 0, "Interlibrary loan request modified", "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:\n\n[% ill_full_metadata %]", 'sms', 'default'); |
433 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_REQUEST_MODIFIED', '', 'ILL request modified', 0, "Interlibrary loan request modified", "The patron for interlibrary loans request [% illrequest.illrequest_id %], with the following details, has modified this ILL request:\n\n[% ill_full_metadata %]", 'sms', 'default'); |
| 434 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_PARTNER_REQ', '', 'ILL request to partners', 0, "Interlibrary loan request to partners", "Dear Sir/Madam,\n\nWe would like to request an interlibrary loan for a title matching the following description:\n\n[% ill_full_metadata %]\n\nPlease let us know if you are able to supply this to us.\n\nKind Regards\n\n[% branch.branchname %]\n[% branch.branchaddress1 %]\n[% branch.branchaddress2 %]\n[% branch.branchaddress3 %]\n[% branch.branchcity %]\n[% branch.branchstate %]\n[% branch.branchzip %]\n[% branch.branchphone %]\n[% branch.branchillemail %]\n[% branch.branchemail %]", 'sms', 'default'); |
434 |
INSERT IGNORE INTO letter(module, code, branchcode, name, is_html, title, content, message_transport_type, lang) VALUES ('ill', 'ILL_PARTNER_REQ', '', 'ILL request to partners', 0, "Interlibrary loan request to partners", "Dear Sir/Madam,\n\nWe would like to request an interlibrary loan for a title matching the following description:\n\n[% ill_full_metadata %]\n\nPlease let us know if you are able to supply this to us.\n\nKind Regards\n\n[% branch.branchname %]\n[% branch.branchaddress1 %]\n[% branch.branchaddress2 %]\n[% branch.branchaddress3 %]\n[% branch.branchcity %]\n[% branch.branchstate %]\n[% branch.branchzip %]\n[% branch.branchphone %]\n[% branch.branchillemail %]\n[% branch.branchemail %]", 'sms', 'default'); |
| 435 |
- |
435 |
|
|
|
436 |
INSERT IGNORE INTO letter (module, code, name, title, content, message_transport_type) VALUES ('circulation', 'AUTO_RENEWALS_DGST', 'Notification on auto renewals', 'Auto renewals (Digest)', |
| 437 |
"Dear [% borrower.firstname %] [% borrower.surname %], |
| 438 |
[% IF error %] |
| 439 |
There were [% error %] items that were not renewed. |
| 440 |
[% END %] |
| 441 |
[% IF success %] |
| 442 |
There were [% success %] items that were renewed. |
| 443 |
[% END %] |
| 444 |
[% FOREACH checkout IN checkouts %] |
| 445 |
[% checkout.item.biblio.title %] : [% checkout.item.barcode %] |
| 446 |
[% IF !checkout.auto_renew_error %] |
| 447 |
was renewed until [% checkout.date_due | $KohaDates as_due_date => 1%] |
| 448 |
[% ELSIF checkout.auto_renew_error == 'too_many' %] |
| 449 |
You have reached the maximum number of checkouts possible. |
| 450 |
[% ELSIF checkout.auto_renew_error == 'on_reserve' %] |
| 451 |
This item is on hold for another patron. |
| 452 |
[% ELSIF checkout.auto_renew_error == 'restriction' %] |
| 453 |
You are currently restricted. |
| 454 |
[% ELSIF checkout.auto_renew_error == 'overdue' %] |
| 455 |
You have overdue items. |
| 456 |
[% ELSIF checkout.auto_renew_error == 'auto_too_late' %] |
| 457 |
It's too late to renew this item. |
| 458 |
[% ELSIF checkout.auto_renew_error == 'auto_too_much_oweing' %] |
| 459 |
Your total unpaid fines are too high. |
| 460 |
[% ELSIF checkout.auto_renew_error == 'too_unseen' %] |
| 461 |
This item must be renewed at the library. |
| 462 |
[% END %] |
| 463 |
[% END %] |
| 464 |
", 'email'); |