Bug 8838: Add SMS default/sample notices
Signed-off-by: Emily Lamancusa <emily.lamancusa@montgomerycountymd.gov> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
358272ebbc
commit
de63f6eb75
2 changed files with 21 additions and 1 deletions
|
@ -9,10 +9,15 @@ return {
|
|||
|
||||
$dbh->do(
|
||||
q{
|
||||
INSERT IGNORE INTO `letter` VALUES (NULL,'reserves','HOLDDGST','','Hold available for pickup (digest)',0,'Hold(s) available for pickup','You have one or more holds available for pickup:\r\n----\r\nTitle: [% hold.biblio.title %]\r\nAuthor: [% hold.biblio.author %]\r\nCopy: [% hold.item.copynumber %]\r\nLocation: [% hold.branch.branchname %]\r\nWaiting since: [% hold.waitingdate %]\r\n[% hold.branch.branchaddress1 %]\r\n[% hold.branch.branchaddress2 %]\r\n[% hold.branch.branchaddress3 %]\r\n[% hold.branch.branchcity %] [% hold.branch.branchzip %]\r\n----','email','default','2023-08-29 18:42:15');
|
||||
INSERT IGNORE INTO `letter` VALUES (NULL,'reserves','HOLDDGST','','Hold available for pickup (digest)',0,'Hold(s) available for pickup','You have one or more holds available for pickup:\r\n\r\n----\r\nTitle: [% hold.biblio.title %]\r\nAuthor: [% hold.biblio.author %]\r\nCopy: [% hold.item.copynumber %]\r\nLocation: [% hold.branch.branchname %]\r\nWaiting since: [% hold.waitingdate %]\r\n[% hold.branch.branchaddress1 %]\r\n[% hold.branch.branchaddress2 %]\r\n[% hold.branch.branchaddress3 %]\r\n[% hold.branch.branchcity %] [% hold.branch.branchzip %]\r\n----','email','default','2023-08-29 18:42:15');
|
||||
}
|
||||
);
|
||||
|
||||
$dbh->do(
|
||||
q{
|
||||
INSERT IGNORE INTO `letter` VALUES (NULL,'reserves','HOLDDGST','','Hold available for pickup (digest)',0,'Hold(s) available for pickup','You have one or more holds available for pickup:\r\n----\r\n[% hold.biblio.title %]\r\n----','sms','default','2023-08-29 18:42:15');
|
||||
}
|
||||
);
|
||||
$dbh->do(
|
||||
q{
|
||||
INSERT IGNORE INTO message_transports VALUES
|
||||
|
|
|
@ -1817,6 +1817,21 @@ tables:
|
|||
- "----"
|
||||
- "Thank you!"
|
||||
|
||||
- module: reserves
|
||||
code: HOLDDGST
|
||||
branchcode: ""
|
||||
name: "Hold(s) available for pickup"
|
||||
is_html: 0
|
||||
title: "Hold(s) available for pickup"
|
||||
message_transport_type: sms
|
||||
lang: default
|
||||
content:
|
||||
- "You have one or more holds available for pickup:"
|
||||
- ""
|
||||
- "----"
|
||||
- "Title: [% hold.biblio.title %]"
|
||||
- "----"
|
||||
|
||||
- module: reserves
|
||||
code: HOLD
|
||||
branchcode: ""
|
||||
|
|
Loading…
Reference in a new issue