X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_main%2FAPI.pm;h=158b5cf58e6ef1db92ed6cf37cc22b953cd23a63;hb=0238fd7aa7a92887970507346ac7e6ad8ed5492c;hp=4a09b936a9e26acda44f0d43e6a008ef1e486813;hpb=fc937dac3920ddbf5d009bb28c75ff1eb529c625;p=freeside.git diff --git a/FS/FS/cust_main/API.pm b/FS/FS/cust_main/API.pm index 4a09b936a..158b5cf58 100644 --- a/FS/FS/cust_main/API.pm +++ b/FS/FS/cust_main/API.pm @@ -159,11 +159,10 @@ sub API_insert { sub API_update { - my( $class, %opt ) = @_; + my( $class, %opt ) = @_; my $conf = new FS::Conf; - my $custnum = $opt{'custnum'} or return { 'error' => "no customer record" }; @@ -180,43 +179,47 @@ sub API_update { payby payinfo paydate paycvv payname ), - - my @invoicing_list = $opt{'invoicing_list'} - ? split( /\s*\,\s*/, $opt{'invoicing_list'} ) - : (); - push @invoicing_list, 'POST' if $opt{'postal_invoicing'}; - - my ($bill_hash, $ship_hash); - foreach my $f (FS::cust_main->location_fields) { - # avoid having to change this in front-end code - $bill_hash->{$f} = $opt{"bill_$f"} || $opt{$f}; - $ship_hash->{$f} = $opt{"ship_$f"}; + my @invoicing_list; + if ( exists $opt{'invoicing_list'} || exists $opt{'postal_invoicing'} ) { + @invoicing_list = split( /\s*\,\s*/, $opt{'invoicing_list'} ); + push @invoicing_list, 'POST' if $opt{'postal_invoicing'}; + } else { + @invoicing_list = $cust_main->invoicing_list; } - my $bill_location = FS::cust_location->new($bill_hash); - my $ship_location; - # we don't have an equivalent of the "same" checkbox in selfservice^Wthis API - # so is there a ship address, and if so, is it different from the billing - # address? - if ( length($ship_hash->{address1}) > 0 and - grep { $bill_hash->{$_} ne $ship_hash->{$_} } keys(%$ship_hash) - ) { + if ( exists( $opt{'address1'} ) ) { + my $bill_location = FS::cust_location->new({ + map { $_ => $opt{$_} } @location_editable_fields + }); + $bill_location->set('custnum' => $custnum); + my $error = $bill_location->find_or_insert; + die $error if $error; - $ship_location = FS::cust_location->new( $ship_hash ); - - } else { - $ship_location = $bill_location; + # if this is unchanged from before, cust_main::replace will ignore it + $new->set('bill_location' => $bill_location); } - $new->set('bill_location' => $bill_location); - $new->set('ship_location' => $ship_location); + if ( exists($opt{'ship_address1'}) && length($opt{"ship_address1"}) > 0 ) { + my $ship_location = FS::cust_location->new({ + map { $_ => $opt{"ship_$_"} } @location_editable_fields + }); + + $ship_location->set('custnum' => $custnum); + my $error = $ship_location->find_or_insert; + die $error if $error; + + $new->set('ship_location' => $ship_location); + + } elsif (exists($opt{'ship_address1'} ) && !grep { length($opt{"ship_$_"}) } @location_editable_fields ) { + my $ship_location = $new->bill_location; + $new->set('ship_location' => $ship_location); + } my $error = $new->replace( $cust_main, \@invoicing_list ); return { 'error' => $error } if $error; - + return { 'error' => '', - }; - + }; } 1;