diff options
author | Mark Wells <mark@freeside.biz> | 2016-01-30 20:50:05 -0800 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2016-01-30 20:50:17 -0800 |
commit | 34c7435b9c15649b93f99c487b225e012c41957b (patch) | |
tree | f1f03215a4f6a463a108073533d9245b155b83c7 | |
parent | 981723fc428056c4b64bc9bb44f5e13d304c4b5c (diff) |
but without breaking other kinds of exemptions
-rw-r--r-- | FS/FS/TaxEngine/internal.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/TaxEngine/internal.pm b/FS/FS/TaxEngine/internal.pm index 91b547ce0..a9b32d133 100644 --- a/FS/FS/TaxEngine/internal.pm +++ b/FS/FS/TaxEngine/internal.pm @@ -243,7 +243,6 @@ sub taxline { exempt_monthly => 'Y', year => $year, month => $mon, - taxnum => $tax_object->taxnum, }); $taxable_charged -= $addl; @@ -262,6 +261,8 @@ sub taxline { # attach them to the line item foreach my $ex (@new_exemptions) { + $ex->set('taxnum', $taxnum); + if ( $cust_bill_pkg->billpkgnum ) { # the exempted item is already inserted (it should be, these days) so # insert the exemption record now: |