diff options
author | ivan <ivan> | 2009-06-30 12:28:38 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-06-30 12:28:38 +0000 |
commit | 0376f47e1ec2ec9b8702a0e6c5146af9c66beb5e (patch) | |
tree | 42f0c773b4f803770c6837353cbe2aefdbdb3223 /httemplate/edit/process/REAL_cust_pkg.cgi | |
parent | b769174d6b1f1a7372298e05165ca6c21e3a0620 (diff) |
one-time charge "hold for later" / any package future start date, RT#5347
Diffstat (limited to 'httemplate/edit/process/REAL_cust_pkg.cgi')
-rwxr-xr-x | httemplate/edit/process/REAL_cust_pkg.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/httemplate/edit/process/REAL_cust_pkg.cgi b/httemplate/edit/process/REAL_cust_pkg.cgi index c99ddc288..d4ba976c4 100755 --- a/httemplate/edit/process/REAL_cust_pkg.cgi +++ b/httemplate/edit/process/REAL_cust_pkg.cgi @@ -19,6 +19,7 @@ die "access denied" my $pkgnum = $cgi->param('pkgnum') or die; my $old = qsearchs('cust_pkg',{'pkgnum'=>$pkgnum}); my %hash = $old->hash; +$hash{'start_date'} = $cgi->param('start_date') ? str2time($cgi->param('start_date')) : ''; $hash{'setup'} = $cgi->param('setup') ? str2time($cgi->param('setup')) : ''; $hash{'bill'} = $cgi->param('bill') ? str2time($cgi->param('bill')) : ''; $hash{'last_bill'} = |