Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0026775Openbravo ERPA. Platformpublic2014-06-04 09:442014-06-04 10:57
guillermogil 
eduardo_Argal 
normaltrivialhave not tried
newopen 
5
 
 
Core
No
0026775: Remove parent fields on grid view
There are several tabs that have the parent field shown on grid.
Look for them and remove the ones that are not used.
N/A
No tags attached.
related to defect 00267673.0PR14Q3 closed guillermogil filters not working in Process Definition > Parameter 
Issue History
2014-06-04 09:44guillermogilNew Issue
2014-06-04 09:44guillermogilAssigned To => guillermogil
2014-06-04 09:44guillermogilModules => Core
2014-06-04 09:44guillermogilTriggers an Emergency Pack => No
2014-06-04 09:44guillermogilRelationship addedrelated to 0026767
2014-06-04 10:04guillermogilNote Added: 0067740
2014-06-04 10:56guillermogilNote Added: 0067743
2014-06-04 10:57guillermogilAssigned Toguillermogil => eduardo_Argal
2014-06-04 10:57guillermogilSeverityminor => trivial
2014-06-04 11:00guillermogilNote Edited: 0067740bug_revision_view_page.php?bugnote_id=0067740#r5915

Notes
(0067740)
guillermogil   
2014-06-04 10:04   
(edited on: 2014-06-04 11:00)
These are the candidates to be set isdisplayed = 'N' and f.showinrelation = 'N'. There are a lot of false positives.

select f.name as Field, t.name as Tab, t.tabLevel as tabLevel, w.name as Windows
from ad_field f
left join ad_column c on f.ad_column_id = c.ad_column_id
left join ad_tab t on t.ad_tab_id = f.ad_tab_id
left join ad_window w on t.ad_window_id = w.ad_window_id
where (f.isdisplayed = 'Y' or f.showinrelation = 'Y') and c.isparent = 'Y' and t.tabLevel > 0
order by Windows

(0067743)
guillermogil   
2014-06-04 10:56   
Those are the fields:

"Field";"Tab";"TabLevel";"Window"
"Widget Instance";"Parameter Values";1;"Widget Instance"
"Widget Class";"Parameter";1;"Widget"
"User/Contact";"OpenID Identifier";1;"User"
"Invoice";"Exchange rates";1;"Sales Invoice"
"Reference";"Widget in Form";1;"Reference"
"Reference";"Window Reference";1;"Reference"
"Reference";"Mask Reference";1;"Reference"
"Invoice";"Exchange rates";1;"Purchase Invoice"
"Product";"Characteristic Values";1;"Product"
"Product";"Characteristics";1;"Product"
"Process Defintion";"Process Access";1;"Process Definition"
"Process Defintion";"Parameter";1;"Process Definition"
"Costing Rule";"Initialization";1;"Costing Rules"