Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0038489 | Openbravo ERP | A. Platform | public | 2018-05-03 18:03 | 2018-06-01 09:33 |
|
Reporter | airaceburu | |
Assigned To | caristu | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | pi | |
Target Version | pi | Fixed in Version | 3.0PR18Q3 | |
Merge Request Status | |
Review Assigned To | alostale |
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 | 0038489: Wrong displayed value of a table reference inside a pick and execute when using hql query |
Description | The displayed value of a foreign key shown in a pick and execute is showing the table identifier instead of the one selected.
This happens when the pick and execute is populated from a hql query and the reference of the column is a table. |
Steps To Reproduce | This is an example to get the above situation quickly with retail sampledata:
0) As System Administrator, go to [Reference window]. In "C_Region" Table reference, change the "Displayed Column" to Description instead of showing the name. Restart the application.
1) Go to Organization window, select Central Mountains Store and click on the button "Choose CC Warehouse".
2) Note that the value displayed in the P&E window for the region field is the name of the region instead of its description. |
Proposed Solution | Patch attached |
Additional Information | |
Tags | No tags attached. |
Relationships | related to | defect | 0016465 | 3.0RC7 | closed | mtaal | Combos on new ui doesn't show the record identifiers | related to | defect | 0027912 | 3.0PR14Q4 | closed | AugustoMauch | DateTime fields not properly formated to local time zone in grids of parameter windows |
|
Attached Files | proposedSolution.diff (984) 2018-05-03 18:03 https://issues.openbravo.com/file_download.php?file_id=11776&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2018-05-03 18:03 | airaceburu | New Issue | |
2018-05-03 18:03 | airaceburu | Assigned To | => platform |
2018-05-03 18:03 | airaceburu | File Added: proposedSolution.diff | |
2018-05-03 18:03 | airaceburu | OBNetwork customer | => Yes |
2018-05-03 18:03 | airaceburu | Modules | => Core |
2018-05-03 18:03 | airaceburu | Resolution time | => 1526508000 |
2018-05-03 18:03 | airaceburu | Triggers an Emergency Pack | => No |
2018-05-29 10:23 | caristu | Relationship added | related to 0016465 |
2018-05-29 10:29 | caristu | Relationship added | related to 0027912 |
2018-05-29 12:34 | caristu | Steps to Reproduce Updated | bug_revision_view_page.php?rev_id=17214#r17214 |
2018-05-29 12:43 | caristu | Assigned To | platform => caristu |
2018-05-29 12:55 | caristu | Note Added: 0104766 | |
2018-05-29 12:55 | caristu | Note Edited: 0104766 | bug_revision_view_page.php?bugnote_id=0104766#r17216 |
2018-05-29 13:05 | hgbot | Checkin | |
2018-05-29 13:05 | hgbot | Note Added: 0104768 | |
2018-05-29 13:06 | caristu | Status | new => scheduled |
2018-05-29 13:06 | caristu | Status | scheduled => resolved |
2018-05-29 13:06 | caristu | Fixed in SCM revision | => 71b2155a083e |
2018-05-29 13:06 | caristu | Resolution | open => fixed |
2018-05-29 13:07 | caristu | Review Assigned To | => alostale |
2018-05-29 13:07 | caristu | Fixed in SCM revision | 71b2155a083e => https://code.openbravo.com/erp/devel/pi/rev/71b2155a083e [^] |
2018-05-30 00:14 | hudsonbot | Checkin | |
2018-05-30 00:14 | hudsonbot | Note Added: 0104791 | |
2018-06-01 09:33 | alostale | Note Added: 0104857 | |
2018-06-01 09:33 | alostale | Status | resolved => closed |
2018-06-01 09:33 | alostale | Fixed in Version | => 3.0PR18Q3 |
Notes |
|
|
Repository: erp/devel/pi
Changeset: 71b2155a083e
Author: Carlos Aristu <carlos.aristu <at> openbravo.com>
Date: Tue, 29 May 2018 12:36:13 +0200
URL: https://code.openbravo.com/erp/devel/pi/rev/71b2155a083e [^]
fixes bug 38489: Display field of table reference can't be retrieved by some DS
Some datasources (like those extending ReadOnlyDataSourceService) use the DataToJsonConverter.convertToJsonObjects() method to return its result. When converting BaseOBObjects this method was not using the related Property to place its corresponding value into the resulting JSON.
Now we make use of the Property, this allows to retrieve the "Display Field" if the Property is a table reference, when invoking the DataToJsonConverter.addBaseOBObject() method.
---
M modules/org.openbravo.service.json/src/org/openbravo/service/json/DataToJsonConverter.java
---
|
|
|
(0104768)
|
hgbot
|
2018-05-29 13:05
|
|
Repository: erp/devel/pi
Changeset: d9439b0b660be69fe52a0a352e8803c2c3214016
Author: Carlos Aristu <carlos.aristu <at> openbravo.com>
Date: Tue May 29 12:59:42 2018 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/d9439b0b660be69fe52a0a352e8803c2c3214016 [^]
related to bug 38489: Minor code improvements in convertToJsonObjects method
- Use diamond operator
- Iterate over the entrySet instead of the keySet
- Removed useless comment
---
M modules/org.openbravo.service.json/src/org/openbravo/service/json/DataToJsonConverter.java
---
|
|
|
|
|
|
|
|