From 8001c32ae1623286aaf3081d30685c75cc8a9c77 Mon Sep 17 00:00:00 2001 From: einhverfr Date: Mon, 12 May 2008 18:43:21 +0000 Subject: Adding fix for amount blank on AR/AP transaction report git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@2134 4979c152-3d1c-0410-bac9-87ea11338e46 --- sql/fixes/amount_blank_ap_transactions.sql | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sql/fixes/amount_blank_ap_transactions.sql diff --git a/sql/fixes/amount_blank_ap_transactions.sql b/sql/fixes/amount_blank_ap_transactions.sql new file mode 100644 index 00000000..924e0116 --- /dev/null +++ b/sql/fixes/amount_blank_ap_transactions.sql @@ -0,0 +1,29 @@ +BEGIN; + +UPDATE ap +SET netamount = + (select sum(amount) from acc_trans + where trans_id = ap.id + AND ((chart_id IN (select id from chart where link = 'AP') + AND amount > 0) + OR (chart_id IN + (select id from chart where link like '%tax%') + ) + ) + ) +WHERE netamount IS NULL; + +UPDATE ar +SET netamount = -1 * + (select sum(amount) from acc_trans + where trans_id = ap.id + AND ((chart_id IN (select id from chart where link = 'AP') + AND amount < 0) + OR (chart_id IN + (select id from chart where link like '%tax%') + ) + ) + ) +WHERE netamount IS NULL; + +commit; -- cgit v1.2.3