Skip to content

Commit

Permalink
Fixed error with Import Product definition for Volume column
Browse files Browse the repository at this point in the history
  • Loading branch information
yamelsenih committed Dec 12, 2023
1 parent 54a334c commit 6657563
Show file tree
Hide file tree
Showing 3 changed files with 185 additions and 173 deletions.
138 changes: 69 additions & 69 deletions base/src/org/adempiere/core/domains/models/I_I_Product.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,21 +107,6 @@ public interface I_I_Product

public org.adempiere.core.domains.models.I_C_Currency getC_Currency() throws RuntimeException;

/** Column name C_UOM_ID */
public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID";

/** Set UOM.
* Unit of Measure
*/
public void setC_UOM_ID (int C_UOM_ID);

/** Get UOM.
* Unit of Measure
*/
public int getC_UOM_ID();

public org.adempiere.core.domains.models.I_C_UOM getC_UOM() throws RuntimeException;

/** Column name Classification */
public static final String COLUMNNAME_Classification = "Classification";

Expand Down Expand Up @@ -164,6 +149,21 @@ public interface I_I_Product
*/
public int getCreatedBy();

/** Column name C_UOM_ID */
public static final String COLUMNNAME_C_UOM_ID = "C_UOM_ID";

/** Set UOM.
* Unit of Measure
*/
public void setC_UOM_ID (int C_UOM_ID);

/** Get UOM.
* Unit of Measure
*/
public int getC_UOM_ID();

public org.adempiere.core.domains.models.I_C_UOM getC_UOM() throws RuntimeException;

/** Column name DeliveryTime_Promised */
public static final String COLUMNNAME_DeliveryTime_Promised = "DeliveryTime_Promised";

Expand Down Expand Up @@ -294,19 +294,6 @@ public interface I_I_Product
*/
public boolean isI_IsImported();

/** Column name I_Product_ID */
public static final String COLUMNNAME_I_Product_ID = "I_Product_ID";

/** Set Import Product.
* Import Item or Service
*/
public void setI_Product_ID (int I_Product_ID);

/** Get Import Product.
* Import Item or Service
*/
public int getI_Product_ID();

/** Column name ImageURL */
public static final String COLUMNNAME_ImageURL = "ImageURL";

Expand All @@ -320,6 +307,19 @@ public interface I_I_Product
*/
public String getImageURL();

/** Column name I_Product_ID */
public static final String COLUMNNAME_I_Product_ID = "I_Product_ID";

/** Set Import Product.
* Import Item or Service
*/
public void setI_Product_ID (int I_Product_ID);

/** Get Import Product.
* Import Item or Service
*/
public int getI_Product_ID();

/** Column name IsActive */
public static final String COLUMNNAME_IsActive = "IsActive";

Expand All @@ -346,6 +346,19 @@ public interface I_I_Product
*/
public String getISO_Code();

/** Column name Manufacturer */
public static final String COLUMNNAME_Manufacturer = "Manufacturer";

/** Set Manufacturer.
* Manufacturer of the Product
*/
public void setManufacturer (String Manufacturer);

/** Get Manufacturer.
* Manufacturer of the Product
*/
public String getManufacturer();

/** Column name M_Product_Category_ID */
public static final String COLUMNNAME_M_Product_Category_ID = "M_Product_Category_ID";

Expand Down Expand Up @@ -421,19 +434,6 @@ public interface I_I_Product

public org.adempiere.core.domains.models.I_M_Product getM_Product() throws RuntimeException;

/** Column name Manufacturer */
public static final String COLUMNNAME_Manufacturer = "Manufacturer";

/** Set Manufacturer.
* Manufacturer of the Product
*/
public void setManufacturer (String Manufacturer);

/** Get Manufacturer.
* Manufacturer of the Product
*/
public String getManufacturer();

/** Column name Name */
public static final String COLUMNNAME_Name = "Name";

Expand Down Expand Up @@ -569,32 +569,6 @@ public interface I_I_Product
/** Get Product Category Key */
public String getProductCategory_Value();

/** Column name ProductClass_Name */
public static final String COLUMNNAME_ProductClass_Name = "ProductClass_Name";

/** Set Product Class Name.
* The key value for the product class
*/
public void setProductClass_Name (String ProductClass_Name);

/** Get Product Class Name.
* The key value for the product class
*/
public String getProductClass_Name();

/** Column name ProductClass_Value */
public static final String COLUMNNAME_ProductClass_Value = "ProductClass_Value";

/** Set Product Class Key.
* The key value for the product class
*/
public void setProductClass_Value (String ProductClass_Value);

/** Get Product Class Key.
* The key value for the product class
*/
public String getProductClass_Value();

/** Column name ProductClassification_Name */
public static final String COLUMNNAME_ProductClassification_Name = "ProductClassification_Name";

Expand All @@ -621,6 +595,32 @@ public interface I_I_Product
*/
public String getProductClassification_Value();

/** Column name ProductClass_Name */
public static final String COLUMNNAME_ProductClass_Name = "ProductClass_Name";

/** Set Product Class Name.
* The key value for the product class
*/
public void setProductClass_Name (String ProductClass_Name);

/** Get Product Class Name.
* The key value for the product class
*/
public String getProductClass_Name();

/** Column name ProductClass_Value */
public static final String COLUMNNAME_ProductClass_Value = "ProductClass_Value";

/** Set Product Class Key.
* The key value for the product class
*/
public void setProductClass_Value (String ProductClass_Value);

/** Get Product Class Key.
* The key value for the product class
*/
public String getProductClass_Value();

/** Column name ProductGroup_Name */
public static final String COLUMNNAME_ProductGroup_Name = "ProductGroup_Name";

Expand Down Expand Up @@ -825,12 +825,12 @@ public interface I_I_Product
/** Set Volume.
* Volume of a product
*/
public void setVolume (int Volume);
public void setVolume (BigDecimal Volume);

/** Get Volume.
* Volume of a product
*/
public int getVolume();
public BigDecimal getVolume();

/** Column name Weight */
public static final String COLUMNNAME_Weight = "Weight";
Expand Down
Loading

0 comments on commit 6657563

Please sign in to comment.