summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/fixes/ar_ap_summary_fix_1.2.14.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/fixes/ar_ap_summary_fix_1.2.14.sql b/sql/fixes/ar_ap_summary_fix_1.2.14.sql
index 5f8bbdc5..2e20e3e3 100644
--- a/sql/fixes/ar_ap_summary_fix_1.2.14.sql
+++ b/sql/fixes/ar_ap_summary_fix_1.2.14.sql
@@ -18,7 +18,7 @@ SET netamount =
where trans_id = ap.id
AND ((chart_id IN
(select id from chart where link = 'AP')
- AND amount < 0)
+ AND amount > 0)
OR (chart_id IN
(select id from chart
where link like '%tax%')
@@ -49,7 +49,7 @@ SET netamount =
where trans_id = ar.id
AND ((chart_id IN (select id from chart
where link = 'AR')
- AND amount > 0)
+ AND amount < 0)
OR (chart_id IN
(select id from chart where link like '%tax%')
)