X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep709.php;h=57183a884a6ff64fe97a0d78d13d1f9da2bcde5c;hb=8f7ac519b7aaf8ec219862597e878d3a28316ac6;hp=861527e2f97dc1e09503c2c6227985fd419151ca;hpb=69618fda8c54d2eacfee99a008060d20934a8212;p=fa-stable.git diff --git a/reporting/rep709.php b/reporting/rep709.php index 861527e2..57183a88 100644 --- a/reporting/rep709.php +++ b/reporting/rep709.php @@ -116,7 +116,7 @@ function print_tax_report() while ($trans=db_fetch($transactions)) { - if (in_array($trans['trans_type'], array(11,20,1))) { + if (in_array($trans['trans_type'], array(11,20))) { $trans['net_amount'] *= -1; $trans['amount'] *= -1; } @@ -141,7 +141,7 @@ function print_tax_report() $rep->Header(); } } - if (in_array($trans['trans_type'], array(0,2,10,11))) { + if (in_array($trans['trans_type'], array(2,10,11))) { $taxes[$trans['tax_type_id']]['taxout'] += $trans['amount']; $taxes[$trans['tax_type_id']]['out'] += $trans['net_amount']; } else {