Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0007277Openbravo ERPA. Platformpublic2009-01-30 16:172022-12-29 20:57
roklenardic 
anthony_wolski 
urgentmajoralways
closedfixed 
20Ubuntu 8.10
pi 
pi 
open
No
Core
No
0007277: Background Scheduler Privileges
i've written a background process and noticed that the client of the OBContext that is present in the background process is taken from the default role of the user who entered the Process Request.

Imagine this.
 1 I login using Openbravo user that has the default role System Admin
 2 i switch the role to the Openbravo Admin
 3 i schedule my background process in Process Request, entering this line with the bigbazaar client for which i would like this process to be run.
        
The process now gets scheduled but the problem is that the default role of the Openbravo user is Sys Admin that does not have access to Bigbazaar. this way, i can't process any bigbazaar records using DAL (see DalBaseProcess class).
No tags attached.
Issue History
2009-01-30 16:17roklenardicNew Issue
2009-01-30 16:17roklenardicAssigned To => anthony_wolski
2009-01-30 16:17roklenardicsf_bug_id0 => 2549370
2009-01-30 16:17roklenardicOBNetwork customer => No
2009-01-30 16:17roklenardicRegression testing => No
2009-02-02 06:13pjuvaraPrioritynormal => urgent
2009-02-02 09:16rafarodaversion => trunk
2009-02-02 12:51joanIssue Monitored: joan
2009-02-03 10:18anthony_wolskiNote Added: 0013056
2009-02-03 10:18anthony_wolskiStatusnew => feedback
2009-02-05 11:04anthony_wolskiStatusfeedback => scheduled
2009-02-05 11:04anthony_wolskifix_in_branch => trunk
2009-02-05 11:06anthony_wolskiStatusscheduled => resolved
2009-02-05 11:06anthony_wolskiFixed in Version => trunk
2009-02-05 11:06anthony_wolskisvn_revision => 12695
2009-02-05 11:06anthony_wolskiResolutionopen => fixed
2009-02-05 11:06anthony_wolskiNote Added: 0013172
2009-04-21 12:39psarobeStatusresolved => closed
2022-12-29 19:40hgbotMerge Request Status => open
2022-12-29 19:40hgbotNote Added: 0145090
2022-12-29 20:57hgbotNote Added: 0145091

Notes
(0013056)
anthony_wolski   
2009-02-03 10:18   
DalBaseProcess now sets the OBContext based on the credentials used when the process was scheduled:

OBContext.setOBContext(userId, roleId, clientId, orgId);

Added the following method to OBContext;

public static void setOBContext(String userId, String roleId, String clientId, String orgId) {
    final OBContext context = OBProvider.getInstance().get(OBContext.class);
    setOBContext((OBContext) null);
    context.initialize(userId, roleId, clientId, orgId);
    setOBContext(context);
}
(0013172)
anthony_wolski   
2009-02-05 11:06   
See notes.
(0145090)
hgbot   
2022-12-29 19:40   
Merge Request created: https://gitlab.com/openbravo/product/pmods/com.practicsbs.saftpt.retail/-/merge_requests/90 [^]
(0145091)
hgbot   
2022-12-29 20:57   
Merge request closed: https://gitlab.com/openbravo/product/pmods/com.practicsbs.saftpt.retail/-/merge_requests/90 [^]