diff options
author | Ivan Kohler <ivan@freeside.biz> | 2012-10-11 21:14:41 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2012-10-11 21:14:41 -0700 |
commit | 47ab335f71ebed3cc69f8a6604979798f917b91b (patch) | |
tree | 4b985f4618dcc0d73e4bfb1ae100a5c8f96d8bb2 | |
parent | cb0c47fff7f412d2a8f9ae611f84584fcf8518de (diff) |
better debugging for errors removing credits requiring charging of previously-exempt texas tax, RT#19870
-rw-r--r-- | FS/FS/cust_credit_bill_pkg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_credit_bill_pkg.pm b/FS/FS/cust_credit_bill_pkg.pm index 418900785..7427d09ab 100644 --- a/FS/FS/cust_credit_bill_pkg.pm +++ b/FS/FS/cust_credit_bill_pkg.pm @@ -277,7 +277,7 @@ sub delete { $sum = sprintf("%.2f", $sum); unless ($sum eq '0.00' || $sum eq '-0.00') { $dbh->rollback if $oldAutoCommit; - return "Can't unapply credit without charging tax"; + return "Can't unapply credit without charging tax of $sum"; } } |