diff options
author | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-19 14:37:17 -0500 |
---|---|---|
committer | Jonathan Prykop <jonathan@freeside.biz> | 2016-07-19 14:53:11 -0500 |
commit | 622d9a5930f47dad0c2897fed1b523138cb3e5c5 (patch) | |
tree | 32488bb76a2618df14c62ed19fdc6ac4a5586c4a /httemplate | |
parent | 2c3cd4a278a68d458d578c981df9bb1dd43f3fec (diff) |
RT#6223: Billing process - pending packages - feature request [order quotation on hold]
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/edit/process/quotation_convert.html | 7 | ||||
-rwxr-xr-x | httemplate/view/quotation.html | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/httemplate/edit/process/quotation_convert.html b/httemplate/edit/process/quotation_convert.html index dc00a88d3..26b5294f7 100644 --- a/httemplate/edit/process/quotation_convert.html +++ b/httemplate/edit/process/quotation_convert.html @@ -10,9 +10,12 @@ my $quotation = qsearchs( 'quotation' => { quotationnum => scalar( $cgi->param('quotationnum') ), } ) or die 'unknown quotationnum'; +my $params = {}; +$$params{'onhold'} = $cgi->param('onhold') ? 1 : 0; + my $cust_main = $quotation->cust_main; if ( $cust_main ) { - my $error = $quotation->order; + my $error = $quotation->order(undef,$params); errorpage($error) if $error; #i should be part of the order transaction @@ -20,7 +23,7 @@ if ( $cust_main ) { $quotation->replace; } else { - $cust_main = $quotation->convert_cust_main; + $cust_main = $quotation->convert_cust_main( $params ); errorpage($cust_main) unless ref($cust_main);# eq 'FS::cust_main'; } diff --git a/httemplate/view/quotation.html b/httemplate/view/quotation.html index 0570e78d2..66873616b 100755 --- a/httemplate/view/quotation.html +++ b/httemplate/view/quotation.html @@ -63,7 +63,9 @@ function areyousure(href, message) { <BR><BR> % if ( $curuser->access_right('New customer') && $quotation->quotation_pkg ) { +% # if we end up with more than one option, combine these links and add an interstitial screen <A HREF="<%$p%>edit/process/quotation_convert.html?quotationnum=<% $quotation->quotationnum %>">Place order</A> + | <A HREF="<%$p%>edit/process/quotation_convert.html?quotationnum=<% $quotation->quotationnum %>&onhold=1">Order on hold</A> <BR><BR> % } |