avoid wiping signupdate when editing cust_main, RT#9972
authormark <mark>
Wed, 29 Sep 2010 00:38:08 +0000 (00:38 +0000)
committermark <mark>
Wed, 29 Sep 2010 00:38:08 +0000 (00:38 +0000)
httemplate/edit/process/cust_main.cgi

index e2238bd..24cecea 100755 (executable)
@@ -251,6 +251,11 @@ if ( $new->custnum eq '' ) {
     $new->payinfo($new_account.'@'.$new_aba);
   }
 
+  if ( ! $conf->exists('cust_main-edit_signupdate') or
+       ! $new->signupdate ) {
+    $new->signupdate($old->signupdate);
+  }
+
   warn "$me calling $new -> replace( $old, \ @invoicing_list )" if $DEBUG;
   local($FS::cust_main::DEBUG) = $DEBUG if $DEBUG;
   local($FS::Record::DEBUG)    = $DEBUG if $DEBUG;