X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcust_location.pm;h=f38e8efcd01db75d7d23d7479c3d443af3e5f0ce;hb=b7f8a7cfd566881a6d89117d17e391ceb58097d4;hp=9ab94f2070c425017bc25787b10974496bcea829;hpb=d13dae1c37c36c27f1ac9fd134c5d8b3a4fb9754;p=freeside.git diff --git a/FS/FS/cust_location.pm b/FS/FS/cust_location.pm index 9ab94f207..f38e8efcd 100644 --- a/FS/FS/cust_location.pm +++ b/FS/FS/cust_location.pm @@ -5,7 +5,6 @@ use strict; use vars qw( $import $DEBUG $conf $label_prefix ); use Data::Dumper; use Date::Format qw( time2str ); -use Locale::Country; use FS::UID qw( dbh driver_name ); use FS::Record qw( qsearch qsearchs ); use FS::Conf; @@ -68,7 +67,7 @@ Address line two (optional) =item city -City (optional only if cust_main-no_city_in_address config is set) +City (if cust_main-no_city_in_address config is set when inserting, this will be forced blank) =item county @@ -149,18 +148,13 @@ sub find_or_insert { warn "find_or_insert:\n".Dumper($self) if $DEBUG; - my @essential = (qw(custnum address1 address2 county state zip country + my @essential = (qw(custnum address1 address2 city county state zip country location_number location_type location_kind disabled)); - # Just in case this conf was accidentally/temporarily set, - # we'll never overwrite existing city; see city method if ($conf->exists('cust_main-no_city_in_address')) { - warn "Warning: find_or_insert specified city when cust_main-no_city_in_address was configured" + warn "Warning: passed city to find_or_insert when cust_main-no_city_in_address is configured, ignoring it" if $self->get('city'); - $self->set('city',''); # won't end up in %nonempty, hence old value is preserved - } else { - # otherwise, of course, city is essential - push(@essential,'city') + $self->set('city',''); } # I don't think this is necessary @@ -218,10 +212,11 @@ otherwise returns false. sub insert { my $self = shift; - # Ideally, this should never happen, - # but throw a warning and save the value anyway, to avoid data loss - warn "Warning: inserting city when cust_main-no_city_in_address is configured" - if $conf->exists('cust_main-no_city_in_address') && $self->get('city'); + if ($conf->exists('cust_main-no_city_in_address')) { + warn "Warning: passed city to insert when cust_main-no_city_in_address is configured, ignoring it" + if $self->get('city'); + $self->set('city',''); + } if ( $self->censustract ) { $self->set('censusyear' => $conf->config('census_year') || 2012); @@ -254,20 +249,22 @@ sub insert { # cust_location exports #my $export_args = $options{'export_args'} || []; - my @part_export = - map qsearch( 'part_export', {exportnum=>$_} ), - $conf->config('cust_location-exports'); #, $agentnum - - foreach my $part_export ( @part_export ) { - my $error = $part_export->export_insert($self); #, @$export_args); - if ( $error ) { - $dbh->rollback if $oldAutoCommit; - return "exporting to ". $part_export->exporttype. - " (transaction rolled back): $error"; + # don't export custnum_pending cases, let follow-up replace handle that + if ($self->custnum || $self->prospectnum) { + my @part_export = + map qsearch( 'part_export', {exportnum=>$_} ), + $conf->config('cust_location-exports'); #, $agentnum + + foreach my $part_export ( @part_export ) { + my $error = $part_export->export_insert($self); #, @$export_args); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "exporting to ". $part_export->exporttype. + " (transaction rolled back): $error"; + } } } - $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; } @@ -288,18 +285,18 @@ sub replace { my $old = shift; $old ||= $self->replace_old; - # Just in case this conf was accidentally/temporarily set, - # we'll never overwrite existing city; see city method - if ($conf->exists('cust_main-no_city_in_address')) { - warn "Warning: replace attempted to change city when cust_main-no_city_in_address was configured" - if $self->get('city') && ($old->get('city') != $self->get('city')); - $self->set('city',$old->get('city')); - } + warn "Warning: passed city to replace when cust_main-no_city_in_address is configured" + if $conf->exists('cust_main-no_city_in_address') && $self->get('city'); - # the following fields are immutable - foreach (qw(address1 address2 city state zip country)) { - if ( $self->$_ ne $old->$_ ) { - return "can't change cust_location field $_"; + # the following fields are immutable if this is a customer location. if + # it's a prospect location, then there are no active packages, no billing + # history, no taxes, and in general no reason to keep the old location + # around. + if ( $self->custnum ) { + foreach (qw(address1 address2 city state zip country)) { + if ( $self->$_ ne $old->$_ ) { + return "can't change cust_location field $_"; + } } } @@ -316,20 +313,22 @@ sub replace { # cust_location exports #my $export_args = $options{'export_args'} || []; - my @part_export = - map qsearch( 'part_export', {exportnum=>$_} ), - $conf->config('cust_location-exports'); #, $agentnum - - foreach my $part_export ( @part_export ) { - my $error = $part_export->export_replace($self, $old); #, @$export_args); - if ( $error ) { - $dbh->rollback if $oldAutoCommit; - return "exporting to ". $part_export->exporttype. - " (transaction rolled back): $error"; + # don't export custnum_pending cases, let follow-up replace handle that + if ($self->custnum || $self->prospectnum) { + my @part_export = + map qsearch( 'part_export', {exportnum=>$_} ), + $conf->config('cust_location-exports'); #, $agentnum + + foreach my $part_export ( @part_export ) { + my $error = $part_export->export_replace($self, $old); #, @$export_args); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "exporting to ". $part_export->exporttype. + " (transaction rolled back): $error"; + } } } - $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; } @@ -419,40 +418,13 @@ sub check { $self->SUPER::check; } -=item city - -When the I config is set, the -city method will return a blank string no matter the previously -set value of the field. You can still use the get method to -access the contents of the field directly. - -Just in case this config was accidentally/temporarily set, -we'll never overwrite existing city while the config is active. -L will throw a warning if passed any true value for city, -ignore the city field when finding, and preserve the existing value. -L will only throw a warning if passed a true value that is -different than the existing value of city, and will preserve the existing value. -L will throw a warning but still insert a true city value, -to avoid unnecessary data loss. - -=cut - -sub city { - my $self = shift; - return '' if $conf->exists('cust_main-no_city_in_address'); - return $self->get('city'); -} - =item country_full -Returns this locations's full country name +Returns this location's full country name =cut -sub country_full { - my $self = shift; - code2country($self->country); -} +#moved to geocode_Mixin.pm =item line @@ -680,6 +652,11 @@ Prospect object (see L) String used to join location elements +=item no_prefix + +Don't label the default service location as "Default service location". +May become the default at some point. + =back =cut @@ -687,8 +664,9 @@ String used to join location elements sub location_label { my( $self, %opt ) = @_; - my $prefix = $self->label_prefix; + my $prefix = $self->label_prefix(%opt); $prefix .= ($opt{join_string} || ': ') if $prefix; + $prefix = '' if $opt{'no_prefix'}; $prefix . $self->SUPER::location_label(%opt); } @@ -750,7 +728,7 @@ sub label_prefix { $prefix; } -=item county_state_county +=item county_state_country Returns a string consisting of just the county, state and country. @@ -766,62 +744,6 @@ sub county_state_country { =back -=head1 CLASS METHODS - -=item in_county_sql OPTIONS - -Returns an SQL expression to test membership in a cust_main_county -geographic area. By default, this requires district, city, county, -state, and country to match exactly. Pass "ornull => 1" to allow -partial matches where some fields are NULL in the cust_main_county -record but not in the location. - -Pass "param => 1" to receive a parameterized expression (rather than -one that requires a join to cust_main_county) and a list of parameter -names in order. - -=cut - -### Is this actually used for anything anymore? Grep doesn't show anything... -sub in_county_sql { - # replaces FS::cust_pkg::location_sql - my ($class, %opt) = @_; - my $ornull = $opt{ornull} ? ' OR ? IS NULL' : ''; - my $x = $ornull ? 3 : 2; - my @fields = (('district') x 3, - ('county') x $x, - ('state') x $x, - 'country'); - - unless ($conf->exists('cust_main-no_city_in_address')) { - push( @fields, (('city') x 3) ); - } - - my $text = (driver_name =~ /^mysql/i) ? 'char' : 'text'; - - my @where = ( - "cust_location.district = ? OR ? = '' OR CAST(? AS $text) IS NULL", - "cust_location.county = ? OR (? = '' AND cust_location.county IS NULL) $ornull", - "cust_location.state = ? OR (? = '' AND cust_location.state IS NULL ) $ornull", - "cust_location.country = ?", - "cust_location.city = ? OR ? = '' OR CAST(? AS $text) IS NULL" - ); - my $sql = join(' AND ', map "($_)\n", @where); - if ( $opt{param} ) { - return $sql, @fields; - } - else { - # do the substitution here - foreach (@fields) { - $sql =~ s/\?/cust_main_county.$_/; - $sql =~ s/cust_main_county.$_ = ''/cust_main_county.$_ IS NULL/; - } - return $sql; - } -} - -=back - =head2 SUBROUTINES =over 4