Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0012539 | Openbravo ERP | 09. Financial management | public | 2010-03-03 13:13 | 2010-04-10 00:00 |
|
Reporter | networkb | |
Assigned To | eduardo_Argal | |
Priority | immediate | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | 2.50MP10 | |
Target Version | 2.50MP14 | Fixed in Version | | |
Merge Request Status | |
Review Assigned To | |
OBNetwork customer | OBPS |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0012539: DocPayment.java has no references to currency convert |
Description | DocPayment.java has no references to currency convert
Talked to EAR |
Steps To Reproduce | 1.-Create a manual settlement and payment (not direct posting) with foreign currency (distinct that accounting schema currency)
2.-create a bank statement and select the previously created payment as a line.
3.-process bank statement
4.-browse the settlement cancel of the payment and post it
Mind that accounting is wrong |
Proposed Solution | |
Additional Information | |
Tags | Regression |
Relationships | related to | defect | 0011652 | 2.40MP12 | closed | eduardo_Argal | Error when posting a manual payment with conversion rate |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2010-03-03 13:13 | networkb | New Issue | |
2010-03-03 13:13 | networkb | Assigned To | => dalsasua |
2010-03-03 13:13 | networkb | OBNetwork customer | => Yes |
2010-03-03 17:02 | dalsasua | Note Added: 0025017 | |
2010-03-03 17:02 | dalsasua | Status | new => feedback |
2010-03-08 16:05 | jpabloae | Target Version | 2.50MP13 => 2.50MP14 |
2010-03-09 13:32 | azabaleta | Note Added: 0025177 | |
2010-03-09 13:34 | azabaleta | Note Added: 0025178 | |
2010-03-09 18:07 | dalsasua | Assigned To | dalsasua => eduardo_Argal |
2010-03-09 18:22 | eduardo_Argal | Note Added: 0025188 | |
2010-03-09 18:22 | eduardo_Argal | Description Updated | bug_revision_view_page.php?rev_id=145#r145 |
2010-03-09 18:22 | eduardo_Argal | Steps to Reproduce Updated | bug_revision_view_page.php?rev_id=147#r147 |
2010-03-09 18:23 | dalsasua | Assigned To | eduardo_Argal => dalsasua |
2010-03-09 18:23 | dalsasua | Status | feedback => new |
2010-03-15 13:40 | vmromanos | Status | new => scheduled |
2010-03-15 13:40 | vmromanos | Assigned To | dalsasua => vmromanos |
2010-03-15 13:40 | vmromanos | fix_in_branch | => pi |
2010-03-15 15:54 | vmromanos | Relationship added | related to 0011652 |
2010-03-15 23:50 | dalsasua | Assigned To | vmromanos => eduardo_Argal |
2010-03-16 09:38 | vmromanos | Note Added: 0025525 | |
2010-03-16 11:32 | hgbot | Checkin | |
2010-03-16 11:32 | hgbot | Note Added: 0025533 | |
2010-03-16 11:32 | hgbot | Status | scheduled => resolved |
2010-03-16 11:32 | hgbot | Resolution | open => fixed |
2010-03-16 11:32 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/26e1f6aab1c0423a8734a5e1d8832e8778c4f102 [^] |
2010-03-17 09:01 | hudsonbot | Checkin | |
2010-03-17 09:01 | hudsonbot | Note Added: 0025557 | |
2010-03-17 15:40 | psarobe | Tag Attached: Regression | |
2010-03-18 11:29 | pjuvara | version | pi => 2.50MP10 |
2010-03-18 11:29 | pjuvara | fix_in_branch | pi => |
2010-04-09 13:08 | arunkumar | Note Added: 0026029 | |
2010-04-09 13:08 | arunkumar | Status | resolved => closed |
2010-04-10 00:00 | anonymous | sf_bug_id | 0 => 2984774 |
Notes |
|
|
Hi, please realize that EAR will not be involved in the fixing of this issue. Even we need a proper description and steps to reproduce so QA team can afterwards check the fix.
Thanks. |
|
|
|
David,
in this commit
https://code.openbravo.com/erp/devel/pi/rev/61632464a77e [^]
It seems that somehow some code about currency conversion is gone when cancelling payments that come from manual settlements.
I dont know whether this is a bug or not. I was told to report this issue.
Asier |
|
|
|
1.31 - String amountdebit = getConvertedAmt(data[j].amountdebit, line.C_Currency_ID_From,
1.32 - C_Currency_ID, DateAcct, "", AD_Client_ID, AD_Org_ID, conn);
1.33 - String amountcredit = getConvertedAmt(data[j].amountcredit, line.C_Currency_ID_From,
1.34 - C_Currency_ID, DateAcct, "", AD_Client_ID, AD_Org_ID, conn);
1.35 + String amountdebit = data[j].amountdebit;
1.36 + String amountcredit = data[j].amountcredit; |
|
|
|
|
|
|
Eduardo, the issue 0011652 seems to be the responsible of this bug.
Please find bellow the concrete steps to reproduce this bug:
1- Create a Currency conversion from USD to EUR for day A (example multiply by 2)
2- Create a Currency conversion from USD to EUR for day B (example multiply by 3)
3- Create a Manual Settlement for day A in USD. Create a Payment in USD and process the Manual Settlement
4- Create a Bank Statement in EUR for day B and associate the previous payment. Post the Banks Statement.
5- Go to the Bank Statement line, click on linked items and navigate to the cancelled settlement.
6- Move to its header and post it. See the accounting enty is wrong
I have been trying to fix it and it's not enough to change the lines Asier proposed.
If you only do that, the line for the account "changes in currency differences" does not appear. The problem seems to be in the new code:
+ // For manual payment with direct posting = 'N' (no posting occurred at payment creation so no
+ // conversion, for currency gain-loss, is needed)
+ String convertedAmt = "";
+ if (line.isManual.equals("Y") && line.IsDirectPosting.equals("N")
+ && line.C_Settlement_Cancel_ID.equals(Record_ID))
+ convertedAmt = line.Amount;
+ else
After removing it, the proper account for differences in currency change appears, but the accounting entry is wrong because it doesn't take into account the proper day for calculating the currency conversion.
Please, could you please fix this issue? I don't want to break the fix of the 0011652 while fixing this one.
Thanks. |
|
|
(0025533)
|
hgbot
|
2010-03-16 11:32
|
|
|
|
|
|
|
|
|