diff options
| author | levinse <levinse> | 2011-06-06 19:46:59 +0000 |
|---|---|---|
| committer | levinse <levinse> | 2011-06-06 19:46:59 +0000 |
| commit | 285a43e5c88611afadca6ace9907ab3b04551bf4 (patch) | |
| tree | f8183379f71c4e83163c44ad6a9003cd86238a9a /httemplate/misc | |
| parent | 7a0c9d8fbf361613659e8b75263e6d3dd548e9f3 (diff) | |
quick payment entry improvements, RT8121
Diffstat (limited to 'httemplate/misc')
| -rw-r--r-- | httemplate/misc/batch-cust_pay.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index c5ed6d852..20ea92f37 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -96,14 +96,17 @@ function select_discount_term(row, prefix) { die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Post payment batch'); +my $conf = new FS::Conf; +my $money_char = $conf->config('money_char') || '$'; + my @header = ( '', 'Amount', 'Check #' ); -my @fields = ( sub {'$'}, 'paid', 'payinfo' ); +my @fields = ( sub { "$money_char" }, 'paid', 'payinfo' ); my @types = ( 'immutable', '', '' ); my @align = ( 'c', 'r', 'r' ); my @sizes = ( 0, 8, 10 ); my @colors = ( '', '', '' ); my %param = (); -my @footer = ( '$', '_TOTAL', '' ); +my @footer = ( "$money_char", '_TOTAL', '' ); my @footer_align = ( 'c', 'r', 'r' ); my $custnum_update_callback = ''; |
