Openbravo Issue Tracking System - Openbravo ERP |
| View Issue Details |
|
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0004849 | Openbravo ERP | 00. Application dictionary | public | 2008-09-08 11:09 | 2008-11-25 23:11 |
|
| Reporter | alostale | |
| Assigned To | alostale | |
| Priority | urgent | Severity | critical | Reproducibility | always |
| Status | closed | Resolution | fixed | |
| Platform | | OS | 5 | OS Version | |
| Product Version | pi | |
| Target Version | pi | Fixed in Version | | |
| 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 | 0004849: New list references do not work |
| Description | When a new list reference is created and assigned to a column no values are displayed for its field. This happens for new references with non-numeric ID. |
| Steps To Reproduce | * Create a new list reference
* Add values
* Associate this reference to a column
* Create a field in a tab for that column
* Compile that window
* Enter in the window -> No values are shown for the field |
| Proposed Solution | |
| Additional Information | |
| Tags | UUID project |
| Relationships | |
| Attached Files | |
|
| Issue History |
| Date Modified | Username | Field | Change |
| 2008-09-08 11:09 | alostale | New Issue | |
| 2008-09-08 11:09 | alostale | Assigned To | => alostale |
| 2008-09-08 11:09 | alostale | sf_bug_id | 0 => 2099812 |
| 2008-09-08 11:09 | alostale | OBNetwork customer | => No |
| 2008-09-08 11:09 | alostale | Regression testing | => No |
| 2008-09-08 11:10 | alostale | Tag Attached: UUID project | |
| 2008-09-08 11:20 | svnbot | Checkin | |
| 2008-09-08 11:20 | svnbot | Note Added: 0008914 | |
| 2008-09-08 11:20 | svnbot | Status | new => resolved |
| 2008-09-08 11:20 | svnbot | Resolution | open => fixed |
| 2008-09-08 11:20 | svnbot | svn_revision | => 6983 |
| 2008-09-11 10:50 | rafaroda | Note Added: 0008986 | |
| 2008-09-11 16:23 | svnbot | Checkin | |
| 2008-09-11 16:23 | svnbot | Note Added: 0009003 | |
| 2008-09-11 16:23 | svnbot | svn_revision | 6983 => 7208 |
| 2008-11-25 23:11 | psarobe | Status | resolved => closed |
|
Notes |
|
|
(0008914)
|
|
svnbot
|
|
2008-09-08 11:20
|
|
|
|
|
|
Must replace in ComboTableData.java:
try {
Integer.valueOf(_reference).intValue();
} catch (Exception ignore) {
_reference = ComboTableQueryData....;
}
by
if (!IsUUID.isUUIDString(_reference)) {
_reference = ComboTableQueryData....;
}
Where isUUIDString determines if a string of characters is an Openbravo UUID. |
|
|
|
(0009003)
|
|
svnbot
|
|
2008-09-11 16:23
|
|
Repository: openbravo
Revision: 7208
Author: rafaroda
Date: 2008-09-11 16:22:58 +0200 (Thu, 11 Sep 2008)
Fixes bug 0004849 Added 'if(!Utility.isUUIDString(_reference))'.
---
U trunk/src/org/openbravo/erpCommon/utility/ComboTableData.java
U trunk/src/org/openbravo/erpCommon/utility/Utility.java
---
https://dev.openbravo.com/websvn/openbravo/?rev=7208&sc=1 [^]
|
|