diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-03-23 11:21:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-03-23 11:21:10 -0700 |
commit | bf4e71db6af0d0a86edcec8b447d8b5444d45f6c (patch) | |
tree | f24d6840d2a43d82a8a736375a4c8456455d437a /httemplate/edit/REAL_cust_pkg.cgi | |
parent | 69bf020f03918910e0e34260d6e5a9d984f0414d (diff) |
warn if adding a setup date too
Diffstat (limited to 'httemplate/edit/REAL_cust_pkg.cgi')
-rwxr-xr-x | httemplate/edit/REAL_cust_pkg.cgi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/edit/REAL_cust_pkg.cgi b/httemplate/edit/REAL_cust_pkg.cgi index 0e18a52b2..166a3b7ea 100755 --- a/httemplate/edit/REAL_cust_pkg.cgi +++ b/httemplate/edit/REAL_cust_pkg.cgi @@ -175,10 +175,17 @@ if ( $cgi->param('error') ) { if ( $errors{'_setup_areyousure'} ) { push @errors, "You are attempting to remove the setup date. This will re-charge the - customer for the setup fee. Are you sure you want to do this? ". + customer for the setup fee. Are you sure you want to do this? ". '<INPUT TYPE="checkbox" NAME="setup_areyousure" VALUE="1">'; } + if ( $errors{'_setupadd_areyousure'} ) { + push @errors, + "You are attempting to add a setup date. This will prevent charging the + customer for the setup fee. Are you sure you want to do this? ". + '<INPUT TYPE="checkbox" NAME="setupadd_areyousure" VALUE="1">'; + } + if ( $errors{'_start'} ) { push @errors, "You are attempting to add a start date to a package that has already |