Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0013518 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] A. Platform | major | always | 2010-06-04 10:14 | 2010-06-18 00:00 | |||
Reporter | iperdomo | View Status | public | |||||
Assigned To | iperdomo | |||||||
Priority | immediate | Resolution | fixed | Fixed in Version | 2.50MP19 | |||
Status | closed | Fix in branch | pi | Fixed in SCM revision | 9676c91a1320 | |||
Projection | none | ETA | none | Target Version | ||||
OS | Linux 32 bit | Database | PostgreSQL | Java version | 1.6.0_15 | |||
OS Version | 2.6.30-gentoo-r5 | Database version | 8.3.8 | Ant version | 1.7.1 | |||
Product Version | 2.50MP18 | SCM revision | ||||||
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); | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
![]() |
|
![]() |
|
(0027946) hgbot (developer) 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 --- |
(0028043) iperdomo (viewer) 2010-06-07 11:25 |
This change triggers a problem in PL/SQL based processes |
(0028046) hgbot (developer) 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 --- |
(0028080) hudsonbot (viewer) 2010-06-07 21:20 |
A changeset related to this issue has been promoted to main after passing a series of tests and an OBX has been generated: Changeset: http://code.openbravo.com/erp/devel/main/rev/869dd4f3577c [^] Merge Changeset: http://code.openbravo.com/erp/devel/main/rev/8b43a1f2fff4 [^] Tests: http://builds.openbravo.com/view/int/ [^] OBX: http://builds.openbravo.com/erp/core/obx/OpenbravoERP-2.50CI.17563.obx [^] |
(0028117) hudsonbot (viewer) 2010-06-07 21:21 |
A changeset related to this issue has been promoted to main after passing a series of tests and an OBX has been generated: Changeset: http://code.openbravo.com/erp/devel/main/rev/9676c91a1320 [^] Merge Changeset: http://code.openbravo.com/erp/devel/main/rev/8b43a1f2fff4 [^] Tests: http://builds.openbravo.com/view/int/ [^] OBX: http://builds.openbravo.com/erp/core/obx/OpenbravoERP-2.50CI.17563.obx [^] |
(0028122) hudsonbot (viewer) 2010-06-07 23:43 |
A changeset related to this issue has been promoted to main after passing a series of tests and an OBX has been generated: Changeset: http://code.openbravo.com/erp/devel/main/rev/869dd4f3577c [^] Merge Changeset: http://code.openbravo.com/erp/devel/main/rev/8b43a1f2fff4 [^] Tests: http://builds.openbravo.com/view/int/ [^] OBX: http://builds.openbravo.com/erp/core/obx/OpenbravoERP-2.50CI.17563.obx [^] |
(0028159) hudsonbot (viewer) 2010-06-07 23:44 |
A changeset related to this issue has been promoted to main after passing a series of tests and an OBX has been generated: Changeset: http://code.openbravo.com/erp/devel/main/rev/9676c91a1320 [^] Merge Changeset: http://code.openbravo.com/erp/devel/main/rev/8b43a1f2fff4 [^] Tests: http://builds.openbravo.com/view/int/ [^] OBX: http://builds.openbravo.com/erp/core/obx/OpenbravoERP-2.50CI.17563.obx [^] |
(0028558) marvintm (viewer) 2010-06-17 15:36 |
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. |
![]() |
|||
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 |
Copyright © 2000 - 2009 MantisBT Group |