Openbravo Issue Tracking System - Openbravo ERP |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0033750 | Openbravo ERP | A. Platform | public | 2016-08-19 12:16 | 2016-09-02 13:39 |
|
Reporter | gorkaion | |
Assigned To | gorkaion | |
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | |
Platform | | OS | 5 | OS Version | |
Product Version | | |
Target Version | | Fixed in Version | 3.0PR16Q4 | |
Merge Request Status | |
Review Assigned To | alostale |
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 | 0033750: Add API in SessionHandler to create new Transactions on active Session |
Description | When implementing a TransactionCompleted event the Transaction on the active Session is not active. This means that it is not possible to do database changes in those event handlers.
It should be possible to begin a new transaction when needed. Currently this is only possible by deleting the session which can create issues in processes that do commitAndStart(). |
Steps To Reproduce | * Create an event handler that implements the TransactionCompleted event.
Case 1:
* Try to do an insert or an update on some entity on the event handler.
* It fails with a Transaction not active error.
Case 2:
* Do a SessionHandler.deleteSession() at the beginning of the TransactionCompleted event implementation.
* The event handler does not fail but the Physical Inventory Count process fails. (it does a commitAndStart() which fires the event handler which deletes the session)
|
Proposed Solution | Create a new public method in SessionHandler that begins a new transaction in the current active Session. |
Additional Information | |
Tags | No tags attached. |
Relationships | blocks | design defect | 0033210 | pi | closed | gorkaion | VariantChDescUpdateProcess executed using ImportEntries instead of ProcessBundle |
|
Attached Files | issue33750.patch (803) 2016-08-19 12:19 https://issues.openbravo.com/file_download.php?file_id=9734&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2016-08-19 12:16 | gorkaion | New Issue | |
2016-08-19 12:16 | gorkaion | Assigned To | => gorkaion |
2016-08-19 12:16 | gorkaion | OBNetwork customer | => No |
2016-08-19 12:16 | gorkaion | Modules | => Core |
2016-08-19 12:16 | gorkaion | Triggers an Emergency Pack | => No |
2016-08-19 12:19 | gorkaion | Relationship added | related to 0033210 |
2016-08-19 12:19 | gorkaion | File Added: issue33750.patch | |
2016-08-19 12:30 | gorkaion | Relationship deleted | related to 0033210 |
2016-08-19 12:30 | gorkaion | Relationship added | blocks 0033210 |
2016-08-31 11:21 | gorkaion | Review Assigned To | => alostale |
2016-08-31 11:44 | hgbot | Checkin | |
2016-08-31 11:44 | hgbot | Note Added: 0089595 | |
2016-08-31 11:44 | hgbot | Status | new => resolved |
2016-08-31 11:44 | hgbot | Resolution | open => fixed |
2016-08-31 11:44 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/4ece62a0e09c265e63eaa42b9c73acbef98c8996 [^] |
2016-08-31 12:23 | hgbot | Checkin | |
2016-08-31 12:23 | hgbot | Note Added: 0089596 | |
2016-08-31 12:23 | hgbot | Fixed in SCM revision | http://code.openbravo.com/erp/devel/pi/rev/4ece62a0e09c265e63eaa42b9c73acbef98c8996 [^] => http://code.openbravo.com/erp/devel/pi/rev/2255a10488676a72f7b311ef7ea433f59dc19fab [^] |
2016-09-01 12:12 | hudsonbot | Checkin | |
2016-09-01 12:12 | hudsonbot | Note Added: 0089650 | |
2016-09-01 12:12 | hudsonbot | Checkin | |
2016-09-01 12:12 | hudsonbot | Note Added: 0089651 | |
2016-09-02 13:39 | alostale | Note Added: 0089703 | |
2016-09-02 13:39 | alostale | Status | resolved => closed |
2016-09-02 13:39 | alostale | Fixed in Version | => 3.0PR16Q4 |
Notes |
|
(0089595)
|
hgbot
|
2016-08-31 11:44
|
|
Repository: erp/devel/pi
Changeset: 4ece62a0e09c265e63eaa42b9c73acbef98c8996
Author: Gorka Ion Damián <gorkaion.damian <at> openbravo.com>
Date: Wed Aug 31 11:42:06 2016 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/4ece62a0e09c265e63eaa42b9c73acbef98c8996 [^]
Fixed issue 33750.Add new methods in SessionHandler to manage transactions.
Two new public methods added:
- isCurrentTransactionActive()
- beginNewTransaction()
These methods are needed to be able to modify the database in EventHandlers
that are fired when the transaction is completed.
---
M src-db/database/sourcedata/AD_MESSAGE.xml
M src/org/openbravo/dal/core/SessionHandler.java
---
|
|
|
(0089596)
|
hgbot
|
2016-08-31 12:23
|
|
Repository: erp/devel/pi
Changeset: 2255a10488676a72f7b311ef7ea433f59dc19fab
Author: Gorka Ion Damián <gorkaion.damian <at> openbravo.com>
Date: Wed Aug 31 12:22:30 2016 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/2255a10488676a72f7b311ef7ea433f59dc19fab [^]
Fixed issue 33750.Add new methods in SessionHandler to manage transactions.
Two new public methods added:
- isCurrentTransactionActive()
- beginNewTransaction()
These methods are needed to be able to modify the database in EventHandlers
that are fired when the transaction is completed.
---
M src/org/openbravo/dal/core/SessionHandler.java
---
|
|
|
|
|
|
|
|
|
|
|