Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0002407 | Openbravo ERP | 01. General setup | public | 2007-12-21 13:50 | 2008-06-12 09:43 |
|
Reporter | cromero | |
Assigned To | alostale | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 2.40alpha-r2 | |
Merge Request Status | |
Review Assigned To | |
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 | 0002407: Bad format in BPLocation when Address2 is null in PostgreSQL |
Description | If I enter all data in the Business Partner Location window, the format is right 'Address1 - Address2 - City - ...', but, for i.e, if Address2 is missing (or any other fields), the formatted string is ''.
The problem is in LocationAddress_Data.xsql:
(TO_CHAR(table4.Address1) || ' - ' || TO_CHAR(table4.Address2) || ' - ' || TO_CHAR(table4.Postal) ...
|
Steps To Reproduce | |
Proposed Solution | |
Additional Information | |
Tags | No tags attached. |
Relationships | depends on | backport | 0003596 | | closed | cromero | Bad format in BPLocation when Address2 is null P | depends on | backport | 0003694 | | closed | alostale | Bad format in BPLocation when Address2 is null i |
|
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
Notes |
|
(0005996)
|
user71
|
2005-06-01 00:00
(edited on: 2008-06-12 09:43) |
|
|
|
(0002850)
|
cromero
|
2007-12-21 13:58
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1500614
Originator: YES
putting a COALESCE the problem is solved:
(TO_CHAR(COALESCE(table4.Address1, '')) || ' - ' || TO_CHAR(COALESCE(table4.Address2, '')) ...
so it's needed to edit the function AD_COLUMN_IDENTIFIER_REF_SQL and replace the line:
v_SQL:='TO_CHAR('||p_TableRef||'.'|| p_ColumnName||')';
by
v_SQL:='TO_CHAR(COALESCE('||p_TableRef||'.'|| p_ColumnName||',''''))';
Carlos Romero
Openbravo Team |
|
|
(0002851)
|
cromero
|
2008-01-15 17:11
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1500614
Originator: YES
Fixed since revision 1921.
Carlos Romero
Openbravo Team |
|
|
(0002852)
|
cromero
|
2008-04-29 01:14
(edited on: 2008-06-12 09:23) |
|
Logged In: YES
user_id=1500614
Originator: YES
This fix is not complete.
Also a problem occurs when you enter to the BPlocation page in edit mode because WAD doesn't insert COALESCE in the selectEdit method in the generated LocationAddressData.
If you come from the location selector now it works fine because of the changes. |
|