Extension: rep_tax_cash_basis
Author: Alastair Robertson (KwikPay, NZ)
Lines 166 and 193 in the file modules/rep_tax_cash_basis/includes/tax_cash_db.inc :
ttd.amount*ex_rate collectible,
should be:
-1*ttd.amount*ex_rate collectible,
Kindly verify and revert.
Patch:
--- modules/rep_tax_cash_basis/includes/tax_cash_db.inc Mon Oct 14 01:44:10 2013
+++ modules/rep_tax_cash_basis/includes/tax_cash_db.inc Wed May 06 10:49:31 2015
@@ -163,7 +163,7 @@
0 payable,
bt.amount*ex_rate gross_input,
ttd.net_amount*ex_rate net_input,
- ttd.amount*ex_rate collectible,
+ -1*ttd.amount*ex_rate collectible,
ttd.rate,
bt.type,
bt.person_type_id,
@@ -190,7 +190,7 @@
0 payable,
bt.amount*ex_rate gross_input,
ttd.net_amount*ex_rate net_input,
- ttd.amount*ex_rate collectible,
+ -1*ttd.amount*ex_rate collectible,
ttd.rate,
bt.type,
bt.person_type_id,