Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0045823 | Openbravo ERP | 02. Master data management | public | 2021-02-01 12:20 | 2021-02-23 17:17 |
|
Reporter | sebastien_liron | |
Assigned To | markmm82 | |
Priority | high | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | PR21Q2 | |
Merge Request Status | approved |
Review Assigned To | |
OBNetwork customer | Gold |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0045823: A hard limit exist for manually creates products variants |
Description | A hard limit exist for manually creates products variants
if (variantNumber > 1000) {
throw new OBException("HighRecords");
}
Here : org.openbravo.materialmgmt.ManageVariantsDS
From product Team :
That 1000 limit was put there to prevent performance problems. If you need to increase that limit, one way to do it would be to replace the hardcoded limit with a value read from a preference (like TreeDatasourceFetchLimit does) so that clients can increase that value ONLY after checking that the performance is good enough in the worst case.
|
Steps To Reproduce | - in the ERP
- create a variant product
- add several carac to it with a lor of values
- use the generate variant button |
Proposed Solution | one way to do it would be to replace the hardcoded limit with a value read from a preference (like TreeDatasourceFetchLimit does) |
Additional Information | |
Tags | No tags attached. |
Relationships | related to | defect | 0048145 | | closed | dromero | Defect: In the window: "Manage variant" The variants take time to charge, and when you click on "the select all" check-box, the |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2021-02-01 12:20 | sebastien_liron | New Issue | |
2021-02-01 12:20 | sebastien_liron | Assigned To | => Triage Finance |
2021-02-01 12:20 | sebastien_liron | OBNetwork customer | => Gold |
2021-02-01 12:20 | sebastien_liron | Modules | => Core |
2021-02-01 12:20 | sebastien_liron | Resolution time | => 1613775600 |
2021-02-01 12:20 | sebastien_liron | Triggers an Emergency Pack | => No |
2021-02-19 11:41 | vmromanos | Category | 06. Material requirement planning (MRP) => 02. Master data management |
2021-02-19 11:41 | vmromanos | Type | design defect => defect |
2021-02-19 11:41 | vmromanos | Target Version | PR20Q3.4 => |
2021-02-22 13:31 | markmm82 | Assigned To | Triage Finance => markmm82 |
2021-02-22 13:31 | markmm82 | Status | new => scheduled |
2021-02-22 18:18 | markmm82 | Note Added: 0126277 | |
2021-02-22 20:56 | hgbot | Merge Request Status | => open |
2021-02-22 20:56 | hgbot | Note Added: 0126280 | |
2021-02-23 13:51 | markmm82 | Note Edited: 0126277 | bug_revision_view_page.php?bugnote_id=0126277#r22142 |
2021-02-23 17:17 | hgbot | Merge Request Status | open => approved |
2021-02-23 17:17 | hgbot | Resolution | open => fixed |
2021-02-23 17:17 | hgbot | Status | scheduled => closed |
2021-02-23 17:17 | hgbot | Note Added: 0126307 | |
2021-02-23 17:17 | hgbot | Fixed in Version | => PR21Q2 |
2021-02-23 17:17 | hgbot | Note Added: 0126308 | |
2023-03-22 17:37 | aferraz | Relationship added | related to 0048145 |
Notes |
|
(0126277)
|
markmm82
|
2021-02-22 18:18
(edited on: 2021-02-23 13:51) |
|
Test Plan:
Log in the ERP as F&B
- Go to Product window and create a variant product
- Go to Characteristic tab and add several characteristics to it with some values
- Execute "Manage Variants" process by clicking on the button.
- Notice all possible variants of selected characteristics are shown.
- Done and check process ends successfully.
- Create a new preference visible at F&B client
Property List = false
Attribute = ManageVariantsLimit
Value = 3
- Go to created product and execute the "Manage Variants" process again.
- Notice an error message is shown:
"The number of records (<number>) is too high. Please, either try to review and reduce the number of product characteristics or alternatively set the ManageVariantsLimit preference to a higher value than 3"
- Change the new preference value to 1000
- Execute "Manage Variants" process by clicking on the button.
- Notice there isn't any error message and all possible variants of selected characteristics are shown.
- Done and check process ends successfully.
|
|
|
(0126280)
|
hgbot
|
2021-02-22 20:56
|
|
|
|
(0126307)
|
hgbot
|
2021-02-23 17:17
|
|
|
|
(0126308)
|
hgbot
|
2021-02-23 17:17
|
|
Directly closing issue as related merge request is already approved.
Repository: https://gitlab.com/openbravo/product/openbravo [^]
Changeset: 58495fbf6ca54792acda306179b30561c24e307d
Author: Mark Orlando Molina <markmm82@gmail.com>
Date: 2021-02-23T16:17:49+00:00
URL: https://gitlab.com/openbravo/product/openbravo/-/commit/58495fbf6ca54792acda306179b30561c24e307d [^]
Fixes ISSUE-45823: Created new "ManageVariantsLimit" preference limit
Currently was hard-coded a fixed limit of 1000 possible records that can be created when processing products variants.
To make more flexible this limit, a new "ManageVariantsLimit" preference is created as an attribute preference to handle this threshold in a more configurable way.
---
M src-db/database/sourcedata/AD_MESSAGE.xml
M src-db/database/sourcedata/AD_PREFERENCE.xml
M src/org/openbravo/materialmgmt/ManageVariantsDS.java
---
|
|