Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0006347Openbravo ERPA. Platformpublic2008-12-03 12:392009-05-22 19:33
villind 
iciordia 
normalmajoralways
acknowledgedopen 
5
2.40 
 
Core
No
0006347: Remove Client information from windows where it is not needed
Windows that does not have System in the access right should not display the field Client (AD_CLIENT in database).


  
Remove client information from windows.

Add client information in menu and browser title.
ReleaseCandidate, Usability
Issue History
2008-12-03 12:39villindNew Issue
2008-12-03 12:39villindAssigned To => rafaroda
2008-12-03 12:39villindsf_bug_id0 => 2382167
2008-12-03 12:39villindRegression testing => No
2008-12-04 11:00pjuvaraAssigned Torafaroda => pjuvara
2008-12-07 19:52pjuvaraTag Attached: ReleaseCandidate
2008-12-07 19:52pjuvaraTag Attached: Usability
2008-12-07 19:53pjuvaraCategoryB. User interface => A. Platform
2008-12-07 19:53pjuvaraStatusnew => acknowledged
2009-05-08 15:00villindNote Added: 0016183
2009-05-22 19:33pjuvaraAssigned Topjuvara => iciordia

Notes
(0016183)
villind   
2009-05-08 15:00   
SQL to do this change:

update ad_field set isdisplayed='N', showinrelation='N', updated=now() where ad_column_id in
(select ad_column_id from ad_column where ad_element_id='102' /*Client*/ and
    ad_table_id in (select ad_table_id from ad_table where accesslevel in ('1'/*Organization*/,'3'/*Client/Organization*/))
)