X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Fquotation_convert.html;h=26b5294f7ee30b8a598a0ab3aa9259533df14ea8;hp=b387d0607c1067dacabe75ede2c6be5b1d3e403e;hb=3f2a7b01b59902faed5767d81e2959e131bdbdfd;hpb=202e6945393b47f5aa75a65682ab0d14e04fe7eb diff --git a/httemplate/edit/process/quotation_convert.html b/httemplate/edit/process/quotation_convert.html index b387d0607..26b5294f7 100644 --- a/httemplate/edit/process/quotation_convert.html +++ b/httemplate/edit/process/quotation_convert.html @@ -10,8 +10,22 @@ my $quotation = qsearchs( 'quotation' => { quotationnum => scalar( $cgi->param('quotationnum') ), } ) or die 'unknown quotationnum'; -my $cust_main = $quotation->convert_cust_main; -errorpage($cust_main) unless ref($cust_main);# eq 'FS::cust_main'; +my $params = {}; +$$params{'onhold'} = $cgi->param('onhold') ? 1 : 0; + +my $cust_main = $quotation->cust_main; +if ( $cust_main ) { + my $error = $quotation->order(undef,$params); + errorpage($error) if $error; + + #i should be part of the order transaction + $quotation->disabled('Y'); + $quotation->replace; + +} else { + $cust_main = $quotation->convert_cust_main( $params ); + errorpage($cust_main) unless ref($cust_main);# eq 'FS::cust_main'; +}