FR [ 2793721 ] - Data Access Level for HR_Concept
https://sourceforge.net/tracker/?func=detail&aid=2793721&group_id=176962&atid=934929
This commit is contained in:
parent
3c5b8623f4
commit
6ae1ecce78
|
@ -36,9 +36,9 @@ public interface I_HR_Concept
|
||||||
|
|
||||||
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
KeyNamePair Model = new KeyNamePair(Table_ID, Table_Name);
|
||||||
|
|
||||||
/** AccessLevel = 3 - Client - Org
|
/** AccessLevel = 7 - System - Client - Org
|
||||||
*/
|
*/
|
||||||
BigDecimal accessLevel = BigDecimal.valueOf(3);
|
BigDecimal accessLevel = BigDecimal.valueOf(7);
|
||||||
|
|
||||||
/** Load Meta Data */
|
/** Load Meta Data */
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent
|
||||||
}
|
}
|
||||||
|
|
||||||
/** AccessLevel
|
/** AccessLevel
|
||||||
* @return 3 - Client - Org
|
* @return 7 - System - Client - Org
|
||||||
*/
|
*/
|
||||||
protected int get_AccessLevel()
|
protected int get_AccessLevel()
|
||||||
{
|
{
|
||||||
|
@ -205,9 +205,9 @@ public class X_HR_Concept extends PO implements I_HR_Concept, I_Persistent
|
||||||
public void setHR_Concept_Category_ID (int HR_Concept_Category_ID)
|
public void setHR_Concept_Category_ID (int HR_Concept_Category_ID)
|
||||||
{
|
{
|
||||||
if (HR_Concept_Category_ID < 1)
|
if (HR_Concept_Category_ID < 1)
|
||||||
set_Value (COLUMNNAME_HR_Concept_Category_ID, null);
|
set_ValueNoCheck (COLUMNNAME_HR_Concept_Category_ID, null);
|
||||||
else
|
else
|
||||||
set_Value (COLUMNNAME_HR_Concept_Category_ID, Integer.valueOf(HR_Concept_Category_ID));
|
set_ValueNoCheck (COLUMNNAME_HR_Concept_Category_ID, Integer.valueOf(HR_Concept_Category_ID));
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Get Payroll Concept Category.
|
/** Get Payroll Concept Category.
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
-- May 19, 2009 1:25:01 PM EEST
|
||||||
|
-- -
|
||||||
|
UPDATE AD_Table SET AccessLevel='7',Updated=TO_DATE('2009-05-19 13:25:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Table_ID=53090
|
||||||
|
;
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
|
||||||
|
-- May 19, 2009 1:25:01 PM EEST
|
||||||
|
-- -
|
||||||
|
UPDATE AD_Table SET AccessLevel='7',Updated=TO_TIMESTAMP('2009-05-19 13:25:01','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Table_ID=53090
|
||||||
|
;
|
||||||
|
|
Loading…
Reference in New Issue