diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2012-10-11 21:14:43 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2012-10-11 21:14:43 -0700 |
| commit | 7e7652ace045a7f5f0ab44855af90e968651a7e2 (patch) | |
| tree | f586922ed6a35853ca0549ac28e78661b21b6bb7 | |
| parent | 3036893e38a8ab39d58251ae954ea496df24db43 (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 64f1f297e..e71829690 100644 --- a/FS/FS/cust_credit_bill_pkg.pm +++ b/FS/FS/cust_credit_bill_pkg.pm @@ -243,7 +243,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"; } } |
