fix "credited" report column, #37088
authorMark Wells <mark@freeside.biz>
Mon, 2 Nov 2015 20:28:10 +0000 (12:28 -0800)
committerMark Wells <mark@freeside.biz>
Mon, 2 Nov 2015 20:31:55 +0000 (12:31 -0800)
httemplate/search/report_tax-xls.cgi

index 9b02457..07fcf7c 100755 (executable)
@@ -207,11 +207,11 @@ foreach my $row (@rows) {
   $x++;
   $ws->write_string($y, $x, " \N{U+2212} ", $f->{bigmath}); # MINUS SIGN
   $x++;
-  $ws->write($y, $x, $row->{credit} || 0, $f->{currency});
+  $ws->write($y, $x, $row->{tax_credited} || 0, $f->{currency});
   $x++;
   $ws->write_string($y, $x, " = ", $f->{bigmath});
   $x++;
-  $ws->write($y, $x, $row->{tax} - $row->{credit}, $f->{currency});
+  $ws->write($y, $x, $row->{tax} - $row->{tax_credited}, $f->{currency});
   $x++;
   $ws->write($y, $x, $row->{tax_paid} || 0, $f->{currency});