IDEMPIERE-2553 enter amounts without decimal separator - fix wrong model classes from previous commit
This commit is contained in:
parent
ccb391e324
commit
3715379847
|
@ -155,32 +155,6 @@ public interface I_AD_UserPreference
|
||||||
*/
|
*/
|
||||||
public boolean isActive();
|
public boolean isActive();
|
||||||
|
|
||||||
/** Column name IsAddressLinesReverse */
|
|
||||||
public static final String COLUMNNAME_IsAddressLinesReverse = "IsAddressLinesReverse";
|
|
||||||
|
|
||||||
/** Set Reverse Address Lines.
|
|
||||||
* Print Address in reverse Order
|
|
||||||
*/
|
|
||||||
public void setIsAddressLinesReverse (boolean IsAddressLinesReverse);
|
|
||||||
|
|
||||||
/** Get Reverse Address Lines.
|
|
||||||
* Print Address in reverse Order
|
|
||||||
*/
|
|
||||||
public boolean isAddressLinesReverse();
|
|
||||||
|
|
||||||
/** Column name IsAllowCopy */
|
|
||||||
public static final String COLUMNNAME_IsAllowCopy = "IsAllowCopy";
|
|
||||||
|
|
||||||
/** Set Allow Copy.
|
|
||||||
* Determine if a column must be copied when pushing the button to copy record
|
|
||||||
*/
|
|
||||||
public void setIsAllowCopy (boolean IsAllowCopy);
|
|
||||||
|
|
||||||
/** Get Allow Copy.
|
|
||||||
* Determine if a column must be copied when pushing the button to copy record
|
|
||||||
*/
|
|
||||||
public boolean isAllowCopy();
|
|
||||||
|
|
||||||
/** Column name Updated */
|
/** Column name Updated */
|
||||||
public static final String COLUMNNAME_Updated = "Updated";
|
public static final String COLUMNNAME_Updated = "Updated";
|
||||||
|
|
||||||
|
|
|
@ -39,8 +39,6 @@ public class X_AD_UserPreference extends PO implements I_AD_UserPreference, I_Pe
|
||||||
{
|
{
|
||||||
setAD_User_ID (0);
|
setAD_User_ID (0);
|
||||||
setAD_UserPreference_ID (0);
|
setAD_UserPreference_ID (0);
|
||||||
setIsAllowCopy (false);
|
|
||||||
// N
|
|
||||||
} */
|
} */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -195,52 +193,4 @@ public class X_AD_UserPreference extends PO implements I_AD_UserPreference, I_Pe
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Set Reverse Address Lines.
|
|
||||||
@param IsAddressLinesReverse
|
|
||||||
Print Address in reverse Order
|
|
||||||
*/
|
|
||||||
public void setIsAddressLinesReverse (boolean IsAddressLinesReverse)
|
|
||||||
{
|
|
||||||
set_Value (COLUMNNAME_IsAddressLinesReverse, Boolean.valueOf(IsAddressLinesReverse));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get Reverse Address Lines.
|
|
||||||
@return Print Address in reverse Order
|
|
||||||
*/
|
|
||||||
public boolean isAddressLinesReverse ()
|
|
||||||
{
|
|
||||||
Object oo = get_Value(COLUMNNAME_IsAddressLinesReverse);
|
|
||||||
if (oo != null)
|
|
||||||
{
|
|
||||||
if (oo instanceof Boolean)
|
|
||||||
return ((Boolean)oo).booleanValue();
|
|
||||||
return "Y".equals(oo);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Set Allow Copy.
|
|
||||||
@param IsAllowCopy
|
|
||||||
Determine if a column must be copied when pushing the button to copy record
|
|
||||||
*/
|
|
||||||
public void setIsAllowCopy (boolean IsAllowCopy)
|
|
||||||
{
|
|
||||||
set_Value (COLUMNNAME_IsAllowCopy, Boolean.valueOf(IsAllowCopy));
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Get Allow Copy.
|
|
||||||
@return Determine if a column must be copied when pushing the button to copy record
|
|
||||||
*/
|
|
||||||
public boolean isAllowCopy ()
|
|
||||||
{
|
|
||||||
Object oo = get_Value(COLUMNNAME_IsAllowCopy);
|
|
||||||
if (oo != null)
|
|
||||||
{
|
|
||||||
if (oo instanceof Boolean)
|
|
||||||
return ((Boolean)oo).booleanValue();
|
|
||||||
return "Y".equals(oo);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue