Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0029782Openbravo ERPA. Platformpublic2015-05-05 16:522015-05-15 09:22
gorkaion 
gorkaion 
normalminorN/A
closedfixed 
5
3.0PR14Q2.6 
3.0PR15Q3 
alostale
No
Core
No
0029782: Hooks needed on some processes to be used by modules
There are some application flows that should have hooks so modules can extend them to add new functionality. These flows are:

* WindowsSettingsActionHandler: This action handler is in charge of computing different window settings that are calculated based on the user and role. Among these settings there are the "Read Only Logic" based on role, the autosave preference or the window personalization. A hook is needed to be able to implement other module specific settings. This hook should have a Java part to be run in the server and a JavaScript part to be executed in the client.

* DefaultJsonDataService: The datasource in charge on load, update, delete or insert the records edited in the client already have some "pre" and "post" actions that are executed on each call. It should be possible for modules to add additional actions to validate or modify the data that it is being processed.

* FormInitializationComponent: This class initializes the form used to edit a record in the application. It computes all the callouts, auxiliary inputs, session attributes... and returns all the needed information to display the form data in the client. It should be possible for modules to modify the data that it is send to the client.
N/A
Add a hook on each flow:

WindowsSettingsActionHandler:
* hook to perform validations and to add extra settings to the return object
* hook in the callback function to be able to call additional module's JavaScript functions.
DefaultJsonDataService:
* hook to be executed after the preActions. Currently the preactions are not centralized on a single method. It needs a small refactor to create a generic preAction where it is included the hook.
* hook to be executed after the postActions.
FormInitializationComponent:
* hook at the end of the main method just before the response JSONObject is computed.
No tags attached.
related to feature request 00310073.0PR16Q1 closed alostale Openbravo ERP FICExtension can't display messages on EDIT 
related to defect 00313713.0PR15Q3 closed alostale Openbravo ERP API change: DefaultJsonDataService can't be instantiated with new 
causes defect 0031358 closed alostale Modules Resource Reservation widget is not working in 3.0PR15Q3, it blocks the application 
Issue History
2015-05-05 16:52gorkaionNew Issue
2015-05-05 16:52gorkaionAssigned To => gorkaion
2015-05-05 16:52gorkaionOBNetwork customer => No
2015-05-05 16:52gorkaionModules => Core
2015-05-05 16:52gorkaionTriggers an Emergency Pack => No
2015-05-07 11:10gorkaionNote Added: 0077083
2015-05-07 11:11gorkaionStatusnew => scheduled
2015-05-07 11:12gorkaionStatusscheduled => resolved
2015-05-07 11:12gorkaionFixed in SCM revision => https://code.openbravo.com/erp/devel/pi/rev/fd2ea337257b [^]
2015-05-07 11:12gorkaionResolutionopen => fixed
2015-05-07 11:13gorkaionReview Assigned To => alostale
2015-05-07 11:21hgbotCheckin
2015-05-07 11:21hgbotNote Added: 0077084
2015-05-07 11:21hgbotFixed in SCM revisionhttps://code.openbravo.com/erp/devel/pi/rev/fd2ea337257b [^] => http://code.openbravo.com/erp/devel/pi/rev/d3e797b23239b892edc7b2140f69b7557632936f [^]
2015-05-08 15:39hudsonbotCheckin
2015-05-08 15:39hudsonbotNote Added: 0077246
2015-05-15 09:22alostaleNote Added: 0077476
2015-05-15 09:22alostaleStatusresolved => closed
2015-05-15 09:22alostaleFixed in Version => 3.0PR15Q3
2015-10-01 14:43alostaleRelationship addedrelated to 0031007
2015-11-05 09:08alostaleRelationship addedcauses 0031358
2015-11-05 12:08alostaleRelationship addedrelated to 0031371

Notes
(0077083)
gorkaion   
2015-05-07 11:10   
Documentation:

http://wiki.openbravo.com/wiki/How_To_Implement_ExtraWindowSettingsInjector_Hook [^]
http://wiki.openbravo.com/wiki/How_To_Implement_JsonDataServiceExtraActions_Hook [^]
http://wiki.openbravo.com/wiki/How_To_Implement_FICExtension_Hook [^]
(0077084)
hgbot   
2015-05-07 11:21   
Repository: erp/devel/pi
Changeset: d3e797b23239b892edc7b2140f69b7557632936f
Author: Gorka Ion Damián <gorkaion.damian <at> openbravo.com>
Date: Tue May 05 17:10:17 2015 +0200
URL: http://code.openbravo.com/erp/devel/pi/rev/d3e797b23239b892edc7b2140f69b7557632936f [^]

Fixed issue 29782. Added needed hooks.

WindowSettingsActionHandler:
- Add a java hook and the possibility to include javascript functions to be
  executed by the callback.
FormInitializationComponent:
- Add a java hook just before the creation of the response JSONObject.
DefaultJsonDataService:
- Add 2 java hook to be executed after the pre actions and the post actions.

---
M modules/org.openbravo.client.application/src/org/openbravo/client/application/WindowSettingsActionHandler.java
M modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FormInitializationComponent.java
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-window.js
M modules/org.openbravo.service.json/src/org/openbravo/service/json/DefaultJsonDataService.java
A modules/org.openbravo.client.application/src/org/openbravo/client/application/ExtraSettingsInjector.java
A modules/org.openbravo.client.application/src/org/openbravo/client/application/window/FICExtension.java
A modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonDataServiceExtraActions.java
---
(0077246)
hudsonbot   
2015-05-08 15:39   
A changeset related to this issue has been promoted main and to the
Central Repository, after passing a series of tests.

Promotion changeset: https://code.openbravo.com/erp/devel/main/rev/d5cb256a6a8a [^]
Maturity status: Test
(0077476)
alostale   
2015-05-15 09:22   
code reviewed + tested