IDEMPIERE-2553 enter amounts without decimal separator - fix wrong model classes from previous commit

This commit is contained in:
Carlos Ruiz 2015-04-27 17:09:36 -05:00
parent ccb391e324
commit 3715379847
2 changed files with 0 additions and 76 deletions

View File

@ -155,32 +155,6 @@ public interface I_AD_UserPreference
*/
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 */
public static final String COLUMNNAME_Updated = "Updated";

View File

@ -39,8 +39,6 @@ public class X_AD_UserPreference extends PO implements I_AD_UserPreference, I_Pe
{
setAD_User_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;
}
/** 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;
}
}