diff options
author | mark <mark> | 2010-09-22 21:22:03 +0000 |
---|---|---|
committer | mark <mark> | 2010-09-22 21:22:03 +0000 |
commit | cb0b8c862de7c7ab68b172faa29167f47894627b (patch) | |
tree | a690eda6f9b6d6e9274094583618962e7b248227 /httemplate/edit/process | |
parent | 197c503fbe112896332e9ca5f17c9c5a2ea4bb87 (diff) |
customer credit limits, RT#8209
Diffstat (limited to 'httemplate/edit/process')
-rwxr-xr-x | httemplate/edit/process/cust_main.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/process/cust_main.cgi b/httemplate/edit/process/cust_main.cgi index 3158d7bbf..e2238bd67 100755 --- a/httemplate/edit/process/cust_main.cgi +++ b/httemplate/edit/process/cust_main.cgi @@ -73,6 +73,10 @@ if ( defined($cgi->param('same')) && $cgi->param('same') eq "Y" ) { ); } +if ( $cgi->param('no_credit_limit') ) { + $new->setfield('credit_limit', ''); +} + $new->tagnum( [ $cgi->param('tagnum') ] ); my %usedatetime = ( 'birthdate' => 1 ); |