diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-02 15:11:04 -0600 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-03-08 13:18:39 -0600 |
commit | 7cccefa1dca60909499b11dff96124a793c4c92d (patch) | |
tree | b3cecba9513fe5adf410f9bca6a968348ff8089f /httemplate/edit/process/quotation.html | |
parent | 77f5d80f4178f976efbc0be027656e396cecc1cb (diff) |
RT#38733: Sales forecasting using quotes
Diffstat (limited to 'httemplate/edit/process/quotation.html')
-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> |