You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Hans Bakker (JIRA)" <ji...@apache.org> on 2006/07/25 10:11:14 UTC

[jira] Resolved: (OFBIZ-109) InvoiceServices.updatePaymentApplicationDefBd

     [ http://issues.apache.org/jira/browse/OFBIZ-109?page=all ]

Hans Bakker resolved OFBIZ-109.
-------------------------------

    Resolution: Fixed

implemented with : Committed revision 425325.

Chris, thank you for reporting this.

> InvoiceServices.updatePaymentApplicationDefBd
> ---------------------------------------------
>
>                 Key: OFBIZ-109
>                 URL: http://issues.apache.org/jira/browse/OFBIZ-109
>             Project: OFBiz (The Open for Business Project)
>          Issue Type: Bug
>          Components: accounting
>            Reporter: Chris Howe
>
> variable invoiceItemApplyAvailable is the difference between a big decimal without scale and a user inputed big decimal, which generally has a scale.  Therfore 8.1899999999999999787 - 8.19 is < 0 and the payment application will not be entered
> around line 1861 (my copy is mocked up for a temporary thing, otherwise, I'd submit a patch)
> reads
>                     invoiceItemApplyAvailable = invoiceItem.getBigDecimal("amount").multiply(quantity).subtract(InvoiceWorker.getInvoiceItemAppliedBd(invoiceItem));
> should read
>                     invoiceItemApplyAvailable = invoiceItem.getBigDecimal("amount").multiply(quantity).setScale(decimals,rounding).subtract(InvoiceWorker.getInvoiceItemAppliedBd(invoiceItem));

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira