Skip to content

Commit

Permalink
IDEMPIERE-5245 Model generate after latest dictionary fixes (idempier…
Browse files Browse the repository at this point in the history
…e#2195)

* IDEMPIERE-5245 Model generate after latest dictionary fixes

* - serialVersionUID
  • Loading branch information
CarlosRuiz-globalqss authored Jan 17, 2024
1 parent 9e33178 commit e2c9ecf
Show file tree
Hide file tree
Showing 23 changed files with 91 additions and 92 deletions.
4 changes: 2 additions & 2 deletions org.adempiere.base/src/org/compiere/model/I_AD_Role.java
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ public interface I_AD_Role
/** Column name Allow_Info_InOut */
public static final String COLUMNNAME_Allow_Info_InOut = "Allow_Info_InOut";

/** Set Allow Info InOut */
/** Set Allow Shipment Info */
public void setAllow_Info_InOut (boolean Allow_Info_InOut);

/** Get Allow Info InOut */
/** Get Allow Shipment Info */
public boolean isAllow_Info_InOut();

/** Column name Allow_Info_Invoice */
Expand Down
4 changes: 2 additions & 2 deletions org.adempiere.base/src/org/compiere/model/I_A_Asset.java
Original file line number Diff line number Diff line change
Expand Up @@ -708,12 +708,12 @@ public interface I_A_Asset
public static final String COLUMNNAME_NextMaintenenceUnit = "NextMaintenenceUnit";

/** Set Next Unit.
* Next Maintenence Unit
* Next Maintenance Unit
*/
public void setNextMaintenenceUnit (int NextMaintenenceUnit);

/** Get Next Unit.
* Next Maintenence Unit
* Next Maintenance Unit
*/
public int getNextMaintenenceUnit();

Expand Down
26 changes: 13 additions & 13 deletions org.adempiere.base/src/org/compiere/model/I_S_TimeExpenseLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,19 @@ public interface I_S_TimeExpenseLine
*/
public int getLine();

/** Column name LineNetAmt */
public static final String COLUMNNAME_LineNetAmt = "LineNetAmt";

/** Set Line Amount.
* Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public void setLineNetAmt (BigDecimal LineNetAmt);

/** Get Line Amount.
* Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public BigDecimal getLineNetAmt();

/** Column name M_Product_ID */
public static final String COLUMNNAME_M_Product_ID = "M_Product_ID";

Expand Down Expand Up @@ -373,19 +386,6 @@ public interface I_S_TimeExpenseLine
*/
public String getNote();

/** Column name LineNetAmt */
public static final String COLUMNNAME_LineNetAmt = "LineNetAmt";

/** Set Line Amount.
* Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public void setLineNetAmt (BigDecimal LineNetAmt);

/** Get Line Amount.
* Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public BigDecimal getLineNetAmt();

/** Column name PriceInvoiced */
public static final String COLUMNNAME_PriceInvoiced = "PriceInvoiced";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ public interface I_T_BOM_Indented
public static final String COLUMNNAME_QtyBOM = "QtyBOM";

/** Set Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public void setQtyBOM (BigDecimal QtyBOM);

/** Get Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public BigDecimal getQtyBOM();

Expand Down
10 changes: 5 additions & 5 deletions org.adempiere.base/src/org/compiere/model/X_AD_Role.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class X_AD_Role extends PO implements I_AD_Role, I_Persistent
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_AD_Role (Properties ctx, int AD_Role_ID, String trxName)
Expand Down Expand Up @@ -490,16 +490,16 @@ public boolean isAllow_Info_BPartner()
return false;
}

/** Set Allow Info InOut.
@param Allow_Info_InOut Allow Info InOut
/** Set Allow Shipment Info.
@param Allow_Info_InOut Allow Shipment Info
*/
public void setAllow_Info_InOut (boolean Allow_Info_InOut)
{
set_Value (COLUMNNAME_Allow_Info_InOut, Boolean.valueOf(Allow_Info_InOut));
}

/** Get Allow Info InOut.
@return Allow Info InOut */
/** Get Allow Shipment Info.
@return Allow Shipment Info */
public boolean isAllow_Info_InOut()
{
Object oo = get_Value(COLUMNNAME_Allow_Info_InOut);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class X_AD_TablePartition extends PO implements I_AD_TablePartition, I_Pe
/**
*
*/
private static final long serialVersionUID = 20231227L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_AD_TablePartition (Properties ctx, int AD_TablePartition_ID, String trxName)
Expand Down Expand Up @@ -218,7 +218,7 @@ public String getAD_TablePartition_UU()
*/
public void setExpressionPartition (String ExpressionPartition)
{
set_Value (COLUMNNAME_ExpressionPartition, ExpressionPartition);
set_ValueNoCheck (COLUMNNAME_ExpressionPartition, ExpressionPartition);
}

/** Get Expression.
Expand Down Expand Up @@ -257,7 +257,7 @@ public boolean isPartitionAttached()
*/
public void setName (String Name)
{
set_Value (COLUMNNAME_Name, Name);
set_ValueNoCheck (COLUMNNAME_Name, Name);
}

/** Get Name.
Expand Down
6 changes: 3 additions & 3 deletions org.adempiere.base/src/org/compiere/model/X_A_Asset.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class X_A_Asset extends PO implements I_A_Asset, I_Persistent
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_A_Asset (Properties ctx, int A_Asset_ID, String trxName)
Expand Down Expand Up @@ -1224,15 +1224,15 @@ public Timestamp getNextMaintenenceDate()
}

/** Set Next Unit.
@param NextMaintenenceUnit Next Maintenence Unit
@param NextMaintenenceUnit Next Maintenance Unit
*/
public void setNextMaintenenceUnit (int NextMaintenenceUnit)
{
set_Value (COLUMNNAME_NextMaintenenceUnit, Integer.valueOf(NextMaintenenceUnit));
}

/** Get Next Unit.
@return Next Maintenence Unit
@return Next Maintenance Unit
*/
public int getNextMaintenenceUnit()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class X_A_Asset_Reval_Entry extends PO implements I_A_Asset_Reval_Entry,
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_A_Asset_Reval_Entry (Properties ctx, int A_Asset_Reval_Entry_ID, String trxName)
Expand Down Expand Up @@ -231,8 +231,8 @@ public String getA_Reval_Cal_Method()

/** A_Reval_Effective_Date AD_Reference_ID=53261 */
public static final int A_REVAL_EFFECTIVE_DATE_AD_Reference_ID=53261;
/** Date Aquired = DA */
public static final String A_REVAL_EFFECTIVE_DATE_DateAquired = "DA";
/** Date Acquired = DA */
public static final String A_REVAL_EFFECTIVE_DATE_DateAcquired = "DA";
/** Revaluation Date = RD */
public static final String A_REVAL_EFFECTIVE_DATE_RevaluationDate = "RD";
/** Date Depreciation Started = SD */
Expand Down
6 changes: 3 additions & 3 deletions org.adempiere.base/src/org/compiere/model/X_C_Project.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class X_C_Project extends PO implements I_C_Project, I_Persistent
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_C_Project (Properties ctx, int C_Project_ID, String trxName)
Expand Down Expand Up @@ -1019,8 +1019,8 @@ public String getProjectLineLevel()
public static final int PROJINVOICERULE_AD_Reference_ID=383;
/** None = - */
public static final String PROJINVOICERULE_None = "-";
/** Time&Material max Comitted = c */
public static final String PROJINVOICERULE_TimeMaterialMaxComitted = "c";
/** Time&Material max Committed = c */
public static final String PROJINVOICERULE_TimeMaterialMaxCommitted = "c";
/** Committed Amount = C */
public static final String PROJINVOICERULE_CommittedAmount = "C";
/** Product Quantity = P */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class X_C_ProjectPhase extends PO implements I_C_ProjectPhase, I_Persiste
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_C_ProjectPhase (Properties ctx, int C_ProjectPhase_ID, String trxName)
Expand Down Expand Up @@ -480,8 +480,8 @@ public BigDecimal getPriceActual()
public static final int PROJINVOICERULE_AD_Reference_ID=383;
/** None = - */
public static final String PROJINVOICERULE_None = "-";
/** Time&Material max Comitted = c */
public static final String PROJINVOICERULE_TimeMaterialMaxComitted = "c";
/** Time&Material max Committed = c */
public static final String PROJINVOICERULE_TimeMaterialMaxCommitted = "c";
/** Committed Amount = C */
public static final String PROJINVOICERULE_CommittedAmount = "C";
/** Product Quantity = P */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class X_C_ProjectTask extends PO implements I_C_ProjectTask, I_Persistent
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_C_ProjectTask (Properties ctx, int C_ProjectTask_ID, String trxName)
Expand Down Expand Up @@ -346,8 +346,8 @@ public BigDecimal getPlannedAmt()
public static final int PROJINVOICERULE_AD_Reference_ID=383;
/** None = - */
public static final String PROJINVOICERULE_None = "-";
/** Time&Material max Comitted = c */
public static final String PROJINVOICERULE_TimeMaterialMaxComitted = "c";
/** Time&Material max Committed = c */
public static final String PROJINVOICERULE_TimeMaterialMaxCommitted = "c";
/** Committed Amount = C */
public static final String PROJINVOICERULE_CommittedAmount = "C";
/** Product Quantity = P */
Expand Down
41 changes: 20 additions & 21 deletions org.adempiere.base/src/org/compiere/model/X_S_TimeExpenseLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class X_S_TimeExpenseLine extends PO implements I_S_TimeExpenseLine, I_Pe
/**
*
*/
private static final long serialVersionUID = 20240102L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_S_TimeExpenseLine (Properties ctx, int S_TimeExpenseLine_ID, String trxName)
Expand Down Expand Up @@ -578,6 +578,25 @@ public KeyNamePair getKeyNamePair()
return new KeyNamePair(get_ID(), String.valueOf(getLine()));
}

/** Set Line Amount.
@param LineNetAmt Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public void setLineNetAmt (BigDecimal LineNetAmt)
{
set_Value (COLUMNNAME_LineNetAmt, LineNetAmt);
}

/** Get Line Amount.
@return Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public BigDecimal getLineNetAmt()
{
BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_LineNetAmt);
if (bd == null)
return Env.ZERO;
return bd;
}

public org.compiere.model.I_M_Product getM_Product() throws RuntimeException
{
return (org.compiere.model.I_M_Product)MTable.get(getCtx(), org.compiere.model.I_M_Product.Table_ID)
Expand Down Expand Up @@ -622,26 +641,6 @@ public String getNote()
return (String)get_Value(COLUMNNAME_Note);
}

/** Set Line Amount.
@param LineNetAmt
Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public void setLineNetAmt (BigDecimal LineNetAmt)
{
set_Value (COLUMNNAME_LineNetAmt, LineNetAmt);
}

/** Get Line Amount.
@return Line Extended Amount (Quantity * Actual Price) without Freight and Charges
*/
public BigDecimal getLineNetAmt ()
{
BigDecimal bd = (BigDecimal)get_Value(COLUMNNAME_LineNetAmt);
if (bd == null)
return Env.ZERO;
return bd;
}

/** Set Price Invoiced.
@param PriceInvoiced The priced invoiced to the customer (in the currency of the customer's AR price list) - 0 for default price
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class X_T_BOM_Indented extends PO implements I_T_BOM_Indented, I_Persiste
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_T_BOM_Indented (Properties ctx, int T_BOM_Indented_ID, String trxName)
Expand Down Expand Up @@ -379,15 +379,15 @@ public BigDecimal getQty()
}

/** Set Quantity.
@param QtyBOM Indicate the Quantity use in this BOM
@param QtyBOM Indicate the Quantity use in this BOM
*/
public void setQtyBOM (BigDecimal QtyBOM)
{
set_Value (COLUMNNAME_QtyBOM, QtyBOM);
}

/** Get Quantity.
@return Indicate the Quantity use in this BOM
@return Indicate the Quantity use in this BOM
*/
public BigDecimal getQtyBOM()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class X_U_POSTerminal extends PO implements I_U_POSTerminal, I_Persistent
/**
*
*/
private static final long serialVersionUID = 20231222L;
private static final long serialVersionUID = 20240116;

/** Standard Constructor */
public X_U_POSTerminal (Properties ctx, int U_POSTerminal_ID, String trxName)
Expand Down
4 changes: 2 additions & 2 deletions org.adempiere.base/src/org/eevolution/model/I_HR_Job.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,10 @@ public interface I_HR_Job
/** Column name JobCant */
public static final String COLUMNNAME_JobCant = "JobCant";

/** Set Job Cant */
/** Set Job Qty */
public void setJobCant (int JobCant);

/** Get Job Cant */
/** Get Job Qty */
public int getJobCant();

/** Column name Name */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -441,12 +441,12 @@ public interface I_PP_Order_BOMLine
public static final String COLUMNNAME_QtyBOM = "QtyBOM";

/** Set Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public void setQtyBOM (BigDecimal QtyBOM);

/** Get Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public BigDecimal getQtyBOM();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,12 +380,12 @@ public interface I_PP_Product_BOMLine
public static final String COLUMNNAME_QtyBOM = "QtyBOM";

/** Set Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public void setQtyBOM (BigDecimal QtyBOM);

/** Get Quantity.
* Indicate the Quantity use in this BOM
* Indicate the Quantity use in this BOM
*/
public BigDecimal getQtyBOM();

Expand Down
Loading

0 comments on commit e2c9ecf

Please sign in to comment.