X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fqual.pm;h=8f58389730dea4cfe574018526e5e8c90563e989;hb=4fc9163c63678a4fd19ed0b31f25f97cc0ac2748;hp=de0633423fc4b8b43213f75feb83a16fb8afd476;hpb=53b930cc67361258ea40f793ca1eb0b3d976bd9c;p=freeside.git diff --git a/FS/FS/qual.pm b/FS/FS/qual.pm index de0633423..8f5838973 100644 --- a/FS/FS/qual.pm +++ b/FS/FS/qual.pm @@ -38,10 +38,6 @@ FS::Record. The following fields are currently supported: =item locationnum -Either one of these cases must be true: --locationnum is non-null and prospectnum is null and custnum is null --locationnum is null and (prospectnum is non-null or custnum is non-null, but not both non-null) - =item phonenum - Service Telephone Number =item exportnum - export instance providing service-qualification capabilities, @@ -117,25 +113,83 @@ sub check { || $self->ut_foreign_keyn('prospectnum', 'prospect_main', 'prospectnum') || $self->ut_foreign_keyn('locationnum', 'cust_location', 'locationnum') || $self->ut_numbern('phonenum') - || $self->ut_foreign_key('exportnum', 'part_export', 'exportnum') + || $self->ut_foreign_keyn('exportnum', 'part_export', 'exportnum') || $self->ut_textn('vendor_qual_id') || $self->ut_alpha('status') ; return $error if $error; -#Either one of these cases must be true: -#1. locationnum is non-null and prospectnum is null and custnum is null -#2. locationnum is null and (prospectnum is non-null or custnum is non-null, but not both non-null) - return "Invalid prospect/customer/location combination" unless ( - ( $self->locationnum && !$self->prospectcnum && !$self->custnum ) #1 - || - ( !$self->locationnum && ( $self->prospectnum || $self->custnum ) - && !( $self->custnum && $self->prospectnum ) ) #2 + return "Invalid prospect/customer/location combination" if ( + ( $self->locationnum && $self->prospectnum && $self->custnum ) || + ( !$self->locationnum && !$self->prospectnum && !$self->custnum ) ); $self->SUPER::check; } +sub part_export { + my $self = shift; + if ( $self->exportnum ) { + return qsearchs('part_export', { exportnum => $self->exportnum } ) + or die 'invalid exportnum'; + } + ''; +} + +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_or_prospect { + my $self = shift; + if ( $self->locationnum ) { + my $l = qsearchs( 'cust_location', + { 'locationnum' => $self->locationnum }); + return qsearchs('cust_main',{ 'custnum' => $l->custnum }) + if $l->custnum; + return qsearchs('prospect_main',{ 'prospectnum' => $l->prospectnum }) + if $l->prospectnum; + } + return qsearchs('cust_main', { 'custnum' => $self->custnum }) + if $self->custnum; + return qsearchs('prospect_main', { 'prospectnum' => $self->prospectnum }) + if $self->prospectnum; +} + +sub status_long { + my $self = shift; + my $s = { + 'Q' => 'Qualified', + 'D' => 'Does not Qualify', + 'N' => 'New', + }; + return $s->{$self->status} if defined $s->{$self->status}; + return 'Unknown'; +} + =back =head1 SEE ALSO