[freeside-commits] freeside/httemplate/misc batch-cust_pay.html, 1.15, 1.16
Erik Levinson
levinse at wavetail.420.am
Mon Jun 6 12:47:00 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/misc
In directory wavetail.420.am:/tmp/cvs-serv2251/httemplate/misc
Modified Files:
batch-cust_pay.html
Log Message:
quick payment entry improvements, RT8121
Index: batch-cust_pay.html
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/misc/batch-cust_pay.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -w -d -r1.15 -r1.16
--- batch-cust_pay.html 27 Nov 2010 03:55:07 -0000 1.15
+++ batch-cust_pay.html 6 Jun 2011 19:46:58 -0000 1.16
@@ -96,14 +96,17 @@
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 = '';
More information about the freeside-commits
mailing list