[freeside-commits] freeside/httemplate/misc batch-cust_pay.html, 1.14.2.1, 1.14.2.2
Erik Levinson
levinse at wavetail.420.am
Mon Jun 6 12:47:01 PDT 2011
Update of /home/cvs/cvsroot/freeside/httemplate/misc
In directory wavetail.420.am:/tmp/cvs-serv2270/httemplate/misc
Modified Files:
Tag: FREESIDE_2_1_BRANCH
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.14.2.1
retrieving revision 1.14.2.2
diff -u -w -d -r1.14.2.1 -r1.14.2.2
--- batch-cust_pay.html 27 Nov 2010 03:55:08 -0000 1.14.2.1
+++ batch-cust_pay.html 6 Jun 2011 19:46:59 -0000 1.14.2.2
@@ -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