* Generate model class for 316
This commit is contained in:
parent
465621fb98
commit
138639ec47
|
@ -2,17 +2,17 @@
|
|||
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
|
||||
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.compiere.util.GenerateModel"/>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
|
||||
<listEntry value="4"/>
|
||||
<listEntry value="1"/>
|
||||
</listAttribute>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="${workspace_loc:_gen}/ org.compiere.model 'U','A','D','C','CUST'"/>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="${workspace_loc:dbPort}/src/org/compiere/model/ org.compiere.model 'D'"/>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="dbPort"/>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-DPropertyFile=${workspace_loc:_production}/Adempiere/Adempiere.properties"/>
|
||||
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-DPropertyFile=C:/Adempiere/Adempiere.properties"/>
|
||||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
|
||||
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
|
||||
<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
|
||||
</listAttribute>
|
||||
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
|
||||
<listEntry value="/dbPort"/>
|
||||
<listEntry value="/dbPort/src/org/compiere/util/GenerateModel.java"/>
|
||||
</listAttribute>
|
||||
<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/>
|
||||
</launchConfiguration>
|
||||
|
|
|
@ -142,42 +142,6 @@ return (String)get_Value("DUNS");
|
|||
}
|
||||
/** Column name DUNS */
|
||||
public static final String COLUMNNAME_DUNS = "DUNS";
|
||||
/** Set ISIC.
|
||||
@param LCO_ISIC_ID ISIC */
|
||||
public void setLCO_ISIC_ID (int LCO_ISIC_ID)
|
||||
{
|
||||
if (LCO_ISIC_ID <= 0) set_Value ("LCO_ISIC_ID", null);
|
||||
else
|
||||
set_Value ("LCO_ISIC_ID", Integer.valueOf(LCO_ISIC_ID));
|
||||
}
|
||||
/** Get ISIC.
|
||||
@return ISIC */
|
||||
public int getLCO_ISIC_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_ISIC_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_ISIC_ID */
|
||||
public static final String COLUMNNAME_LCO_ISIC_ID = "LCO_ISIC_ID";
|
||||
/** Set Tax Payer Type.
|
||||
@param LCO_TaxPayerType_ID Tax Payer Type */
|
||||
public void setLCO_TaxPayerType_ID (int LCO_TaxPayerType_ID)
|
||||
{
|
||||
if (LCO_TaxPayerType_ID <= 0) set_Value ("LCO_TaxPayerType_ID", null);
|
||||
else
|
||||
set_Value ("LCO_TaxPayerType_ID", Integer.valueOf(LCO_TaxPayerType_ID));
|
||||
}
|
||||
/** Get Tax Payer Type.
|
||||
@return Tax Payer Type */
|
||||
public int getLCO_TaxPayerType_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_TaxPayerType_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_TaxPayerType_ID */
|
||||
public static final String COLUMNNAME_LCO_TaxPayerType_ID = "LCO_TaxPayerType_ID";
|
||||
/** Set Warehouse.
|
||||
@param M_Warehouse_ID Storage Warehouse and Service Point */
|
||||
public void setM_Warehouse_ID (int M_Warehouse_ID)
|
||||
|
|
|
@ -710,42 +710,6 @@ return false;
|
|||
}
|
||||
/** Column name IsVendor */
|
||||
public static final String COLUMNNAME_IsVendor = "IsVendor";
|
||||
/** Set ISIC.
|
||||
@param LCO_ISIC_ID ISIC */
|
||||
public void setLCO_ISIC_ID (int LCO_ISIC_ID)
|
||||
{
|
||||
if (LCO_ISIC_ID <= 0) set_Value ("LCO_ISIC_ID", null);
|
||||
else
|
||||
set_Value ("LCO_ISIC_ID", Integer.valueOf(LCO_ISIC_ID));
|
||||
}
|
||||
/** Get ISIC.
|
||||
@return ISIC */
|
||||
public int getLCO_ISIC_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_ISIC_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_ISIC_ID */
|
||||
public static final String COLUMNNAME_LCO_ISIC_ID = "LCO_ISIC_ID";
|
||||
/** Set Tax Payer Type.
|
||||
@param LCO_TaxPayerType_ID Tax Payer Type */
|
||||
public void setLCO_TaxPayerType_ID (int LCO_TaxPayerType_ID)
|
||||
{
|
||||
if (LCO_TaxPayerType_ID <= 0) set_Value ("LCO_TaxPayerType_ID", null);
|
||||
else
|
||||
set_Value ("LCO_TaxPayerType_ID", Integer.valueOf(LCO_TaxPayerType_ID));
|
||||
}
|
||||
/** Get Tax Payer Type.
|
||||
@return Tax Payer Type */
|
||||
public int getLCO_TaxPayerType_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_TaxPayerType_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_TaxPayerType_ID */
|
||||
public static final String COLUMNNAME_LCO_TaxPayerType_ID = "LCO_TaxPayerType_ID";
|
||||
|
||||
/** M_DiscountSchema_ID AD_Reference_ID=325 */
|
||||
public static final int M_DISCOUNTSCHEMA_ID_AD_Reference_ID=325;
|
||||
|
|
|
@ -239,24 +239,6 @@ return false;
|
|||
}
|
||||
/** Column name IsTaxIncluded */
|
||||
public static final String COLUMNNAME_IsTaxIncluded = "IsTaxIncluded";
|
||||
/** Set Withholding Category.
|
||||
@param LCO_WithholdingCategory_ID Withholding Category */
|
||||
public void setLCO_WithholdingCategory_ID (int LCO_WithholdingCategory_ID)
|
||||
{
|
||||
if (LCO_WithholdingCategory_ID <= 0) set_Value ("LCO_WithholdingCategory_ID", null);
|
||||
else
|
||||
set_Value ("LCO_WithholdingCategory_ID", Integer.valueOf(LCO_WithholdingCategory_ID));
|
||||
}
|
||||
/** Get Withholding Category.
|
||||
@return Withholding Category */
|
||||
public int getLCO_WithholdingCategory_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_WithholdingCategory_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_WithholdingCategory_ID */
|
||||
public static final String COLUMNNAME_LCO_WithholdingCategory_ID = "LCO_WithholdingCategory_ID";
|
||||
/** Set Name.
|
||||
@param Name Alphanumeric identifier of the entity */
|
||||
public void setName (String Name)
|
||||
|
|
|
@ -1199,20 +1199,4 @@ return ii.intValue();
|
|||
}
|
||||
/** Column name User2_ID */
|
||||
public static final String COLUMNNAME_User2_ID = "User2_ID";
|
||||
/** Set Withholding Amount.
|
||||
@param WithholdingAmt Withholding Amount */
|
||||
public void setWithholdingAmt (BigDecimal WithholdingAmt)
|
||||
{
|
||||
set_Value ("WithholdingAmt", WithholdingAmt);
|
||||
}
|
||||
/** Get Withholding Amount.
|
||||
@return Withholding Amount */
|
||||
public BigDecimal getWithholdingAmt()
|
||||
{
|
||||
BigDecimal bd = (BigDecimal)get_Value("WithholdingAmt");
|
||||
if (bd == null) return Env.ZERO;
|
||||
return bd;
|
||||
}
|
||||
/** Column name WithholdingAmt */
|
||||
public static final String COLUMNNAME_WithholdingAmt = "WithholdingAmt";
|
||||
}
|
||||
|
|
|
@ -162,26 +162,6 @@ return false;
|
|||
}
|
||||
/** Column name IsDefault */
|
||||
public static final String COLUMNNAME_IsDefault = "IsDefault";
|
||||
/** Set Is Withholding.
|
||||
@param IsWithholding Is Withholding */
|
||||
public void setIsWithholding (boolean IsWithholding)
|
||||
{
|
||||
set_Value ("IsWithholding", Boolean.valueOf(IsWithholding));
|
||||
}
|
||||
/** Get Is Withholding.
|
||||
@return Is Withholding */
|
||||
public boolean isWithholding()
|
||||
{
|
||||
Object oo = get_Value("IsWithholding");
|
||||
if (oo != null)
|
||||
{
|
||||
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
|
||||
return "Y".equals(oo);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
/** Column name IsWithholding */
|
||||
public static final String COLUMNNAME_IsWithholding = "IsWithholding";
|
||||
/** Set Name.
|
||||
@param Name Alphanumeric identifier of the entity */
|
||||
public void setName (String Name)
|
||||
|
|
|
@ -594,24 +594,6 @@ return false;
|
|||
}
|
||||
/** Column name IsWebStoreFeatured */
|
||||
public static final String COLUMNNAME_IsWebStoreFeatured = "IsWebStoreFeatured";
|
||||
/** Set Withholding Category.
|
||||
@param LCO_WithholdingCategory_ID Withholding Category */
|
||||
public void setLCO_WithholdingCategory_ID (int LCO_WithholdingCategory_ID)
|
||||
{
|
||||
if (LCO_WithholdingCategory_ID <= 0) set_Value ("LCO_WithholdingCategory_ID", null);
|
||||
else
|
||||
set_Value ("LCO_WithholdingCategory_ID", Integer.valueOf(LCO_WithholdingCategory_ID));
|
||||
}
|
||||
/** Get Withholding Category.
|
||||
@return Withholding Category */
|
||||
public int getLCO_WithholdingCategory_ID()
|
||||
{
|
||||
Integer ii = (Integer)get_Value("LCO_WithholdingCategory_ID");
|
||||
if (ii == null) return 0;
|
||||
return ii.intValue();
|
||||
}
|
||||
/** Column name LCO_WithholdingCategory_ID */
|
||||
public static final String COLUMNNAME_LCO_WithholdingCategory_ID = "LCO_WithholdingCategory_ID";
|
||||
/** Set Attribute Set Instance.
|
||||
@param M_AttributeSetInstance_ID Product Attribute Set Instance */
|
||||
public void setM_AttributeSetInstance_ID (int M_AttributeSetInstance_ID)
|
||||
|
|
Loading…
Reference in New Issue