Project:
View Issue Details[ Jump to Notes ] | [ Issue History ] [ Print ] | |||||||
ID | ||||||||
0033799 | ||||||||
Type | Category | Severity | Reproducibility | Date Submitted | Last Update | |||
defect | [Openbravo ERP] A. Platform | minor | always | 2016-08-25 09:27 | 2016-09-15 16:48 | |||
Reporter | JONHM | View Status | public | |||||
Assigned To | NaroaIriarte | |||||||
Priority | normal | Resolution | fixed | Fixed in Version | 3.0PR16Q4 | |||
Status | closed | Fix in branch | Fixed in SCM revision | 6413719aeee5 | ||||
Projection | none | ETA | none | Target Version | ||||
OS | Any | Database | Any | Java version | ||||
OS Version | Database version | Ant version | ||||||
Product Version | SCM revision | |||||||
Review Assigned To | caristu | |||||||
Web browser | ||||||||
Modules | Core | |||||||
Regression level | ||||||||
Regression date | ||||||||
Regression introduced in release | ||||||||
Regression introduced by commit | ||||||||
Triggers an Emergency Pack | No | |||||||
Summary | 0033799: AD_Role_ID system variable not working at tab level | |||||||
Description | If we want to disable some tab with the system variable @#AD_Role_ID@ applied into a "Display Logic" of a TAB, it does not work. The tab is always shown. | |||||||
Steps To Reproduce | ****** TAB LEVEL ****** 1) Apply this sentence into "Display logic" of some TAB inside a window (make sure the role we want to apply has permission to open that window): @#AD_Role_ID@!'SOMEROLEID' 2) Open that window using that role. The tab is displayed. ------------------------------------ ****** FIELD LEVEL ****** 1) Apply this sentence into "Display logic" of some FIELD inside a window (make sure the role we want to apply has permission to open that window): @#AD_Role_ID@!'SOMEROLEID' 2) Open that window using that role. The field is displayed in grid view and the field is read only. It is not shown in from view. This behavior is correct. | |||||||
Tags | No tags attached. | |||||||
Attached Files | ||||||||
Relationships [ Relation Graph ] [ Dependency Graph ] | |||||||||||||||
|
Notes | |
(0089618) NaroaIriarte (developer) 2016-08-31 13:15 edited on: 2016-08-31 13:17 |
The behavior for the Field level is correct. For example, set the display logic of the field "Business Partner Category" of "Business Partner" window as @#AD_Role_ID@!'42D0EEB1C66F497A90DD526DC597E6F0' as it is reported. The expected behavior is the following: - In grid view, the "Business Partner Category" field will be visible but it will be set as READ ONLY. - In form view, the field will not be visible. Here you have some documentation of the specifications about project which implemented the functionality: http://wiki.openbravo.com/wiki/Projects:Grid_Display_Logic_as_Read_Only/Specs [^] |
(0089937) hgbot (developer) 2016-09-14 09:47 |
Repository: erp/devel/pi Changeset: 6413719aeee51e03cb1089624e00293c7e1416ec Author: Naroa Iriarte <naroa.iriarte <at> openbravo.com> Date: Mon Sep 12 12:15:22 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/6413719aeee51e03cb1089624e00293c7e1416ec [^] Fixed issue 33799: AD_ROLE_ID was not working fine in the tabs display logic The display logics using the AD_ROLE_ID session variable were not working fine. The problem was in the ob-standard-view.js class. The session attributes were overwritten with the values saved in the OB.Properties. And in this case it was null. To fix this, a condition has been added, now if the OB.Properties(propertyName) is null, the value of the session attribute is not overwritten. --- M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js --- |
(0089954) hudsonbot (developer) 2016-09-14 14:41 |
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/4bab0d04f3bd [^] Maturity status: Test |
(0089955) caristu (developer) 2016-09-14 15:49 |
Some minor improvements to be applied: https://docs.google.com/spreadsheets/d/18l2biKWeG6iGDIPqO6VuYQ_TtP_6YxyQU4KSrPvQlJ8/edit#gid=0 [^] |
(0089957) hgbot (developer) 2016-09-14 16:38 |
Repository: erp/devel/pi Changeset: 11ee89985b04757dcc88f98a64fadb6f1d3afba1 Author: Naroa Iriarte <naroa.iriarte <at> openbravo.com> Date: Wed Sep 14 16:23:43 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/11ee89985b04757dcc88f98a64fadb6f1d3afba1 [^] Related with issue 33799: The OB.PropertyStore.get method is now invoked once Before, there were two invocations to the OB.PropertyStore.get method, now, a new variable has been created which contains the value obtained from the OB.PropertyStore.get method and now that variable is used instead of invoking twice the method. --- M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js --- |
(0089959) hgbot (developer) 2016-09-14 17:03 |
Repository: erp/devel/pi Changeset: 9bc7137ec26a502bb128808ac09c79a7b7dc6bb4 Author: Naroa Iriarte <naroa.iriarte <at> openbravo.com> Date: Wed Sep 14 17:03:14 2016 +0200 URL: http://code.openbravo.com/erp/devel/pi/rev/9bc7137ec26a502bb128808ac09c79a7b7dc6bb4 [^] Related with issue 33799: The preferenceValue variable set correctly The preferenceValue variable was being set outside the for loop and this had no sense. Now it is correctly placed. --- M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/main/ob-standard-view.js --- |
(0089964) caristu (developer) 2016-09-15 09:34 |
Code review + testing OK: now session attribute values are not overridden in context info by non-existing preferences. Tested with: - Display logic on field based on @#AD_Role_ID@ - Display logic on tab based on @#AD_Role_ID@ - Display logic on tab based on a preference value |
(0089994) hudsonbot (developer) 2016-09-15 16:48 |
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/9504e92f9553 [^] Maturity status: Test |
(0089995) hudsonbot (developer) 2016-09-15 16:48 |
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/9504e92f9553 [^] Maturity status: Test |
Issue History | |||
Date Modified | Username | Field | Change |
2016-08-25 09:27 | JONHM | New Issue | |
2016-08-25 09:27 | JONHM | Assigned To | => platform |
2016-08-25 09:27 | JONHM | Modules | => Core |
2016-08-25 09:27 | JONHM | Triggers an Emergency Pack | => No |
2016-08-25 15:18 | NaroaIriarte | Assigned To | platform => NaroaIriarte |
2016-08-29 14:44 | NaroaIriarte | Status | new => acknowledged |
2016-08-29 15:27 | NaroaIriarte | Status | acknowledged => scheduled |
2016-08-31 13:15 | NaroaIriarte | Note Added: 0089618 | |
2016-08-31 13:17 | NaroaIriarte | Note Edited: 0089618 | View Revisions |
2016-09-01 09:59 | NaroaIriarte | Description Updated | View Revisions |
2016-09-01 09:59 | NaroaIriarte | Steps to Reproduce Updated | View Revisions |
2016-09-01 10:21 | NaroaIriarte | Relationship added | related to 0005202 |
2016-09-14 09:47 | NaroaIriarte | Review Assigned To | => alostale |
2016-09-14 09:47 | hgbot | Checkin | |
2016-09-14 09:47 | hgbot | Note Added: 0089937 | |
2016-09-14 09:47 | hgbot | Status | scheduled => resolved |
2016-09-14 09:47 | hgbot | Resolution | open => fixed |
2016-09-14 09:47 | hgbot | Fixed in SCM revision | => http://code.openbravo.com/erp/devel/pi/rev/6413719aeee51e03cb1089624e00293c7e1416ec [^] |
2016-09-14 12:31 | caristu | Relationship added | related to 0026198 |
2016-09-14 12:31 | NaroaIriarte | Review Assigned To | alostale => caristu |
2016-09-14 14:41 | hudsonbot | Checkin | |
2016-09-14 14:41 | hudsonbot | Note Added: 0089954 | |
2016-09-14 15:49 | caristu | Note Added: 0089955 | |
2016-09-14 16:38 | hgbot | Checkin | |
2016-09-14 16:38 | hgbot | Note Added: 0089957 | |
2016-09-14 17:03 | hgbot | Checkin | |
2016-09-14 17:03 | hgbot | Note Added: 0089959 | |
2016-09-15 09:34 | caristu | Note Added: 0089964 | |
2016-09-15 09:34 | caristu | Status | resolved => closed |
2016-09-15 09:34 | caristu | Fixed in Version | => 3.0PR16Q4 |
2016-09-15 16:48 | hudsonbot | Checkin | |
2016-09-15 16:48 | hudsonbot | Note Added: 0089994 | |
2016-09-15 16:48 | hudsonbot | Checkin | |
2016-09-15 16:48 | hudsonbot | Note Added: 0089995 |
Copyright © 2000 - 2009 MantisBT Group |