diff options
author | Ivan Kohler <ivan@freeside.biz> | 2015-07-17 11:46:37 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2015-07-17 11:46:37 -0700 |
commit | 85f0e2caa759102f68fe28278faf5f65c7b33b3c (patch) | |
tree | 9df5048c9433d786c38db9b9c0b8fdcf18182912 /httemplate/misc | |
parent | f8f4e8e6fd26a0abe8bca4fe6dd1b70b80b55a25 (diff) | |
parent | 0757f503bd30a99edddb6b18fed8ff00c9e91df8 (diff) |
Merge branch 'FREESIDE_3_BRANCH' of git.freeside.biz:/home/git/freeside into FREESIDE_3_BRANCH
Diffstat (limited to 'httemplate/misc')
-rw-r--r-- | httemplate/misc/batch-cust_pay.html | 10 | ||||
-rw-r--r-- | httemplate/misc/process/batch-cust_pay.cgi | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/httemplate/misc/batch-cust_pay.html b/httemplate/misc/batch-cust_pay.html index 3b0ebc112..9f2540cc7 100644 --- a/httemplate/misc/batch-cust_pay.html +++ b/httemplate/misc/batch-cust_pay.html @@ -461,6 +461,16 @@ push @footer, ''; push @footer_align, ''; push @onchange, 'toggle_application_row'; +push @header, 'No Auto Allocate'; +push @fields, 'no_auto_apply'; +push @types, 'checkbox'; +push @align, 'c'; +push @sizes, '0'; +push @colors, ''; +push @footer, ''; +push @footer_align, ''; +push @onchange, ''; + #push @header, 'Error'; push @header, ''; push @fields, 'error'; diff --git a/httemplate/misc/process/batch-cust_pay.cgi b/httemplate/misc/process/batch-cust_pay.cgi index bb4b9733c..ff7886239 100644 --- a/httemplate/misc/process/batch-cust_pay.cgi +++ b/httemplate/misc/process/batch-cust_pay.cgi @@ -40,6 +40,7 @@ foreach my $row ( map /^custnum(\d+)$/, keys %$param ) { 'payinfo' => $param->{"payinfo$row"}, 'discount_term' => $param->{"discount_term$row"}, 'paybatch' => $paybatch, + 'no_auto_apply' => exists($param->{"no_auto_apply$row"}) ? 'Y' : '', } if $param->{"custnum$row"} || $param->{"paid$row"} |