summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authormark <mark>2010-07-30 22:20:50 +0000
committermark <mark>2010-07-30 22:20:50 +0000
commit5f38c4055b82da17afabf6f65b0afc951de641fa (patch)
treefd1211811e759e7fd43bbb4ed8123d9f694c2264 /httemplate
parent8d39836a37186ad0e3aa993e2cc659e0b986cd35 (diff)
payment receipts use msg_template, RT#9060
Diffstat (limited to 'httemplate')
-rw-r--r--httemplate/edit/msg_template.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/httemplate/edit/msg_template.html b/httemplate/edit/msg_template.html
index 01d866dfb..67eae185d 100644
--- a/httemplate/edit/msg_template.html
+++ b/httemplate/edit/msg_template.html
@@ -50,6 +50,7 @@ my %substitutions = (
'$cust_status' => 'Status',
'$ucfirst_cust_status' => 'Status, capitalized',
'$cust_statuscolor' => 'Status color code',
+ '$company_name' => 'Our company name',
],
'contact' => [ # duplicate this for shipping
'$name' => 'Company and contact name',
@@ -92,7 +93,14 @@ my %substitutions = (
],
'svc_acct' => [
'$username' => 'Login name',
- '$password' => 'Password',
+ '$password' => 'Password',
+ ],
+ 'cust_pay' => [
+ '$paynum' => 'Payment#',
+ '$paid' => 'Amount',
+ '$payby' => 'Payment method',
+ '$date' => 'Payment date',
+ '$payinfo' => 'Card/account# (masked)',
],
);
my @c = @{ $substitutions{'contact'} };
@@ -107,6 +115,7 @@ tie my %sections, 'Tie::IxHash', (
'cust_main' => 'Customer status and payment info',
'cust_pkg' => 'Package fields',
'cust_bill' => 'Invoice fields',
+'cust_pay' => 'Payment fields',
'svc_acct' => 'Login service fields',
);