Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0037772 | Openbravo ERP | 07. Sales management | public | 2018-01-30 13:05 | 2018-02-27 13:11 |
|
Reporter | egoitz | |
Assigned To | dmiguelez | |
Priority | normal | Severity | major | Reproducibility | have not tried |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR18Q2 | |
Merge Request Status | |
Review Assigned To | vmromanos |
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 | 0037772: Perfomance problems deleting an invoice on an environment with thousands of invoices and invoice lines |
Description | It takes few minutes to delete a order with only 3 lines. |
Steps To Reproduce | -Create a order
-Add 3 lines
-Delete the order
*It takes 3 minutes. |
Proposed Solution | Addding the following index improves the deletion but it is not enought.
+ <index name="C_INVOICELINE_BOMPARENT" unique="false">
+ <index-column name="BOM_PARENT_ID"/>
+ <whereClause><![CDATA[BOM_PARENT_ID IS NOT NULL]]></whereClause>
+ </index>
|
Additional Information | |
Tags | No tags attached. |
Relationships | depends on | backport | 0037773 | 3.0PR18Q1 | closed | dmiguelez | Perfomance problems deleting an invoice on an environment with thousands of invoices and invoice lines | depends on | backport | 0037774 | 3.0PR17Q4.1 | closed | Triage Omni OMS | Perfomance problems deleting an invoice on an environment with thousands of invoices and invoice lines | related to | defect | 0038008 | | closed | dmiguelez | Perfomance problems deleting a shipment on an environment with thousands of hipments and shipments lines. |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2018-01-30 13:05 | egoitz | New Issue | |
2018-01-30 13:05 | egoitz | Assigned To | => Triage Finance |
2018-01-30 13:05 | egoitz | OBNetwork customer | => Yes |
2018-01-30 13:05 | egoitz | Modules | => Core |
2018-01-30 13:05 | egoitz | Resolution time | => 1518649200 |
2018-01-30 13:05 | egoitz | Triggers an Emergency Pack | => No |
2018-01-30 13:13 | dmiguelez | Status | new => scheduled |
2018-02-01 10:05 | egoitz | Note Added: 0102113 | |
2018-02-07 12:18 | hgbot | Checkin | |
2018-02-07 12:18 | hgbot | Note Added: 0102242 | |
2018-02-07 12:18 | hgbot | Status | scheduled => resolved |
2018-02-07 12:18 | hgbot | Resolution | open => fixed |
2018-02-07 12:18 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/ace20134bb9cbfe1e4b88416920f366d8c86c77b [^] |
2018-02-07 12:20 | dmiguelez | Note Added: 0102243 | |
2018-02-07 12:47 | dmiguelez | Note Edited: 0102243 | bug_revision_view_page.php?bugnote_id=0102243#r16645 |
2018-02-07 12:49 | vmromanos | Assigned To | Triage Finance => dmiguelez |
2018-02-07 13:52 | vmromanos | Review Assigned To | => vmromanos |
2018-02-07 13:52 | vmromanos | Note Added: 0102251 | |
2018-02-07 13:52 | vmromanos | Status | resolved => closed |
2018-02-07 13:52 | vmromanos | Fixed in Version | => 3.0PR18Q2 |
2018-02-22 18:19 | hudsonbot | Checkin | |
2018-02-22 18:19 | hudsonbot | Note Added: 0102728 | |
2018-02-27 13:11 | egoitz | Issue cloned | 0038008 |
2018-02-27 13:11 | egoitz | Relationship added | related to 0038008 |
Notes |
|
(0102113)
|
egoitz
|
2018-02-01 10:05
|
|
The following index are also needed:
CREATE INDEX m_costing_invoiceline
ON m_costing
USING btree
(c_invoiceline_id);
CREATE INDEX m_matchpo_invoiceline
ON m_matchpo
USING btree
(c_invoiceline_id);
CREATE INDEX m_inout_invoice
ON m_inout (c_invoice_id)
WHERE m_inout is not null; |
|
|
(0102242)
|
hgbot
|
2018-02-07 12:18
|
|
Repository: erp/devel/pi
Changeset: ace20134bb9cbfe1e4b88416920f366d8c86c77b
Author: David Miguelez <david.miguelez <at> openbravo.com>
Date: Tue Feb 06 09:58:29 2018 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/ace20134bb9cbfe1e4b88416920f366d8c86c77b [^]
Fixes Issue 37772. Adds several indexes that improve performance
in basic operations like deleting an Invoice or an Order
---
M src-db/database/model/tables/C_INVOICELINE.xml
M src-db/database/model/tables/C_ORDER.xml
M src-db/database/model/tables/M_COSTING.xml
M src-db/database/model/tables/M_INOUT.xml
M src-db/database/model/tables/M_MATCHPO.xml
---
|
|
|
(0102243)
|
dmiguelez
|
2018-02-07 12:20
(edited on: 2018-02-07 12:47) |
|
Tested with client's data.
Deleting and Order or an Invoice with 5 lines takes around 1 second through the application.
|
|
|
|
|
|
|
|