fix applying a credit against an invoice which has had its tax config removed, RT...
authorIvan Kohler <ivan@freeside.biz>
Thu, 27 Feb 2014 03:16:18 +0000 (19:16 -0800)
committerIvan Kohler <ivan@freeside.biz>
Thu, 27 Feb 2014 03:16:18 +0000 (19:16 -0800)
FS/FS/cust_credit_bill_pkg.pm

index 657a889..7b723f9 100644 (file)
@@ -171,11 +171,16 @@ sub insert {
         'amount'           => sprintf('%.2f', 0-$amount),
       };
 
         'amount'           => sprintf('%.2f', 0-$amount),
       };
 
-      my $error = $cust_tax_exempt_pkg->insert;
-      if ( $error ) {
-        $dbh->rollback if $oldAutoCommit;
-        return "error inserting cust_tax_exempt_pkg: $error";
+      if ( $cust_tax_exempt_pkg->cust_main_county ) {
+
+        my $error = $cust_tax_exempt_pkg->insert;
+        if ( $error ) {
+          $dbh->rollback if $oldAutoCommit;
+          return "error inserting cust_tax_exempt_pkg: $error";
+        }
+
       }
       }
+
     } #foreach $exemption
   }
 
     } #foreach $exemption
   }