Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0013518 | Openbravo ERP | A. Platform | public | 2010-06-04 10:14 | 2010-06-18 00:00 |
|
Reporter | iperdomo | |
Assigned To | iperdomo | |
Priority | immediate | Severity | major | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 20 | OS Version | 2.6.30-gentoo-r5 |
Product Version | 2.50MP18 | |
Target Version | | Fixed in Version | 2.50MP19 | |
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 | 0013518: ProcessBundle is not initilized on WAD generated code |
Description | The ProcessBundle has a init() methond that initializes the ProcessLogger, connection, among other things.
On WAD generated code, e.g. processes using 'Standard UI' the init method is not executed so some ProcessBundle members are null. |
Steps To Reproduce | Check the WAD generated class:
* org.openbravo.erpCommon.ad_actionButton.ActionButton_Responser
Search for ProcessBundle class ocurrences, e.g.
ProcessBundle bundle = ProcessBundle.pinstance(pinstance, vars, this);
new ProcessRunner(bundle).execute(this);
As you can see the init() methond is not executed before running it. |
Proposed Solution | Call the init() in the new instance call, e.g.
ProcessBundle bundle = ProcessBundle.pinstance(pinstance, vars, this).init(this);
|
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | |
|
Issue History |
Date Modified | Username | Field | Change |
2010-06-04 10:14 | iperdomo | New Issue | |
2010-06-04 10:14 | iperdomo | Assigned To | => iperdomo |
2010-06-04 10:14 | iperdomo | OBNetwork customer | => No |
2010-06-04 10:14 | iperdomo | Status | new => scheduled |
2010-06-04 10:14 | iperdomo | fix_in_branch | => pi |
2010-06-04 12:04 | hgbot | Checkin | |
2010-06-04 12:04 | hgbot | Note Added: 0027946 | |
2010-06-04 12:04 | hgbot | Status | scheduled => resolved |
2010-06-04 12:04 | hgbot | Resolution | open => fixed |
2010-06-04 12:04 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/869dd4f3577c08aeaa46e0d20cc1145d64b0ef7a [^] |
2010-06-07 11:25 | iperdomo | Note Added: 0028043 | |
2010-06-07 11:25 | iperdomo | Status | resolved => new |
2010-06-07 11:25 | iperdomo | Resolution | fixed => open |
2010-06-07 11:25 | iperdomo | Priority | urgent => immediate |
2010-06-07 11:25 | iperdomo | fix_in_branch | pi => |
2010-06-07 11:25 | iperdomo | Status | new => scheduled |
2010-06-07 11:25 | iperdomo | fix_in_branch | => pi |
2010-06-07 11:59 | hgbot | Checkin | |
2010-06-07 11:59 | hgbot | Note Added: 0028046 | |
2010-06-07 11:59 | hgbot | Status | scheduled => resolved |
2010-06-07 11:59 | hgbot | Resolution | open => fixed |
2010-06-07 11:59 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/869dd4f3577c08aeaa46e0d20cc1145d64b0ef7a [^] => http://code.openbravo.com/erp/devel/pi/rev/9676c91a13200b8dbb637d07c00f34904ad5623b [^] |
2010-06-07 21:20 | hudsonbot | Checkin | |
2010-06-07 21:20 | hudsonbot | Note Added: 0028080 | |
2010-06-07 21:21 | hudsonbot | Checkin | |
2010-06-07 21:21 | hudsonbot | Note Added: 0028117 | |
2010-06-07 23:43 | hudsonbot | Checkin | |
2010-06-07 23:43 | hudsonbot | Note Added: 0028122 | |
2010-06-07 23:44 | hudsonbot | Checkin | |
2010-06-07 23:44 | hudsonbot | Note Added: 0028159 | |
2010-06-17 15:36 | marvintm | Note Added: 0028558 | |
2010-06-17 15:36 | marvintm | Status | resolved => closed |
2010-06-17 15:36 | marvintm | Fixed in Version | => 2.50MP19 |
2010-06-18 00:00 | anonymous | sf_bug_id | 0 => 3017787 |
Notes |
|
(0027946)
|
hgbot
|
2010-06-04 12:04
|
|
Repository: erp/devel/pi
Changeset: 869dd4f3577c08aeaa46e0d20cc1145d64b0ef7a
Author: Iván Perdomo <ivan.perdomo <at> openbravo.com>
Date: Fri Jun 04 10:57:02 2010 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/869dd4f3577c08aeaa46e0d20cc1145d64b0ef7a [^]
Fixes issue 13518: Added init() in ProcessBundle instances
The init call is used to initilze ProcessBundle memebers. For a proper
ProcessBundle is required to call it.
---
M src-wad/src/org/openbravo/wad/ActionButtonJava_Responser.javaxml
M src-wad/src/org/openbravo/wad/ActionButton_Responser.javaxml
M src-wad/src/org/openbravo/wad/javasource.javaxml
---
|
|
|
|
This change triggers a problem in PL/SQL based processes |
|
|
(0028046)
|
hgbot
|
2010-06-07 11:59
|
|
Repository: erp/devel/pi
Changeset: 9676c91a13200b8dbb637d07c00f34904ad5623b
Author: Iván Perdomo <ivan.perdomo <at> openbravo.com>
Date: Mon Jun 07 11:58:27 2010 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/9676c91a13200b8dbb637d07c00f34904ad5623b [^]
Fixes issue 13518: Added init call just for Java based calls
The pinstance() call is calling the init() methond inside, there is
no need to call it twice.
---
M src-wad/src/org/openbravo/wad/ActionButton_Responser.javaxml
M src-wad/src/org/openbravo/wad/javasource.javaxml
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Tested with an implementation of the org.openbravo.scheduling.Process interface. Verified that the ProcessBundle was indeed initialized correctly, and for example the bundle.getLogger() object could be safely used. |
|