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:10:05 -1000
commit1f0d6d4ce0c0dd6fffb87d5ead4a6843e671c792 (patch)
tree6dc8272e60578c1441c499106ddc902a3d35390b
parentf7ae793c0a72474666cac1aa4b6f4ef6291712d5 (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}