Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0035702 | Openbravo ERP | 03. Procurement management | public | 2017-04-05 13:16 | 2018-12-11 20:22 |
|
Reporter | vmromanos | |
Assigned To | nonofrancisco | |
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.0PR19Q1 | |
Merge Request Status | |
Review Assigned To | Sandrahuguet |
OBNetwork customer | No |
Web browser | |
Modules | Core |
Support ticket | |
Regression level | |
Regression date | |
Regression introduced in release | |
Regression introduced by commit | |
Triggers an Emergency Pack | No |
|
Summary | 0035702: Performance improvements in Purchase Order Report PDF format |
Description | 1. Last "Group By" is not necessary because it's grouping exactly by the same columns as in the subquery
2. Unnecessary coalesces in mandatory columns (orderline.currency, order.dateordered)
3. Remove duplicated columns dateordered and transdate
4. Run line net amount and price actual currency conversion in outer query as it's grouping by date too
5. Run joins to get names in most outer join:
* c_bpartner: run group by using c_bpartner_id and the join at the end
* m_product: run group by m_product_id
* c_uom: group by c_uom_id and c_aum
6. The alternativeUom is calculated with a subselect, that could be replaced by a left join (related to previous point to get the name). |
Steps To Reproduce | This issue might be difficult to reproduce, and it has been detected by a code review. |
Proposed Solution | |
Additional Information | |
Tags | Performance |
Relationships | related to | feature request | 0033035 | | closed | airaceburu | New filters in Purchase Order Report |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2017-04-05 13:16 | vmromanos | New Issue | |
2017-04-05 13:16 | vmromanos | Assigned To | => Triage Finance |
2017-04-05 13:16 | vmromanos | OBNetwork customer | => No |
2017-04-05 13:16 | vmromanos | Modules | => Core |
2017-04-05 13:16 | vmromanos | Triggers an Emergency Pack | => No |
2017-04-05 13:16 | vmromanos | Relationship added | related to 0033035 |
2017-04-05 13:16 | vmromanos | Target Version | => 3.0PR17Q3 |
2017-04-06 11:50 | aferraz | Assigned To | Triage Finance => markmm82 |
2017-06-12 16:53 | aferraz | Assigned To | markmm82 => collazoandy4 |
2017-06-12 22:41 | collazoandy4 | Status | new => scheduled |
2017-06-13 10:48 | aferraz | Target Version | 3.0PR17Q3 => |
2017-10-18 15:55 | nonofrancisco | Assigned To | collazoandy4 => nonofrancisco |
2017-10-19 16:01 | nonofrancisco | Note Added: 0099966 | |
2018-11-15 17:20 | Sandrahuguet | Tag Attached: Performance | |
2018-11-19 17:29 | hgbot | Checkin | |
2018-11-19 17:29 | hgbot | Note Added: 0107990 | |
2018-11-19 17:29 | hgbot | Status | scheduled => resolved |
2018-11-19 17:29 | hgbot | Resolution | open => fixed |
2018-11-19 17:29 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/381ee761e7393bbfe48f1297fbf76a1a6470f9d2 [^] |
2018-11-19 17:29 | hgbot | Checkin | |
2018-11-19 17:29 | hgbot | Note Added: 0107991 | |
2018-11-19 17:30 | Sandrahuguet | Review Assigned To | => Sandrahuguet |
2018-11-19 17:30 | Sandrahuguet | Note Added: 0107992 | |
2018-11-19 17:30 | Sandrahuguet | Status | resolved => closed |
2018-11-19 17:30 | Sandrahuguet | Fixed in Version | => 3.0PR19Q1 |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108475 | |
2018-12-11 20:22 | hudsonbot | Checkin | |
2018-12-11 20:22 | hudsonbot | Note Added: 0108476 | |
Notes |
|
|
Test Plan
Runing ReportPurchaseOrder.jrxml with currency EUR and date 01-01-2013
Execution time with unmodified report:
DEBUG org.openbravo.client.application.report.BaseReportActionHandler - Report: 95A65133A5314CAABEE405B1EB2A639D. Finish export JR process. Elapsed time: 8643
Execution time with modified report:
DEBUG org.openbravo.client.application.report.BaseReportActionHandler - Report: 95A65133A5314CAABEE405B1EB2A639D. Finish export JR process. Elapsed time: 5127 |
|
|
(0107990)
|
hgbot
|
2018-11-19 17:29
|
|
Repository: erp/devel/pi
Changeset: 381ee761e7393bbfe48f1297fbf76a1a6470f9d2
Author: Nono Carballo <nonofce <at> gmail.com>
Date: Fri Nov 16 12:39:03 2018 +0100
URL: http://code.openbravo.com/erp/devel/pi/rev/381ee761e7393bbfe48f1297fbf76a1a6470f9d2 [^]
Fixes issue 35702: Performance improvements in Purchase Order Report PDF format
1. Last "Group By" was removed
2. Unnecessary coalesces in mandatory columns were removed
3. Remove duplicated columns dateordered and transdate
4. Line net amount and price actual currency conversion are run in outer query
5. Names of business partner, product and uom retrieved via joins
6. The alternativeUom is calculated with a left join
---
M src/org/openbravo/erpCommon/ad_reports/ReportPurchaseOrder.jrxml
---
|
|
|
(0107991)
|
hgbot
|
2018-11-19 17:29
|
|
|
|
|
|
|
|
|
|
|
|