Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 3.4.2
-
Fix Version/s: 4.1.0-b1
-
Component/s: None
-
Labels:None
Description
It's possible that a credit can exist for an amount less than the precision displayed for that currency in the interface. e.g. $10.009
Attempting to record a payment by using the credit to pay an invoice may then fail. In the admin interface, this error is encountered:
"One or more Amount to Pay values could not be applied to the specified invoice. Ensure that the Amount to Pay does not exceed the Amount Due on the invoice, that the invoice is open, and the sum of the Amount to Pay values do not exceed the Payment or Credit Amount."
e.g.
Attempt to pay an invoice totaling $10.01 with a credit of $10.009
$10.009 < $10.01, so the amount is not enough to pay the invoice. However, I think the credit amount may need to be rounded to cover the payment. $total may need to be rounded in Transactions::validateApplyAmounts
Issue Links
- relates to
-
CORE-1092 Round amounts based on currency format
-
- Closed
-
Okay so the the problem seems to stem for this line (767 on my current dev branch):
This rounds the apply amount to 2 decimal places, and as far as I can tell there is no good reason for it since that is a mismatch from the database and it is not based on the currency at all.