X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fqual.pm;h=07878e9c25ad2d41c58374861a7b03a201f1fe94;hb=b79a8cb932946c849328a3c117c35821d9d21e66;hp=98e137c6bd42f6b946061b212d34329eb31c5734;hpb=1888d732dcc9f50b7f88ebc684d1c05b534cbd92;p=freeside.git diff --git a/FS/FS/qual.pm b/FS/FS/qual.pm index 98e137c6b..07878e9c2 100644 --- a/FS/FS/qual.pm +++ b/FS/FS/qual.pm @@ -91,7 +91,8 @@ sub insert { if ( $options{'cust_location'} ) { my $cust_location = $options{'cust_location'}; - my $error = $cust_location->insert; + my $method = $cust_location->locationnum ? 'replace' : 'insert'; + my $error = $cust_location->$method(); if ( $error ) { $dbh->rollback if $oldAutoCommit; return $error; @@ -184,29 +185,34 @@ sub part_export { ''; } +sub cust_location { + my $self = shift; + return '' unless $self->locationnum; + qsearchs('cust_location', { 'locationnum' => $self->locationnum } ); +} + +sub cust_main { + my $self = shift; + return '' unless $self->custnum; + qsearchs('cust_main', { 'custnum' => $self->custnum } ); +} + sub location_hash { - my $self = shift; - use Data::Dumper; warn Dumper($self); - if ( $self->locationnum ) { - my $l = qsearchs( 'cust_location', - { 'locationnum' => $self->locationnum }); - if ( $l ) { - my %loc_hash = $l->location_hash; - $loc_hash{locationnum} = $self->locationnum; - return %loc_hash; - } - } - if ( $self->custnum ) { - my $c = qsearchs( 'cust_main', { 'custnum' => $self->custnum }); - - if($c) { - # always override location_kind as it would never be known in the - # case of cust_main "default service address" - my %loc_hash = $c->location_hash; - $loc_hash{location_kind} = $c->company ? 'B' : 'R'; - return %loc_hash; - } - } + my $self = shift; + + if ( my $l = $self->cust_location ) { + my %loc_hash = $l->location_hash; + $loc_hash{locationnum} = $self->locationnum; + return %loc_hash; + } + + if ( my $c = $self->cust_main ) { + # always override location_kind as it would never be known in the + # case of cust_main "default service address" + my %loc_hash = $c->location_hash; + $loc_hash{location_kind} = $c->company ? 'B' : 'R'; + return %loc_hash; + } warn "prospectnum does not imply any particular address! must specify locationnum"; return (); @@ -226,6 +232,7 @@ sub cust_or_prospect { if $self->custnum; return qsearchs('prospect_main', { 'prospectnum' => $self->prospectnum }) if $self->prospectnum; + ''; } sub status_long {