summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2015-09-20 10:09:53 -1000
committerMark Wells <mark@freeside.biz>2015-09-20 10:09:58 -1000
commitce5f4c2396fd43608b60171464831cf2b53cc367 (patch)
tree7a30619384ec559a70127db3e69d5ee540857438
parent376b2a33216bcc6c4ba673e6d37adb6e53fa73ac (diff)
fix total sales column, #37088
-rw-r--r--FS/FS/Report/Tax.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/FS/FS/Report/Tax.pm b/FS/FS/Report/Tax.pm
index f114c1c6b..2480a45b9 100644
--- a/FS/FS/Report/Tax.pm
+++ b/FS/FS/Report/Tax.pm
@@ -557,6 +557,7 @@ sub table {
# and calculate row totals
$this_row{sales} = sprintf('%.2f',
$this_row{taxable} +
+ $this_row{sales_credited} +
$this_row{exempt_cust} +
$this_row{exempt_pkg} +
$this_row{exempt_monthly}