RT# 82949 - changes section name from fees to pricing, better opiton
[freeside.git] / httemplate / edit / process / quotation_convert.html
index b387d06..26b5294 100644 (file)
@@ -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';
+}
 
 </%init>