diff options
author | mark <mark> | 2010-07-30 22:08:55 +0000 |
---|---|---|
committer | mark <mark> | 2010-07-30 22:08:55 +0000 |
commit | a95bfdb0174c66cbf8444967efcd04cb638d727c (patch) | |
tree | 95ad520041d6dc86e2c4426a969af24838c6ef77 /httemplate/edit | |
parent | b11dd92ff638a29c5b187fe878f05f5323e4337a (diff) |
payment receipts use msg_template, RT#9060
Diffstat (limited to 'httemplate/edit')
-rw-r--r-- | httemplate/edit/msg_template.html | 11 |
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', ); |