Openbravo Issue Tracking System - Openbravo ERP | ||||||||||||||||||||||||||
View Issue Details | ||||||||||||||||||||||||||
ID | Project | Category | View Status | Date Submitted | Last Update | |||||||||||||||||||||
0044996 | Openbravo ERP | 09. Financial management | public | 2020-09-04 22:31 | 2020-09-09 16:15 | |||||||||||||||||||||
Reporter | lbressan | |||||||||||||||||||||||||
Assigned To | inigo_lerga | |||||||||||||||||||||||||
Priority | high | Severity | major | Reproducibility | always | |||||||||||||||||||||
Status | closed | Resolution | fixed | |||||||||||||||||||||||
Platform | OS | 5 | OS Version | |||||||||||||||||||||||
Product Version | pi | |||||||||||||||||||||||||
Target Version | Fixed in Version | PR20Q4 | ||||||||||||||||||||||||
Merge Request Status | approved | |||||||||||||||||||||||||
Review Assigned To | dmiguelez | |||||||||||||||||||||||||
OBNetwork customer | OBPS | |||||||||||||||||||||||||
Web browser | ||||||||||||||||||||||||||
Modules | Core | |||||||||||||||||||||||||
Support ticket | 18048 | |||||||||||||||||||||||||
Regression level | ||||||||||||||||||||||||||
Regression date | 2019-08-22 | |||||||||||||||||||||||||
Regression introduced in release | 3.0PR19Q4 | |||||||||||||||||||||||||
Regression introduced by commit | https://gitlab.com/openbravo/product/openbravo/-/commit/fc2fdb6259fb3cf3532e4c71f2188dcb1eb404d0 [^] | |||||||||||||||||||||||||
Triggers an Emergency Pack | No | |||||||||||||||||||||||||
Summary | 0044996: Error in the Recalculate Amortization process | |||||||||||||||||||||||||
Description | From the assets window, when we select an asset record and click on the "Recalculate amortization" button, this process deletes the records associated an X amortization, including records of that amortization that correspond to other assets. | |||||||||||||||||||||||||
Steps To Reproduce | In the Assets window: 1. Create a record with the following data: Organization: F&B España, S.A Search Key: coche1 Name: coche1 Asset Category: Vehiculos Document No.: 10000006 Currency: EUR Depreciate: true Depreciation Type: Linear Calculate Type: Time Usable Life - Months: 120 Every Month Is 30Days: true Amortize: Monthly Depreciation Start Date : 01-03-2013 Asset Value: 23000 Residual Asset Value : 0.00 Depreciation Amt: 23000 Previously Depreciated Amt : 0.00 2. Then click on the button "Create Amortization" 3. Create another record idem to the previous one: Organization: F&B España, S.A Search Key: coche2 Name: coche2 Asset Category: Vehiculos Document No.: 10000007 Currency: EUR Depreciate: true Depreciation Type: Linear Calculate Type: Time Usable Life - Months: 120 Every Month Is 30Days: true Amortize: Monthly Depreciation Start Date : 01-03-2013 Asset Value: 23000 Residual Asset Value : 0.00 Depreciation Amt: 23000 Previously Depreciated Amt : 0.00 4. Repeat step 2. Navigate to the Amortization window: 1. Filter the records by the date field with value "30-07-2020" 2. Observe that there are two records in the lines of that amortization, one corresponds to the first asset and the other to the second asset. In the Assets window: 1. Select the record that corresponds to the second asset created and click on the "Recalculate Amortization" button. 2. Navigate to the Amortization window and refresh the previously filtered record. 3. There it can be seen that the lines corresponding to the other asset have disappeared. In conclusion, when an asset is recalculated, only the records that correspond to the depreciation of that asset should be deleted. We attach a video with the aforementioned example. | |||||||||||||||||||||||||
Proposed Solution | Only delete records that correspond to the asset that is being recalculated. Code where the error occurs: Class: AssetLinearDepreciationMethodProcess.java Line numer: from 143 // Remove unprocessed Amortization and its line when recalculating final List<AmortizationLine> amortizationLineListToRemove = new ArrayList<>(); for (AmortizationLine al : amortizationLineList) { final Amortization amortization = OBDal.getInstance() .get(Amortization.class, al.getAmortization().getId()); if (StringUtils.equals(amortization.getProcessed(), "N")) { amortizationLineListToRemove.add(al); amortization.getFinancialMgmtAmortizationLineList().clear(); OBDal.getInstance().remove(amortization); } } asset.getFinancialMgmtAmortizationLineList().removeAll(amortizationLineListToRemove); OBDal.getInstance().flush(); It's important to have on mind: After solving this bug, it will be necessary to have a script or method to correct the missing amounts of the records that have been eliminated from assets that were not associated with the asset in question, bearing in mind that the accounting periods have already been closed. | |||||||||||||||||||||||||
Additional Information | ||||||||||||||||||||||||||
Tags | No tags attached. | |||||||||||||||||||||||||
Relationships |
| |||||||||||||||||||||||||
Attached Files | ![]() https://issues.openbravo.com/file_download.php?file_id=14940&type=bug | |||||||||||||||||||||||||
Issue History | ||||||||||||||||||||||||||
Date Modified | Username | Field | Change | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | New Issue | ||||||||||||||||||||||||
2020-09-04 22:31 | lbressan | Assigned To | => Triage Finance | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | File Added: Openbravo - Amortization.mp4 | ||||||||||||||||||||||||
2020-09-04 22:31 | lbressan | OBNetwork customer | => OBPS | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | Modules | => Core | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | Support ticket | => 18048 | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | Resolution time | => 1597701600 | |||||||||||||||||||||||
2020-09-04 22:31 | lbressan | Triggers an Emergency Pack | => No | |||||||||||||||||||||||
2020-09-04 22:51 | lbressan | Note Added: 0122695 | ||||||||||||||||||||||||
2020-09-04 22:51 | lbressan | Description Updated | bug_revision_view_page.php?rev_id=21629#r21629 | |||||||||||||||||||||||
2020-09-04 22:51 | lbressan | Proposed Solution updated | ||||||||||||||||||||||||
2020-09-04 23:22 | lbressan | Regression introduced by commit | => https://gitlab.com/openbravo/product/openbravo/-/commit/fc2fdb6259fb3cf3532e4c71f2188dcb1eb404d0 [^] | |||||||||||||||||||||||
2020-09-07 09:20 | dmiguelez | Resolution time | 1597701600 => 1600984800 | |||||||||||||||||||||||
2020-09-07 16:08 | dmiguelez | Assigned To | Triage Finance => inigo_lerga | |||||||||||||||||||||||
2020-09-07 16:13 | dmiguelez | Note Added: 0122758 | ||||||||||||||||||||||||
2020-09-07 16:25 | lbressan | Regression date | => 2019-08-22 | |||||||||||||||||||||||
2020-09-07 16:25 | lbressan | Regression introduced in release | => 3.0PR19Q4 | |||||||||||||||||||||||
2020-09-07 16:32 | lbressan | Note Added: 0122761 | ||||||||||||||||||||||||
2020-09-07 16:59 | rafaroda | Relationship added | caused by 0041297 | |||||||||||||||||||||||
2020-09-08 08:17 | inigo_lerga | Status | new => scheduled | |||||||||||||||||||||||
2020-09-08 14:23 | hgbot | Merge Request Status | => open | |||||||||||||||||||||||
2020-09-08 14:23 | hgbot | Note Added: 0122792 | ||||||||||||||||||||||||
2020-09-08 14:35 | inigo_lerga | Note Added: 0122802 | ||||||||||||||||||||||||
2020-09-09 15:38 | hgbot | Merge Request Status | open => approved | |||||||||||||||||||||||
2020-09-09 15:39 | hgbot | Resolution | open => fixed | |||||||||||||||||||||||
2020-09-09 15:39 | hgbot | Status | scheduled => closed | |||||||||||||||||||||||
2020-09-09 15:39 | hgbot | Fixed in Version | => PR20Q4 | |||||||||||||||||||||||
2020-09-09 15:39 | hgbot | Note Added: 0122884 | ||||||||||||||||||||||||
2020-09-09 15:39 | hgbot | Note Added: 0122885 | ||||||||||||||||||||||||
2020-09-09 16:13 | dmiguelez | Status | closed => new | |||||||||||||||||||||||
2020-09-09 16:13 | dmiguelez | Resolution | fixed => open | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Fixed in Version | PR20Q4 => | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Status | new => scheduled | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Status | scheduled => resolved | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Fixed in Version | => PR20Q4 | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Fixed in SCM revision | => https://gitlab.com/openbravo/product/openbravo/-/commit/4275f8d696686a8df665f8e87bda837896adbfa5 [^] | |||||||||||||||||||||||
2020-09-09 16:14 | dmiguelez | Resolution | open => fixed | |||||||||||||||||||||||
2020-09-09 16:15 | dmiguelez | Review Assigned To | => dmiguelez | |||||||||||||||||||||||
2020-09-09 16:15 | dmiguelez | Note Added: 0122887 | ||||||||||||||||||||||||
2020-09-09 16:15 | dmiguelez | Status | resolved => closed |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|