diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-02 15:11:04 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-02 15:11:04 -0600 |
commit | 8b70832328eb02dc9253dab7b436c6479b588162 (patch) | |
tree | 9329dc8cc4201a39718cc844b1165c1c751e3995 /httemplate/edit/process | |
parent | 96d579596bf4dfbb4cd959bf8dc350ef8dc7fa06 (diff) |
RT#38733: Sales forecasting using quotes
Diffstat (limited to 'httemplate/edit/process')
-rw-r--r-- | httemplate/edit/process/quotation.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/edit/process/quotation.html b/httemplate/edit/process/quotation.html index a69566581..1cda30f60 100644 --- a/httemplate/edit/process/quotation.html +++ b/httemplate/edit/process/quotation.html @@ -8,4 +8,8 @@ die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Generate quotation'); +my $close_date = $cgi->param('close_date'); +$close_date = parse_datetime($close_date); +$cgi->param('close_date',$close_date); + </%init> |