X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fqual.pm;h=07878e9c25ad2d41c58374861a7b03a201f1fe94;hp=8f58389730dea4cfe574018526e5e8c90563e989;hb=395cc72629d31c8dcd138acf423e66d2d73d89d2;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c diff --git a/FS/FS/qual.pm b/FS/FS/qual.pm index 8f5838973..07878e9c2 100644 --- a/FS/FS/qual.pm +++ b/FS/FS/qual.pm @@ -2,7 +2,7 @@ package FS::qual; use strict; use base qw( FS::option_Common ); -use FS::Record qw( qsearch qsearchs ); +use FS::Record qw( qsearch qsearchs dbh ); =head1 NAME @@ -74,7 +74,56 @@ otherwise returns false. =cut -# the insert method can be inherited from FS::Record +sub insert { + my $self = shift; + my %options = @_; + + local $SIG{HUP} = 'IGNORE'; + local $SIG{INT} = 'IGNORE'; + local $SIG{QUIT} = 'IGNORE'; + local $SIG{TERM} = 'IGNORE'; + local $SIG{TSTP} = 'IGNORE'; + local $SIG{PIPE} = 'IGNORE'; + + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; + + if ( $options{'cust_location'} ) { + my $cust_location = $options{'cust_location'}; + my $method = $cust_location->locationnum ? 'replace' : 'insert'; + my $error = $cust_location->$method(); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + $self->locationnum( $cust_location->locationnum ); + } + + my @qual_option = (); + if ( $self->exportnum ) { + my $export = qsearchs( 'part_export', { 'exportnum' => $self->exportnum } ) + or die 'Invalid exportnum'; + + my $qres = $export->qual($self); + unless ( ref($qres) ) { + $dbh->rollback if $oldAutoCommit; + return "Qualification error: $qres"; + } + + $self->$_($qres->{$_}) foreach grep $qres->{$_}, qw(status vendor_qual_id); + @qual_option = ( $qres->{'options'} ) if ref($qres->{'options'}); + } + + my $error = $self->SUPER::insert(@qual_option); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + + $dbh->commit or die $dbh->errstr if $oldAutoCommit; + ''; +} =item delete @@ -136,31 +185,37 @@ sub part_export { ''; } -sub location { - my $self = shift; - 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; - } - } - # prospectnum does not imply any particular address! must specify locationnum +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; + + 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 (); } sub cust_or_prospect { @@ -177,6 +232,7 @@ sub cust_or_prospect { if $self->custnum; return qsearchs('prospect_main', { 'prospectnum' => $self->prospectnum }) if $self->prospectnum; + ''; } sub status_long {