X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg_taxrate.pm;h=bfb1ea8e27ff45f2e3cb59872f6df4d99d7e0a9b;hp=c83f700d9336429910848626726db957787bb5f6;hb=HEAD;hpb=7792fb0d3dfa4e77f41b8055e96a8938153a7677 diff --git a/FS/FS/part_pkg_taxrate.pm b/FS/FS/part_pkg_taxrate.pm index c83f700d9..bfb1ea8e2 100644 --- a/FS/FS/part_pkg_taxrate.pm +++ b/FS/FS/part_pkg_taxrate.pm @@ -5,8 +5,7 @@ use vars qw( @ISA ); use Date::Parse; use DateTime; use DateTime::Format::Strptime; -use FS::UID qw(dbh); -use FS::Record qw( qsearch qsearchs ); +use FS::Record qw( qsearch qsearchs dbh ); use FS::part_pkg_taxproduct; use FS::Misc qw(csv_from_fixed); @@ -244,9 +243,12 @@ sub batch_import { ); unless ($part_pkg_taxproduct) { - return "Can't find part_pkg_taxproduct for txmatrix deletion: ". - join(" ", map { "$_ => ". $hash->{$_} } @fields) - if ($hash->{'actionfield'} && $hash->{'actionflag'} eq 'D'); + if (($hash->{'actionfield'} || '') eq 'D') { + warn "WARNING: Can't find part_pkg_taxproduct for txmatrix deletion: ". + join(" ", map { "$_ => ". $hash->{$_} } @fields) . + " (ignored)\n"; + next; + } $part_pkg_taxproduct{'description'} = join(' : ', (map{ $hash->{$_} } qw(groupdesc itemdesc)), @@ -263,6 +265,8 @@ sub batch_import { delete($hash->{$_}) for qw(group groupdesc item itemdesc provider customer rectype ); + + # resolve the taxtype/taxcat fields to taxclassnums my %map = ( 'taxclassnum' => [ 'taxtype', 'taxcat' ], 'taxclassnumtaxed' => [ 'taxtypetaxed', 'taxcattaxed' ], @@ -276,14 +280,13 @@ sub batch_import { 'taxclass' => $class, } ); - $hash->{$item} = $tax_class->taxclassnum - if $tax_class; - - return "Can't find tax class for txmatrix deletion: ". - join(" ", map { "$_ => ". $hash->{$_} } @fields) - if ( $hash->{'actionflag'} && $hash->{'actionflag'} eq 'D' && - !$tax_class && $class ne ':' - ); + if ( $tax_class ) { + $hash->{$item} = $tax_class->taxclassnum; + } elsif ($class ne ':' and ($hash->{actionflag} || '') eq 'D') { + # return "Can't find tax class for txmatrix deletion: ". + warn "WARNING: Can't find tax class $class for txmatrix deletion (ignored)\n"; + return ''; # don't delete the record, then + } delete($hash->{$_}) foreach @{$map{$item}}; } @@ -310,8 +313,8 @@ sub batch_import { } } - my $part_pkg_taxrate = qsearchs('part_pkg_taxrate', $hash); - unless ( $part_pkg_taxrate ) { + my @part_pkg_taxrate = qsearch('part_pkg_taxrate', $hash); + unless ( scalar(@part_pkg_taxrate) || $param->{'delete_only'} ) { if ( $hash->{taxproductnum} ) { my $taxproduct = qsearchs( 'part_pkg_taxproduct', @@ -320,12 +323,14 @@ sub batch_import { $hash->{taxproductnum} .= ' ( '. $taxproduct->taxproduct. ' )' if $taxproduct; } - return "Can't find part_pkg_taxrate to delete: ". + warn "WARNING: Can't find part_pkg_taxrate to delete: ". join(" ", map { "$_ => *". $hash->{$_}. '*' } keys(%$hash) ); } - my $error = $part_pkg_taxrate->delete; - return $error if $error; + foreach my $part_pkg_taxrate (@part_pkg_taxrate) { + my $error = $part_pkg_taxrate->delete; + return $error if $error; + } delete($hash->{$_}) foreach (keys %$hash); }