summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormark <mark>2010-09-01 17:51:33 +0000
committermark <mark>2010-09-01 17:51:33 +0000
commit9fcab6641ab7528ab74a87aa0883622d696e8108 (patch)
tree58480b051403a44ac7e9b0ce743ec76b79f66e4e
parent080c42eda4e4b94fc588b284a7f770d427c57fea (diff)
make expdate available in new alerter templates, RT#9786
-rw-r--r--FS/FS/Cron/alert_expiration.pm1
-rw-r--r--FS/FS/msg_template.pm4
2 files changed, 4 insertions, 1 deletions
diff --git a/FS/FS/Cron/alert_expiration.pm b/FS/FS/Cron/alert_expiration.pm
index 364fc60..eb53ea8 100644
--- a/FS/FS/Cron/alert_expiration.pm
+++ b/FS/FS/Cron/alert_expiration.pm
@@ -99,6 +99,7 @@ sub alert_expiration {
my $msgnum = $conf->config('alerter_msgnum', $agentnum);
if ( $msgnum ) { # new hotness
my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } );
+ $customer->setfield('expdate', $expire_time);
$error = $msg_template->send('cust_main' => $customer);
}
else { #!$msgnum, the hard way
diff --git a/FS/FS/msg_template.pm b/FS/FS/msg_template.pm
index 2e5ef0a..b1ae6be 100644
--- a/FS/FS/msg_template.pm
+++ b/FS/FS/msg_template.pm
@@ -226,7 +226,7 @@ sub prepare {
$_
} @$guts;
- $body = '';
+ $body = '{ use Date::Format qw(time2str); "" }';
while(@$skin || @$guts) {
$body .= shift(@$skin) || '';
$body .= shift(@$guts) || '';
@@ -315,7 +315,9 @@ sub substitutions {
cust_status ucfirst_cust_status cust_statuscolor
signupdate dundate
+ expdate
),
+ # expdate is a special case
[ signupdate_ymd => sub { time2str('%Y-%m-%d', shift->signupdate) } ],
[ dundate_ymd => sub { time2str('%Y-%m-%d', shift->dundate) } ],
[ paydate_my => sub { sprintf('%02d/%04d', shift->paydate_monthyear) } ],