Generate all models using latest Model Generator classes.
It's good from time to time to do this task, mainly if we want to modify/improve the Model Generator. So, here are the models up2date.
This commit is contained in:
parent
0fe2fb7e4a
commit
8659c3db52
|
@ -207,22 +207,6 @@ public interface I_AD_ClientInfo
|
|||
|
||||
public I_C_Calendar getC_Calendar() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_UOM_Length_ID */
|
||||
public static final String COLUMNNAME_C_UOM_Length_ID = "C_UOM_Length_ID";
|
||||
|
||||
|
@ -275,6 +259,22 @@ public interface I_AD_ClientInfo
|
|||
*/
|
||||
public int getC_UOM_Weight_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -327,12 +327,12 @@ public interface I_AD_Column
|
|||
/** Column name IsAllowLogging */
|
||||
public static final String COLUMNNAME_IsAllowLogging = "IsAllowLogging";
|
||||
|
||||
/** Set IsAllowLogging.
|
||||
/** Set Allow Logging.
|
||||
* Determine if a column must be recorded into the change log
|
||||
*/
|
||||
public void setIsAllowLogging (boolean IsAllowLogging);
|
||||
|
||||
/** Get IsAllowLogging.
|
||||
/** Get Allow Logging.
|
||||
* Determine if a column must be recorded into the change log
|
||||
*/
|
||||
public boolean isAllowLogging();
|
||||
|
|
|
@ -64,6 +64,19 @@ public interface I_AD_Field
|
|||
|
||||
public I_AD_Column getAD_Column() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Field_ID */
|
||||
public static final String COLUMNNAME_AD_Field_ID = "AD_Field_ID";
|
||||
|
||||
/** Set Field.
|
||||
* Field on a database table
|
||||
*/
|
||||
public void setAD_Field_ID (int AD_Field_ID);
|
||||
|
||||
/** Get Field.
|
||||
* Field on a database table
|
||||
*/
|
||||
public int getAD_Field_ID();
|
||||
|
||||
/** Column name AD_FieldGroup_ID */
|
||||
public static final String COLUMNNAME_AD_FieldGroup_ID = "AD_FieldGroup_ID";
|
||||
|
||||
|
@ -79,19 +92,6 @@ public interface I_AD_Field
|
|||
|
||||
public I_AD_FieldGroup getAD_FieldGroup() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Field_ID */
|
||||
public static final String COLUMNNAME_AD_Field_ID = "AD_Field_ID";
|
||||
|
||||
/** Set Field.
|
||||
* Field on a database table
|
||||
*/
|
||||
public void setAD_Field_ID (int AD_Field_ID);
|
||||
|
||||
/** Get Field.
|
||||
* Field on a database table
|
||||
*/
|
||||
public int getAD_Field_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
|
|
@ -381,6 +381,81 @@ public interface I_AD_Issue
|
|||
*/
|
||||
public String getProfileInfo();
|
||||
|
||||
/** Column name R_IssueKnown_ID */
|
||||
public static final String COLUMNNAME_R_IssueKnown_ID = "R_IssueKnown_ID";
|
||||
|
||||
/** Set Known Issue.
|
||||
* Known Issue
|
||||
*/
|
||||
public void setR_IssueKnown_ID (int R_IssueKnown_ID);
|
||||
|
||||
/** Get Known Issue.
|
||||
* Known Issue
|
||||
*/
|
||||
public int getR_IssueKnown_ID();
|
||||
|
||||
public I_R_IssueKnown getR_IssueKnown() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueProject_ID */
|
||||
public static final String COLUMNNAME_R_IssueProject_ID = "R_IssueProject_ID";
|
||||
|
||||
/** Set Issue Project.
|
||||
* Implementation Projects
|
||||
*/
|
||||
public void setR_IssueProject_ID (int R_IssueProject_ID);
|
||||
|
||||
/** Get Issue Project.
|
||||
* Implementation Projects
|
||||
*/
|
||||
public int getR_IssueProject_ID();
|
||||
|
||||
public I_R_IssueProject getR_IssueProject() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueSystem_ID */
|
||||
public static final String COLUMNNAME_R_IssueSystem_ID = "R_IssueSystem_ID";
|
||||
|
||||
/** Set Issue System.
|
||||
* System creating the issue
|
||||
*/
|
||||
public void setR_IssueSystem_ID (int R_IssueSystem_ID);
|
||||
|
||||
/** Get Issue System.
|
||||
* System creating the issue
|
||||
*/
|
||||
public int getR_IssueSystem_ID();
|
||||
|
||||
public I_R_IssueSystem getR_IssueSystem() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueUser_ID */
|
||||
public static final String COLUMNNAME_R_IssueUser_ID = "R_IssueUser_ID";
|
||||
|
||||
/** Set IssueUser.
|
||||
* User who reported issues
|
||||
*/
|
||||
public void setR_IssueUser_ID (int R_IssueUser_ID);
|
||||
|
||||
/** Get IssueUser.
|
||||
* User who reported issues
|
||||
*/
|
||||
public int getR_IssueUser_ID();
|
||||
|
||||
public I_R_IssueUser getR_IssueUser() throws RuntimeException;
|
||||
|
||||
/** Column name R_Request_ID */
|
||||
public static final String COLUMNNAME_R_Request_ID = "R_Request_ID";
|
||||
|
||||
/** Set Request.
|
||||
* Request from a Business Partner or Prospect
|
||||
*/
|
||||
public void setR_Request_ID (int R_Request_ID);
|
||||
|
||||
/** Get Request.
|
||||
* Request from a Business Partner or Prospect
|
||||
*/
|
||||
public int getR_Request_ID();
|
||||
|
||||
public I_R_Request getR_Request() throws RuntimeException;
|
||||
|
||||
/** Column name Record_ID */
|
||||
public static final String COLUMNNAME_Record_ID = "Record_ID";
|
||||
|
||||
|
@ -472,81 +547,6 @@ public interface I_AD_Issue
|
|||
*/
|
||||
public String getResponseText();
|
||||
|
||||
/** Column name R_IssueKnown_ID */
|
||||
public static final String COLUMNNAME_R_IssueKnown_ID = "R_IssueKnown_ID";
|
||||
|
||||
/** Set Known Issue.
|
||||
* Known Issue
|
||||
*/
|
||||
public void setR_IssueKnown_ID (int R_IssueKnown_ID);
|
||||
|
||||
/** Get Known Issue.
|
||||
* Known Issue
|
||||
*/
|
||||
public int getR_IssueKnown_ID();
|
||||
|
||||
public I_R_IssueKnown getR_IssueKnown() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueProject_ID */
|
||||
public static final String COLUMNNAME_R_IssueProject_ID = "R_IssueProject_ID";
|
||||
|
||||
/** Set Issue Project.
|
||||
* Implementation Projects
|
||||
*/
|
||||
public void setR_IssueProject_ID (int R_IssueProject_ID);
|
||||
|
||||
/** Get Issue Project.
|
||||
* Implementation Projects
|
||||
*/
|
||||
public int getR_IssueProject_ID();
|
||||
|
||||
public I_R_IssueProject getR_IssueProject() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueSystem_ID */
|
||||
public static final String COLUMNNAME_R_IssueSystem_ID = "R_IssueSystem_ID";
|
||||
|
||||
/** Set Issue System.
|
||||
* System creating the issue
|
||||
*/
|
||||
public void setR_IssueSystem_ID (int R_IssueSystem_ID);
|
||||
|
||||
/** Get Issue System.
|
||||
* System creating the issue
|
||||
*/
|
||||
public int getR_IssueSystem_ID();
|
||||
|
||||
public I_R_IssueSystem getR_IssueSystem() throws RuntimeException;
|
||||
|
||||
/** Column name R_IssueUser_ID */
|
||||
public static final String COLUMNNAME_R_IssueUser_ID = "R_IssueUser_ID";
|
||||
|
||||
/** Set IssueUser.
|
||||
* User who reported issues
|
||||
*/
|
||||
public void setR_IssueUser_ID (int R_IssueUser_ID);
|
||||
|
||||
/** Get IssueUser.
|
||||
* User who reported issues
|
||||
*/
|
||||
public int getR_IssueUser_ID();
|
||||
|
||||
public I_R_IssueUser getR_IssueUser() throws RuntimeException;
|
||||
|
||||
/** Column name R_Request_ID */
|
||||
public static final String COLUMNNAME_R_Request_ID = "R_Request_ID";
|
||||
|
||||
/** Set Request.
|
||||
* Request from a Business Partner or Prospect
|
||||
*/
|
||||
public void setR_Request_ID (int R_Request_ID);
|
||||
|
||||
/** Get Request.
|
||||
* Request from a Business Partner or Prospect
|
||||
*/
|
||||
public int getR_Request_ID();
|
||||
|
||||
public I_R_Request getR_Request() throws RuntimeException;
|
||||
|
||||
/** Column name SourceClassName */
|
||||
public static final String COLUMNNAME_SourceClassName = "SourceClassName";
|
||||
|
||||
|
|
|
@ -49,19 +49,6 @@ public interface I_AD_LabelPrinterFunction
|
|||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_LabelPrinterFunction_ID */
|
||||
public static final String COLUMNNAME_AD_LabelPrinterFunction_ID = "AD_LabelPrinterFunction_ID";
|
||||
|
||||
/** Set Label printer Function.
|
||||
* Function of Label Printer
|
||||
*/
|
||||
public void setAD_LabelPrinterFunction_ID (int AD_LabelPrinterFunction_ID);
|
||||
|
||||
/** Get Label printer Function.
|
||||
* Function of Label Printer
|
||||
*/
|
||||
public int getAD_LabelPrinterFunction_ID();
|
||||
|
||||
/** Column name AD_LabelPrinter_ID */
|
||||
public static final String COLUMNNAME_AD_LabelPrinter_ID = "AD_LabelPrinter_ID";
|
||||
|
||||
|
@ -77,6 +64,19 @@ public interface I_AD_LabelPrinterFunction
|
|||
|
||||
public I_AD_LabelPrinter getAD_LabelPrinter() throws RuntimeException;
|
||||
|
||||
/** Column name AD_LabelPrinterFunction_ID */
|
||||
public static final String COLUMNNAME_AD_LabelPrinterFunction_ID = "AD_LabelPrinterFunction_ID";
|
||||
|
||||
/** Set Label printer Function.
|
||||
* Function of Label Printer
|
||||
*/
|
||||
public void setAD_LabelPrinterFunction_ID (int AD_LabelPrinterFunction_ID);
|
||||
|
||||
/** Get Label printer Function.
|
||||
* Function of Label Printer
|
||||
*/
|
||||
public int getAD_LabelPrinterFunction_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
|
|
@ -66,12 +66,12 @@ public interface I_AD_OrgInfo
|
|||
public static final String COLUMNNAME_AD_OrgType_ID = "AD_OrgType_ID";
|
||||
|
||||
/** Set Organization Type.
|
||||
* Organization Type
|
||||
* Organization Type allows you to categorize your organizations
|
||||
*/
|
||||
public void setAD_OrgType_ID (int AD_OrgType_ID);
|
||||
|
||||
/** Get Organization Type.
|
||||
* Organization Type
|
||||
* Organization Type allows you to categorize your organizations
|
||||
*/
|
||||
public int getAD_OrgType_ID();
|
||||
|
||||
|
|
|
@ -128,15 +128,6 @@ public interface I_AD_PInstance_Para
|
|||
*/
|
||||
public boolean isActive();
|
||||
|
||||
/** Column name ParameterName */
|
||||
public static final String COLUMNNAME_ParameterName = "ParameterName";
|
||||
|
||||
/** Set Parameter Name */
|
||||
public void setParameterName (String ParameterName);
|
||||
|
||||
/** Get Parameter Name */
|
||||
public String getParameterName();
|
||||
|
||||
/** Column name P_Date */
|
||||
public static final String COLUMNNAME_P_Date = "P_Date";
|
||||
|
||||
|
@ -215,6 +206,15 @@ public interface I_AD_PInstance_Para
|
|||
*/
|
||||
public String getP_String_To();
|
||||
|
||||
/** Column name ParameterName */
|
||||
public static final String COLUMNNAME_ParameterName = "ParameterName";
|
||||
|
||||
/** Set Parameter Name */
|
||||
public void setParameterName (String ParameterName);
|
||||
|
||||
/** Get Parameter Name */
|
||||
public String getParameterName();
|
||||
|
||||
/** Column name SeqNo */
|
||||
public static final String COLUMNNAME_SeqNo = "SeqNo";
|
||||
|
||||
|
|
|
@ -107,19 +107,6 @@ public interface I_AD_PrintFormatItem
|
|||
|
||||
public I_AD_PrintFont getAD_PrintFont() throws RuntimeException;
|
||||
|
||||
/** Column name AD_PrintFormatChild_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFormatChild_ID = "AD_PrintFormatChild_ID";
|
||||
|
||||
/** Set Included Print Format.
|
||||
* Print format that is included here.
|
||||
*/
|
||||
public void setAD_PrintFormatChild_ID (int AD_PrintFormatChild_ID);
|
||||
|
||||
/** Get Included Print Format.
|
||||
* Print format that is included here.
|
||||
*/
|
||||
public int getAD_PrintFormatChild_ID();
|
||||
|
||||
/** Column name AD_PrintFormat_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFormat_ID = "AD_PrintFormat_ID";
|
||||
|
||||
|
@ -135,6 +122,19 @@ public interface I_AD_PrintFormatItem
|
|||
|
||||
public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException;
|
||||
|
||||
/** Column name AD_PrintFormatChild_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFormatChild_ID = "AD_PrintFormatChild_ID";
|
||||
|
||||
/** Set Included Print Format.
|
||||
* Print format that is included here.
|
||||
*/
|
||||
public void setAD_PrintFormatChild_ID (int AD_PrintFormatChild_ID);
|
||||
|
||||
/** Get Included Print Format.
|
||||
* Print format that is included here.
|
||||
*/
|
||||
public int getAD_PrintFormatChild_ID();
|
||||
|
||||
/** Column name AD_PrintFormatItem_ID */
|
||||
public static final String COLUMNNAME_AD_PrintFormatItem_ID = "AD_PrintFormatItem_ID";
|
||||
|
||||
|
|
|
@ -106,6 +106,19 @@ public interface I_AD_PrintGraph
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name Data_PrintFormatItem_ID */
|
||||
public static final String COLUMNNAME_Data_PrintFormatItem_ID = "Data_PrintFormatItem_ID";
|
||||
|
||||
/** Set Data Column.
|
||||
* Data Column for Pie and Line Charts
|
||||
*/
|
||||
public void setData_PrintFormatItem_ID (int Data_PrintFormatItem_ID);
|
||||
|
||||
/** Get Data Column.
|
||||
* Data Column for Pie and Line Charts
|
||||
*/
|
||||
public int getData_PrintFormatItem_ID();
|
||||
|
||||
/** Column name Data1_PrintFormatItem_ID */
|
||||
public static final String COLUMNNAME_Data1_PrintFormatItem_ID = "Data1_PrintFormatItem_ID";
|
||||
|
||||
|
@ -158,19 +171,6 @@ public interface I_AD_PrintGraph
|
|||
*/
|
||||
public int getData4_PrintFormatItem_ID();
|
||||
|
||||
/** Column name Data_PrintFormatItem_ID */
|
||||
public static final String COLUMNNAME_Data_PrintFormatItem_ID = "Data_PrintFormatItem_ID";
|
||||
|
||||
/** Set Data Column.
|
||||
* Data Column for Pie and Line Charts
|
||||
*/
|
||||
public void setData_PrintFormatItem_ID (int Data_PrintFormatItem_ID);
|
||||
|
||||
/** Get Data Column.
|
||||
* Data Column for Pie and Line Charts
|
||||
*/
|
||||
public int getData_PrintFormatItem_ID();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
|
|
|
@ -158,6 +158,19 @@ public interface I_AD_PrintTableFormat
|
|||
*/
|
||||
public String getFooterRight();
|
||||
|
||||
/** Column name Funct_PrintFont_ID */
|
||||
public static final String COLUMNNAME_Funct_PrintFont_ID = "Funct_PrintFont_ID";
|
||||
|
||||
/** Set Function Font.
|
||||
* Function row Font
|
||||
*/
|
||||
public void setFunct_PrintFont_ID (int Funct_PrintFont_ID);
|
||||
|
||||
/** Get Function Font.
|
||||
* Function row Font
|
||||
*/
|
||||
public int getFunct_PrintFont_ID();
|
||||
|
||||
/** Column name FunctBG_PrintColor_ID */
|
||||
public static final String COLUMNNAME_FunctBG_PrintColor_ID = "FunctBG_PrintColor_ID";
|
||||
|
||||
|
@ -184,18 +197,18 @@ public interface I_AD_PrintTableFormat
|
|||
*/
|
||||
public int getFunctFG_PrintColor_ID();
|
||||
|
||||
/** Column name Funct_PrintFont_ID */
|
||||
public static final String COLUMNNAME_Funct_PrintFont_ID = "Funct_PrintFont_ID";
|
||||
/** Column name Hdr_PrintFont_ID */
|
||||
public static final String COLUMNNAME_Hdr_PrintFont_ID = "Hdr_PrintFont_ID";
|
||||
|
||||
/** Set Function Font.
|
||||
* Function row Font
|
||||
/** Set Header Row Font.
|
||||
* Header row Font
|
||||
*/
|
||||
public void setFunct_PrintFont_ID (int Funct_PrintFont_ID);
|
||||
public void setHdr_PrintFont_ID (int Hdr_PrintFont_ID);
|
||||
|
||||
/** Get Function Font.
|
||||
* Function row Font
|
||||
/** Get Header Row Font.
|
||||
* Header row Font
|
||||
*/
|
||||
public int getFunct_PrintFont_ID();
|
||||
public int getHdr_PrintFont_ID();
|
||||
|
||||
/** Column name HdrLine_PrintColor_ID */
|
||||
public static final String COLUMNNAME_HdrLine_PrintColor_ID = "HdrLine_PrintColor_ID";
|
||||
|
@ -210,19 +223,6 @@ public interface I_AD_PrintTableFormat
|
|||
*/
|
||||
public int getHdrLine_PrintColor_ID();
|
||||
|
||||
/** Column name Hdr_PrintFont_ID */
|
||||
public static final String COLUMNNAME_Hdr_PrintFont_ID = "Hdr_PrintFont_ID";
|
||||
|
||||
/** Set Header Row Font.
|
||||
* Header row Font
|
||||
*/
|
||||
public void setHdr_PrintFont_ID (int Hdr_PrintFont_ID);
|
||||
|
||||
/** Get Header Row Font.
|
||||
* Header row Font
|
||||
*/
|
||||
public int getHdr_PrintFont_ID();
|
||||
|
||||
/** Column name HdrStroke */
|
||||
public static final String COLUMNNAME_HdrStroke = "HdrStroke";
|
||||
|
||||
|
|
|
@ -161,6 +161,19 @@ public interface I_AD_Process
|
|||
*/
|
||||
public String getClassname();
|
||||
|
||||
/** Column name CopyFromProcess */
|
||||
public static final String COLUMNNAME_CopyFromProcess = "CopyFromProcess";
|
||||
|
||||
/** Set Copy From Report and Process.
|
||||
* Copy settings from one report and process to another.
|
||||
*/
|
||||
public void setCopyFromProcess (String CopyFromProcess);
|
||||
|
||||
/** Get Copy From Report and Process.
|
||||
* Copy settings from one report and process to another.
|
||||
*/
|
||||
public String getCopyFromProcess();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -62,6 +62,19 @@ public interface I_AD_Ref_List
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_Ref_List_ID */
|
||||
public static final String COLUMNNAME_AD_Ref_List_ID = "AD_Ref_List_ID";
|
||||
|
||||
/** Set Reference List.
|
||||
* Reference List based on Table
|
||||
*/
|
||||
public void setAD_Ref_List_ID (int AD_Ref_List_ID);
|
||||
|
||||
/** Get Reference List.
|
||||
* Reference List based on Table
|
||||
*/
|
||||
public int getAD_Ref_List_ID();
|
||||
|
||||
/** Column name AD_Reference_ID */
|
||||
public static final String COLUMNNAME_AD_Reference_ID = "AD_Reference_ID";
|
||||
|
||||
|
@ -77,19 +90,6 @@ public interface I_AD_Ref_List
|
|||
|
||||
public I_AD_Reference getAD_Reference() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Ref_List_ID */
|
||||
public static final String COLUMNNAME_AD_Ref_List_ID = "AD_Ref_List_ID";
|
||||
|
||||
/** Set Reference List.
|
||||
* Reference List based on Table
|
||||
*/
|
||||
public void setAD_Ref_List_ID (int AD_Ref_List_ID);
|
||||
|
||||
/** Get Reference List.
|
||||
* Reference List based on Table
|
||||
*/
|
||||
public int getAD_Ref_List_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -428,6 +428,19 @@ public interface I_AD_Tab
|
|||
*/
|
||||
public String getOrderByClause();
|
||||
|
||||
/** Column name Parent_Column_ID */
|
||||
public static final String COLUMNNAME_Parent_Column_ID = "Parent_Column_ID";
|
||||
|
||||
/** Set Parent Column.
|
||||
* The link column on the parent tab.
|
||||
*/
|
||||
public void setParent_Column_ID (int Parent_Column_ID);
|
||||
|
||||
/** Get Parent Column.
|
||||
* The link column on the parent tab.
|
||||
*/
|
||||
public int getParent_Column_ID();
|
||||
|
||||
/** Column name Processing */
|
||||
public static final String COLUMNNAME_Processing = "Processing";
|
||||
|
||||
|
|
|
@ -311,12 +311,12 @@ public interface I_AD_User
|
|||
public static final String COLUMNNAME_IsFullBPAccess = "IsFullBPAccess";
|
||||
|
||||
/** Set Full BP Access.
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
* The user/contact has full access to Business Partner information and resources
|
||||
*/
|
||||
public void setIsFullBPAccess (boolean IsFullBPAccess);
|
||||
|
||||
/** Get Full BP Access.
|
||||
* The user/concat has full access to Business Partner information and resources
|
||||
* The user/contact has full access to Business Partner information and resources
|
||||
*/
|
||||
public boolean isFullBPAccess();
|
||||
|
||||
|
|
|
@ -62,19 +62,6 @@ public interface I_AD_UserBPAccess
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_UserBPAccess_ID */
|
||||
public static final String COLUMNNAME_AD_UserBPAccess_ID = "AD_UserBPAccess_ID";
|
||||
|
||||
/** Set User BP Access.
|
||||
* User/concat access to Business Partner information and resources
|
||||
*/
|
||||
public void setAD_UserBPAccess_ID (int AD_UserBPAccess_ID);
|
||||
|
||||
/** Get User BP Access.
|
||||
* User/concat access to Business Partner information and resources
|
||||
*/
|
||||
public int getAD_UserBPAccess_ID();
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
|
@ -90,6 +77,19 @@ public interface I_AD_UserBPAccess
|
|||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name AD_UserBPAccess_ID */
|
||||
public static final String COLUMNNAME_AD_UserBPAccess_ID = "AD_UserBPAccess_ID";
|
||||
|
||||
/** Set User BP Access.
|
||||
* User/concat access to Business Partner information and resources
|
||||
*/
|
||||
public void setAD_UserBPAccess_ID (int AD_UserBPAccess_ID);
|
||||
|
||||
/** Get User BP Access.
|
||||
* User/concat access to Business Partner information and resources
|
||||
*/
|
||||
public int getAD_UserBPAccess_ID();
|
||||
|
||||
/** Column name BPAccessType */
|
||||
public static final String COLUMNNAME_BPAccessType = "BPAccessType";
|
||||
|
||||
|
|
|
@ -567,6 +567,21 @@ public interface I_AD_WF_Node
|
|||
|
||||
public I_R_MailText getR_MailText() throws RuntimeException;
|
||||
|
||||
/** Column name S_Resource_ID */
|
||||
public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID";
|
||||
|
||||
/** Set Resource.
|
||||
* Resource
|
||||
*/
|
||||
public void setS_Resource_ID (int S_Resource_ID);
|
||||
|
||||
/** Get Resource.
|
||||
* Resource
|
||||
*/
|
||||
public int getS_Resource_ID();
|
||||
|
||||
public I_S_Resource getS_Resource() throws RuntimeException;
|
||||
|
||||
/** Column name SetupTime */
|
||||
public static final String COLUMNNAME_SetupTime = "SetupTime";
|
||||
|
||||
|
@ -593,21 +608,6 @@ public interface I_AD_WF_Node
|
|||
*/
|
||||
public String getSplitElement();
|
||||
|
||||
/** Column name S_Resource_ID */
|
||||
public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID";
|
||||
|
||||
/** Set Resource.
|
||||
* Resource
|
||||
*/
|
||||
public void setS_Resource_ID (int S_Resource_ID);
|
||||
|
||||
/** Get Resource.
|
||||
* Resource
|
||||
*/
|
||||
public int getS_Resource_ID();
|
||||
|
||||
public I_S_Resource getS_Resource() throws RuntimeException;
|
||||
|
||||
/** Column name StartMode */
|
||||
public static final String COLUMNNAME_StartMode = "StartMode";
|
||||
|
||||
|
|
|
@ -62,19 +62,6 @@ public interface I_AD_WF_ProcessData
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_WF_ProcessData_ID */
|
||||
public static final String COLUMNNAME_AD_WF_ProcessData_ID = "AD_WF_ProcessData_ID";
|
||||
|
||||
/** Set Workflow Process Data.
|
||||
* Workflow Process Context
|
||||
*/
|
||||
public void setAD_WF_ProcessData_ID (int AD_WF_ProcessData_ID);
|
||||
|
||||
/** Get Workflow Process Data.
|
||||
* Workflow Process Context
|
||||
*/
|
||||
public int getAD_WF_ProcessData_ID();
|
||||
|
||||
/** Column name AD_WF_Process_ID */
|
||||
public static final String COLUMNNAME_AD_WF_Process_ID = "AD_WF_Process_ID";
|
||||
|
||||
|
@ -90,6 +77,19 @@ public interface I_AD_WF_ProcessData
|
|||
|
||||
public I_AD_WF_Process getAD_WF_Process() throws RuntimeException;
|
||||
|
||||
/** Column name AD_WF_ProcessData_ID */
|
||||
public static final String COLUMNNAME_AD_WF_ProcessData_ID = "AD_WF_ProcessData_ID";
|
||||
|
||||
/** Set Workflow Process Data.
|
||||
* Workflow Process Context
|
||||
*/
|
||||
public void setAD_WF_ProcessData_ID (int AD_WF_ProcessData_ID);
|
||||
|
||||
/** Get Workflow Process Data.
|
||||
* Workflow Process Context
|
||||
*/
|
||||
public int getAD_WF_ProcessData_ID();
|
||||
|
||||
/** Column name AttributeName */
|
||||
public static final String COLUMNNAME_AttributeName = "AttributeName";
|
||||
|
||||
|
|
|
@ -436,19 +436,6 @@ public interface I_AD_Workflow
|
|||
/** Get Queuing Time */
|
||||
public int getQueuingTime();
|
||||
|
||||
/** Column name SetupTime */
|
||||
public static final String COLUMNNAME_SetupTime = "SetupTime";
|
||||
|
||||
/** Set Setup Time.
|
||||
* Setup time before starting Production
|
||||
*/
|
||||
public void setSetupTime (int SetupTime);
|
||||
|
||||
/** Get Setup Time.
|
||||
* Setup time before starting Production
|
||||
*/
|
||||
public int getSetupTime();
|
||||
|
||||
/** Column name S_Resource_ID */
|
||||
public static final String COLUMNNAME_S_Resource_ID = "S_Resource_ID";
|
||||
|
||||
|
@ -464,6 +451,19 @@ public interface I_AD_Workflow
|
|||
|
||||
public I_S_Resource getS_Resource() throws RuntimeException;
|
||||
|
||||
/** Column name SetupTime */
|
||||
public static final String COLUMNNAME_SetupTime = "SetupTime";
|
||||
|
||||
/** Set Setup Time.
|
||||
* Setup time before starting Production
|
||||
*/
|
||||
public void setSetupTime (int SetupTime);
|
||||
|
||||
/** Get Setup Time.
|
||||
* Setup time before starting Production
|
||||
*/
|
||||
public int getSetupTime();
|
||||
|
||||
/** Column name UnitsCycles */
|
||||
public static final String COLUMNNAME_UnitsCycles = "UnitsCycles";
|
||||
|
||||
|
|
|
@ -87,6 +87,33 @@ public interface I_A_Asset
|
|||
/** Get A_Asset_RevalDate */
|
||||
public Timestamp getA_Asset_RevalDate();
|
||||
|
||||
/** Column name A_Parent_Asset_ID */
|
||||
public static final String COLUMNNAME_A_Parent_Asset_ID = "A_Parent_Asset_ID";
|
||||
|
||||
/** Set Asset ID */
|
||||
public void setA_Parent_Asset_ID (int A_Parent_Asset_ID);
|
||||
|
||||
/** Get Asset ID */
|
||||
public int getA_Parent_Asset_ID();
|
||||
|
||||
/** Column name A_QTY_Current */
|
||||
public static final String COLUMNNAME_A_QTY_Current = "A_QTY_Current";
|
||||
|
||||
/** Set Quantity */
|
||||
public void setA_QTY_Current (BigDecimal A_QTY_Current);
|
||||
|
||||
/** Get Quantity */
|
||||
public BigDecimal getA_QTY_Current();
|
||||
|
||||
/** Column name A_QTY_Original */
|
||||
public static final String COLUMNNAME_A_QTY_Original = "A_QTY_Original";
|
||||
|
||||
/** Set Original Qty */
|
||||
public void setA_QTY_Original (BigDecimal A_QTY_Original);
|
||||
|
||||
/** Get Original Qty */
|
||||
public BigDecimal getA_QTY_Original();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -123,33 +150,6 @@ public interface I_A_Asset
|
|||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name A_Parent_Asset_ID */
|
||||
public static final String COLUMNNAME_A_Parent_Asset_ID = "A_Parent_Asset_ID";
|
||||
|
||||
/** Set Asset ID */
|
||||
public void setA_Parent_Asset_ID (int A_Parent_Asset_ID);
|
||||
|
||||
/** Get Asset ID */
|
||||
public int getA_Parent_Asset_ID();
|
||||
|
||||
/** Column name A_QTY_Current */
|
||||
public static final String COLUMNNAME_A_QTY_Current = "A_QTY_Current";
|
||||
|
||||
/** Set Quantity */
|
||||
public void setA_QTY_Current (BigDecimal A_QTY_Current);
|
||||
|
||||
/** Get Quantity */
|
||||
public BigDecimal getA_QTY_Current();
|
||||
|
||||
/** Column name A_QTY_Original */
|
||||
public static final String COLUMNNAME_A_QTY_Original = "A_QTY_Original";
|
||||
|
||||
/** Set Original Qty */
|
||||
public void setA_QTY_Original (BigDecimal A_QTY_Original);
|
||||
|
||||
/** Get Original Qty */
|
||||
public BigDecimal getA_QTY_Original();
|
||||
|
||||
/** Column name AssetDepreciationDate */
|
||||
public static final String COLUMNNAME_AssetDepreciationDate = "AssetDepreciationDate";
|
||||
|
||||
|
|
|
@ -90,14 +90,6 @@ public interface I_A_Asset_Acct
|
|||
/** Get A_Asset_Spread_ID */
|
||||
public int getA_Asset_Spread_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Acct */
|
||||
public static final String COLUMNNAME_A_Depreciation_Acct = "A_Depreciation_Acct";
|
||||
|
||||
|
@ -197,19 +189,6 @@ public interface I_A_Asset_Acct
|
|||
/** Get Disposal Revenue */
|
||||
public int getA_Disposal_Revenue();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Period_End */
|
||||
public static final String COLUMNNAME_A_Period_End = "A_Period_End";
|
||||
|
||||
|
@ -300,6 +279,27 @@ public interface I_A_Asset_Acct
|
|||
/** Get Split Percentage */
|
||||
public BigDecimal getA_Split_Percent();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_AcctSchema_ID */
|
||||
public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID";
|
||||
|
||||
|
|
|
@ -72,6 +72,24 @@ public interface I_A_Asset_Addition
|
|||
/** Get Capital vs Expense */
|
||||
public String getA_CapvsExp();
|
||||
|
||||
/** Column name A_QTY_Current */
|
||||
public static final String COLUMNNAME_A_QTY_Current = "A_QTY_Current";
|
||||
|
||||
/** Set Quantity */
|
||||
public void setA_QTY_Current (BigDecimal A_QTY_Current);
|
||||
|
||||
/** Get Quantity */
|
||||
public BigDecimal getA_QTY_Current();
|
||||
|
||||
/** Column name A_SourceType */
|
||||
public static final String COLUMNNAME_A_SourceType = "A_SourceType";
|
||||
|
||||
/** Set Source of Entry */
|
||||
public void setA_SourceType (String A_SourceType);
|
||||
|
||||
/** Get Source of Entry */
|
||||
public String getA_SourceType();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -93,24 +111,6 @@ public interface I_A_Asset_Addition
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_QTY_Current */
|
||||
public static final String COLUMNNAME_A_QTY_Current = "A_QTY_Current";
|
||||
|
||||
/** Set Quantity */
|
||||
public void setA_QTY_Current (BigDecimal A_QTY_Current);
|
||||
|
||||
/** Get Quantity */
|
||||
public BigDecimal getA_QTY_Current();
|
||||
|
||||
/** Column name A_SourceType */
|
||||
public static final String COLUMNNAME_A_SourceType = "A_SourceType";
|
||||
|
||||
/** Set Source of Entry */
|
||||
public void setA_SourceType (String A_SourceType);
|
||||
|
||||
/** Get Source of Entry */
|
||||
public String getA_SourceType();
|
||||
|
||||
/** Column name AssetValueAmt */
|
||||
public static final String COLUMNNAME_AssetValueAmt = "AssetValueAmt";
|
||||
|
||||
|
|
|
@ -186,19 +186,6 @@ public interface I_A_Asset_Delivery
|
|||
*/
|
||||
public String getLot();
|
||||
|
||||
/** Column name MessageID */
|
||||
public static final String COLUMNNAME_MessageID = "MessageID";
|
||||
|
||||
/** Set Message ID.
|
||||
* EMail Message ID
|
||||
*/
|
||||
public void setMessageID (String MessageID);
|
||||
|
||||
/** Get Message ID.
|
||||
* EMail Message ID
|
||||
*/
|
||||
public String getMessageID();
|
||||
|
||||
/** Column name M_InOutLine_ID */
|
||||
public static final String COLUMNNAME_M_InOutLine_ID = "M_InOutLine_ID";
|
||||
|
||||
|
@ -214,19 +201,6 @@ public interface I_A_Asset_Delivery
|
|||
|
||||
public I_M_InOutLine getM_InOutLine() throws RuntimeException;
|
||||
|
||||
/** Column name MovementDate */
|
||||
public static final String COLUMNNAME_MovementDate = "MovementDate";
|
||||
|
||||
/** Set Movement Date.
|
||||
* Date a product was moved in or out of inventory
|
||||
*/
|
||||
public void setMovementDate (Timestamp MovementDate);
|
||||
|
||||
/** Get Movement Date.
|
||||
* Date a product was moved in or out of inventory
|
||||
*/
|
||||
public Timestamp getMovementDate();
|
||||
|
||||
/** Column name M_ProductDownload_ID */
|
||||
public static final String COLUMNNAME_M_ProductDownload_ID = "M_ProductDownload_ID";
|
||||
|
||||
|
@ -242,6 +216,32 @@ public interface I_A_Asset_Delivery
|
|||
|
||||
public I_M_ProductDownload getM_ProductDownload() throws RuntimeException;
|
||||
|
||||
/** Column name MessageID */
|
||||
public static final String COLUMNNAME_MessageID = "MessageID";
|
||||
|
||||
/** Set Message ID.
|
||||
* EMail Message ID
|
||||
*/
|
||||
public void setMessageID (String MessageID);
|
||||
|
||||
/** Get Message ID.
|
||||
* EMail Message ID
|
||||
*/
|
||||
public String getMessageID();
|
||||
|
||||
/** Column name MovementDate */
|
||||
public static final String COLUMNNAME_MovementDate = "MovementDate";
|
||||
|
||||
/** Set Movement Date.
|
||||
* Date a product was moved in or out of inventory
|
||||
*/
|
||||
public void setMovementDate (Timestamp MovementDate);
|
||||
|
||||
/** Get Movement Date.
|
||||
* Date a product was moved in or out of inventory
|
||||
*/
|
||||
public Timestamp getMovementDate();
|
||||
|
||||
/** Column name Referrer */
|
||||
public static final String COLUMNNAME_Referrer = "Referrer";
|
||||
|
||||
|
|
|
@ -72,14 +72,6 @@ public interface I_A_Asset_Disposed
|
|||
/** Get A_Asset_Trade_ID */
|
||||
public int getA_Asset_Trade_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Disposed_Date */
|
||||
public static final String COLUMNNAME_A_Disposed_Date = "A_Disposed_Date";
|
||||
|
||||
|
@ -107,6 +99,23 @@ public interface I_A_Asset_Disposed
|
|||
/** Get Disposed Reason Code */
|
||||
public String getA_Disposed_Reason();
|
||||
|
||||
/** Column name A_Proceeds */
|
||||
public static final String COLUMNNAME_A_Proceeds = "A_Proceeds";
|
||||
|
||||
/** Set A_Proceeds */
|
||||
public void setA_Proceeds (BigDecimal A_Proceeds);
|
||||
|
||||
/** Get A_Proceeds */
|
||||
public BigDecimal getA_Proceeds();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
@ -120,15 +129,6 @@ public interface I_A_Asset_Disposed
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Proceeds */
|
||||
public static final String COLUMNNAME_A_Proceeds = "A_Proceeds";
|
||||
|
||||
/** Set A_Proceeds */
|
||||
public void setA_Proceeds (BigDecimal A_Proceeds);
|
||||
|
||||
/** Get A_Proceeds */
|
||||
public BigDecimal getA_Proceeds();
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
|
|
|
@ -92,14 +92,6 @@ public interface I_A_Asset_Group_Acct
|
|||
/** Get A_Asset_Spread_Type */
|
||||
public int getA_Asset_Spread_Type();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Acct */
|
||||
public static final String COLUMNNAME_A_Depreciation_Acct = "A_Depreciation_Acct";
|
||||
|
||||
|
@ -190,19 +182,6 @@ public interface I_A_Asset_Group_Acct
|
|||
/** Get Disposal Revenue */
|
||||
public int getA_Disposal_Revenue();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Reval_Accumdep_Offset_Cur */
|
||||
public static final String COLUMNNAME_A_Reval_Accumdep_Offset_Cur = "A_Reval_Accumdep_Offset_Cur";
|
||||
|
||||
|
@ -266,6 +245,27 @@ public interface I_A_Asset_Group_Acct
|
|||
/** Get Split Percentage */
|
||||
public BigDecimal getA_Split_Percent();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_AcctSchema_ID */
|
||||
public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID";
|
||||
|
||||
|
|
|
@ -72,27 +72,6 @@ public interface I_A_Asset_Info_Fin
|
|||
/** Get Contract Date */
|
||||
public Timestamp getA_Contract_Date();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Due_On */
|
||||
public static final String COLUMNNAME_A_Due_On = "A_Due_On";
|
||||
|
||||
|
@ -165,6 +144,27 @@ public interface I_A_Asset_Info_Fin
|
|||
/** Get Option Purchase Price */
|
||||
public BigDecimal getA_Purchase_Price();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
|
|
|
@ -63,27 +63,6 @@ public interface I_A_Asset_Info_Ins
|
|||
/** Get A_Asset_Info_Ins_ID */
|
||||
public int getA_Asset_Info_Ins_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Ins_Premium */
|
||||
public static final String COLUMNNAME_A_Ins_Premium = "A_Ins_Premium";
|
||||
|
||||
|
@ -93,15 +72,6 @@ public interface I_A_Asset_Info_Ins
|
|||
/** Get Insurance Premium */
|
||||
public BigDecimal getA_Ins_Premium();
|
||||
|
||||
/** Column name A_Insurance_Co */
|
||||
public static final String COLUMNNAME_A_Insurance_Co = "A_Insurance_Co";
|
||||
|
||||
/** Set Insurance Company */
|
||||
public void setA_Insurance_Co (String A_Insurance_Co);
|
||||
|
||||
/** Get Insurance Company */
|
||||
public String getA_Insurance_Co();
|
||||
|
||||
/** Column name A_Ins_Value */
|
||||
public static final String COLUMNNAME_A_Ins_Value = "A_Ins_Value";
|
||||
|
||||
|
@ -111,6 +81,15 @@ public interface I_A_Asset_Info_Ins
|
|||
/** Get Insured Value */
|
||||
public BigDecimal getA_Ins_Value();
|
||||
|
||||
/** Column name A_Insurance_Co */
|
||||
public static final String COLUMNNAME_A_Insurance_Co = "A_Insurance_Co";
|
||||
|
||||
/** Set Insurance Company */
|
||||
public void setA_Insurance_Co (String A_Insurance_Co);
|
||||
|
||||
/** Get Insurance Company */
|
||||
public String getA_Insurance_Co();
|
||||
|
||||
/** Column name A_Policy_No */
|
||||
public static final String COLUMNNAME_A_Policy_No = "A_Policy_No";
|
||||
|
||||
|
@ -138,6 +117,27 @@ public interface I_A_Asset_Info_Ins
|
|||
/** Get Replacement Costs */
|
||||
public BigDecimal getA_Replace_Cost();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -63,27 +63,6 @@ public interface I_A_Asset_Info_Lic
|
|||
/** Get A_Asset_Info_Lic_ID */
|
||||
public int getA_Asset_Info_Lic_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Issuing_Agency */
|
||||
public static final String COLUMNNAME_A_Issuing_Agency = "A_Issuing_Agency";
|
||||
|
||||
|
@ -133,6 +112,27 @@ public interface I_A_Asset_Info_Lic
|
|||
*/
|
||||
public String getA_State();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -63,27 +63,6 @@ public interface I_A_Asset_Info_Oth
|
|||
/** Get A_Asset_Info_Oth_ID */
|
||||
public int getA_Asset_Info_Oth_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_User1 */
|
||||
public static final String COLUMNNAME_A_User1 = "A_User1";
|
||||
|
||||
|
@ -219,6 +198,27 @@ public interface I_A_Asset_Info_Oth
|
|||
/** Get A_User9 */
|
||||
public String getA_User9();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -63,27 +63,6 @@ public interface I_A_Asset_Info_Tax
|
|||
/** Get A_Asset_Info_Tax_ID */
|
||||
public int getA_Asset_Info_Tax_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Finance_Meth */
|
||||
public static final String COLUMNNAME_A_Finance_Meth = "A_Finance_Meth";
|
||||
|
||||
|
@ -133,6 +112,27 @@ public interface I_A_Asset_Info_Tax
|
|||
/** Get Tax Entity */
|
||||
public String getA_Tax_Entity();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -50,27 +50,6 @@ public interface I_A_Asset_Reval_Entry
|
|||
/** Get A_Asset_Reval_Entry_ID */
|
||||
public int getA_Asset_Reval_Entry_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Effective_Date */
|
||||
public static final String COLUMNNAME_A_Effective_Date = "A_Effective_Date";
|
||||
|
||||
|
@ -80,6 +59,15 @@ public interface I_A_Asset_Reval_Entry
|
|||
/** Get A_Effective_Date */
|
||||
public Timestamp getA_Effective_Date();
|
||||
|
||||
/** Column name A_Rev_Code */
|
||||
public static final String COLUMNNAME_A_Rev_Code = "A_Rev_Code";
|
||||
|
||||
/** Set A_Rev_Code */
|
||||
public void setA_Rev_Code (String A_Rev_Code);
|
||||
|
||||
/** Get A_Rev_Code */
|
||||
public String getA_Rev_Code();
|
||||
|
||||
/** Column name A_Reval_Cal_Method */
|
||||
public static final String COLUMNNAME_A_Reval_Cal_Method = "A_Reval_Cal_Method";
|
||||
|
||||
|
@ -107,14 +95,26 @@ public interface I_A_Asset_Reval_Entry
|
|||
/** Get A_Reval_Multiplier */
|
||||
public String getA_Reval_Multiplier();
|
||||
|
||||
/** Column name A_Rev_Code */
|
||||
public static final String COLUMNNAME_A_Rev_Code = "A_Rev_Code";
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Set A_Rev_Code */
|
||||
public void setA_Rev_Code (String A_Rev_Code);
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Get A_Rev_Code */
|
||||
public String getA_Rev_Code();
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_AcctSchema_ID */
|
||||
public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID";
|
||||
|
|
|
@ -50,27 +50,6 @@ public interface I_A_Asset_Reval_Index
|
|||
/** Get A_Asset_Reval_Index_ID */
|
||||
public int getA_Asset_Reval_Index_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Effective_Date */
|
||||
public static final String COLUMNNAME_A_Effective_Date = "A_Effective_Date";
|
||||
|
||||
|
@ -107,6 +86,27 @@ public interface I_A_Asset_Reval_Index
|
|||
/** Get A_Reval_Rate */
|
||||
public BigDecimal getA_Reval_Rate();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -99,14 +99,6 @@ public interface I_A_Asset_Split
|
|||
/** Get A_Asset_Split_ID */
|
||||
public int getA_Asset_Split_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Workfile_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Workfile_ID = "A_Depreciation_Workfile_ID";
|
||||
|
||||
|
@ -116,19 +108,6 @@ public interface I_A_Asset_Split
|
|||
/** Get A_Depreciation_Workfile_ID */
|
||||
public int getA_Depreciation_Workfile_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Percent_Original */
|
||||
public static final String COLUMNNAME_A_Percent_Original = "A_Percent_Original";
|
||||
|
||||
|
@ -183,6 +162,27 @@ public interface I_A_Asset_Split
|
|||
/** Get Transfer Balance IS */
|
||||
public boolean isA_Transfer_Balance_IS();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
|
|
|
@ -59,27 +59,6 @@ public interface I_A_Asset_Spread
|
|||
/** Get A_Asset_Spread_Type */
|
||||
public String getA_Asset_Spread_Type();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Period_1 */
|
||||
public static final String COLUMNNAME_A_Period_1 = "A_Period_1";
|
||||
|
||||
|
@ -206,6 +185,27 @@ public interface I_A_Asset_Spread
|
|||
/** Get A_Period_9 */
|
||||
public BigDecimal getA_Period_9();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -126,14 +126,6 @@ public interface I_A_Asset_Transfer
|
|||
/** Get A_Asset_Transfer_ID */
|
||||
public int getA_Asset_Transfer_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Acct */
|
||||
public static final String COLUMNNAME_A_Depreciation_Acct = "A_Depreciation_Acct";
|
||||
|
||||
|
@ -215,19 +207,6 @@ public interface I_A_Asset_Transfer
|
|||
/** Get Old Disposal Revenue */
|
||||
public String getA_Disposal_Revenue_Str();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Period_End */
|
||||
public static final String COLUMNNAME_A_Period_End = "A_Period_End";
|
||||
|
||||
|
@ -273,6 +252,27 @@ public interface I_A_Asset_Transfer
|
|||
/** Get Transfer Balance IS */
|
||||
public boolean isA_Transfer_Balance_IS();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_AcctSchema_ID */
|
||||
public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_ID = "A_Depreciation_ID";
|
||||
|
||||
|
@ -58,6 +50,14 @@ public interface I_A_Depreciation
|
|||
/** Get Depreciation Type */
|
||||
public int getA_Depreciation_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Build
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Build_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Build_ID = "A_Depreciation_Build_ID";
|
||||
|
||||
|
@ -58,19 +50,6 @@ public interface I_A_Depreciation_Build
|
|||
/** Get A_Depreciation_Build_ID */
|
||||
public int getA_Depreciation_Build_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_End_Asset_ID */
|
||||
public static final String COLUMNNAME_A_End_Asset_ID = "A_End_Asset_ID";
|
||||
|
||||
|
@ -89,6 +68,27 @@ public interface I_A_Depreciation_Build
|
|||
/** Get A_Start_Asset_ID */
|
||||
public int getA_Start_Asset_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Convention
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Convention_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Convention_ID = "A_Depreciation_Convention_ID";
|
||||
|
||||
|
@ -58,6 +50,14 @@ public interface I_A_Depreciation_Convention
|
|||
/** Get A_Depreciation_Convention_ID */
|
||||
public int getA_Depreciation_Convention_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
@ -148,14 +148,18 @@ public interface I_A_Depreciation_Convention
|
|||
*/
|
||||
public boolean isProcessed();
|
||||
|
||||
/** Column name Textmsg */
|
||||
public static final String COLUMNNAME_Textmsg = "Textmsg";
|
||||
/** Column name TextMsg */
|
||||
public static final String COLUMNNAME_TextMsg = "TextMsg";
|
||||
|
||||
/** Set Textmsg */
|
||||
public void setTextmsg (String Textmsg);
|
||||
/** Set Text Message.
|
||||
* Text Message
|
||||
*/
|
||||
public void setTextMsg (String TextMsg);
|
||||
|
||||
/** Get Textmsg */
|
||||
public String getTextmsg();
|
||||
/** Get Text Message.
|
||||
* Text Message
|
||||
*/
|
||||
public String getTextMsg();
|
||||
|
||||
/** Column name Updated */
|
||||
public static final String COLUMNNAME_Updated = "Updated";
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Entry
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Entry_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Entry_ID = "A_Depreciation_Entry_ID";
|
||||
|
||||
|
@ -58,6 +50,23 @@ public interface I_A_Depreciation_Entry
|
|||
/** Get A_Depreciation_Entry_ID */
|
||||
public int getA_Depreciation_Entry_ID();
|
||||
|
||||
/** Column name A_Entry_Type */
|
||||
public static final String COLUMNNAME_A_Entry_Type = "A_Entry_Type";
|
||||
|
||||
/** Set Entry Type */
|
||||
public void setA_Entry_Type (String A_Entry_Type);
|
||||
|
||||
/** Get Entry Type */
|
||||
public String getA_Entry_Type();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
@ -71,15 +80,6 @@ public interface I_A_Depreciation_Entry
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Entry_Type */
|
||||
public static final String COLUMNNAME_A_Entry_Type = "A_Entry_Type";
|
||||
|
||||
/** Set Entry Type */
|
||||
public void setA_Entry_Type (String A_Entry_Type);
|
||||
|
||||
/** Get Entry Type */
|
||||
public String getA_Entry_Type();
|
||||
|
||||
/** Column name C_AcctSchema_ID */
|
||||
public static final String COLUMNNAME_C_AcctSchema_ID = "C_AcctSchema_ID";
|
||||
|
||||
|
|
|
@ -63,14 +63,6 @@ public interface I_A_Depreciation_Exp
|
|||
*/
|
||||
public int getA_Asset_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Exp_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Exp_ID = "A_Depreciation_Exp_ID";
|
||||
|
||||
|
@ -80,19 +72,6 @@ public interface I_A_Depreciation_Exp
|
|||
/** Get A_Depreciation_Exp_ID */
|
||||
public int getA_Depreciation_Exp_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Entry_Type */
|
||||
public static final String COLUMNNAME_A_Entry_Type = "A_Entry_Type";
|
||||
|
||||
|
@ -111,6 +90,27 @@ public interface I_A_Depreciation_Exp
|
|||
/** Get Period/Yearly */
|
||||
public int getA_Period();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Forecast
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Forecast_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Forecast_ID = "A_Depreciation_Forecast_ID";
|
||||
|
||||
|
@ -58,19 +50,6 @@ public interface I_A_Depreciation_Forecast
|
|||
/** Get A_Depreciation_Forecast_ID */
|
||||
public int getA_Depreciation_Forecast_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_End_Asset_ID */
|
||||
public static final String COLUMNNAME_A_End_Asset_ID = "A_End_Asset_ID";
|
||||
|
||||
|
@ -89,6 +68,27 @@ public interface I_A_Depreciation_Forecast
|
|||
/** Get A_Start_Asset_ID */
|
||||
public int getA_Start_Asset_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Method
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Method_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Method_ID = "A_Depreciation_Method_ID";
|
||||
|
||||
|
@ -58,6 +50,14 @@ public interface I_A_Depreciation_Method
|
|||
/** Get Depreciation Calculation Type */
|
||||
public int getA_Depreciation_Method_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Table_Detail
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Rate */
|
||||
public static final String COLUMNNAME_A_Depreciation_Rate = "A_Depreciation_Rate";
|
||||
|
||||
|
@ -76,19 +68,6 @@ public interface I_A_Depreciation_Table_Detail
|
|||
/** Get A_Depreciation_Table_Detail_ID */
|
||||
public int getA_Depreciation_Table_Detail_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Period */
|
||||
public static final String COLUMNNAME_A_Period = "A_Period";
|
||||
|
||||
|
@ -107,6 +86,27 @@ public interface I_A_Depreciation_Table_Detail
|
|||
/** Get Type */
|
||||
public String getA_Table_Rate_Type();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -41,14 +41,6 @@ public interface I_A_Depreciation_Table_Header
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Table_Code */
|
||||
public static final String COLUMNNAME_A_Depreciation_Table_Code = "A_Depreciation_Table_Code";
|
||||
|
||||
|
@ -67,19 +59,6 @@ public interface I_A_Depreciation_Table_Header
|
|||
/** Get A_Depreciation_Table_Header_ID */
|
||||
public int getA_Depreciation_Table_Header_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Table_Rate_Type */
|
||||
public static final String COLUMNNAME_A_Table_Rate_Type = "A_Table_Rate_Type";
|
||||
|
||||
|
@ -98,6 +77,27 @@ public interface I_A_Depreciation_Table_Header
|
|||
/** Get Period/Yearly */
|
||||
public String getA_Term();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -126,14 +126,6 @@ public interface I_A_Depreciation_Workfile
|
|||
/** Get A_Current_Period */
|
||||
public int getA_Current_Period();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name A_Depreciation_Workfile_ID */
|
||||
public static final String COLUMNNAME_A_Depreciation_Workfile_ID = "A_Depreciation_Workfile_ID";
|
||||
|
||||
|
@ -143,19 +135,6 @@ public interface I_A_Depreciation_Workfile
|
|||
/** Get A_Depreciation_Workfile_ID */
|
||||
public int getA_Depreciation_Workfile_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_Life_Period */
|
||||
public static final String COLUMNNAME_A_Life_Period = "A_Life_Period";
|
||||
|
||||
|
@ -210,6 +189,27 @@ public interface I_A_Depreciation_Workfile
|
|||
/** Get Salvage Value */
|
||||
public BigDecimal getA_Salvage_Value();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AssetDepreciationDate */
|
||||
public static final String COLUMNNAME_AssetDepreciationDate = "AssetDepreciationDate";
|
||||
|
||||
|
|
|
@ -56,6 +56,19 @@ public interface I_A_Registration
|
|||
|
||||
public I_A_Asset getA_Asset() throws RuntimeException;
|
||||
|
||||
/** Column name A_Registration_ID */
|
||||
public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID";
|
||||
|
||||
/** Set Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public void setA_Registration_ID (int A_Registration_ID);
|
||||
|
||||
/** Get Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public int getA_Registration_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -92,19 +105,6 @@ public interface I_A_Registration
|
|||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name A_Registration_ID */
|
||||
public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID";
|
||||
|
||||
/** Set Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public void setA_Registration_ID (int A_Registration_ID);
|
||||
|
||||
/** Get Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public int getA_Registration_ID();
|
||||
|
||||
/** Column name AssetServiceDate */
|
||||
public static final String COLUMNNAME_AssetServiceDate = "AssetServiceDate";
|
||||
|
||||
|
|
|
@ -41,6 +41,19 @@ public interface I_A_RegistrationAttribute
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -88,19 +101,6 @@ public interface I_A_RegistrationAttribute
|
|||
*/
|
||||
public int getAD_Reference_Value_ID();
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
/** Column name ColumnName */
|
||||
public static final String COLUMNNAME_ColumnName = "ColumnName";
|
||||
|
||||
|
|
|
@ -41,6 +41,21 @@ public interface I_A_RegistrationProduct
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -62,21 +77,6 @@ public interface I_A_RegistrationProduct
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -41,6 +41,36 @@ public interface I_A_RegistrationValue
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name A_Registration_ID */
|
||||
public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID";
|
||||
|
||||
/** Set Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public void setA_Registration_ID (int A_Registration_ID);
|
||||
|
||||
/** Get Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public int getA_Registration_ID();
|
||||
|
||||
public I_A_Registration getA_Registration() throws RuntimeException;
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException;
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -62,36 +92,6 @@ public interface I_A_RegistrationValue
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name A_RegistrationAttribute_ID */
|
||||
public static final String COLUMNNAME_A_RegistrationAttribute_ID = "A_RegistrationAttribute_ID";
|
||||
|
||||
/** Set Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public void setA_RegistrationAttribute_ID (int A_RegistrationAttribute_ID);
|
||||
|
||||
/** Get Registration Attribute.
|
||||
* Asset Registration Attribute
|
||||
*/
|
||||
public int getA_RegistrationAttribute_ID();
|
||||
|
||||
public I_A_RegistrationAttribute getA_RegistrationAttribute() throws RuntimeException;
|
||||
|
||||
/** Column name A_Registration_ID */
|
||||
public static final String COLUMNNAME_A_Registration_ID = "A_Registration_ID";
|
||||
|
||||
/** Set Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public void setA_Registration_ID (int A_Registration_ID);
|
||||
|
||||
/** Get Registration.
|
||||
* User Asset Registration
|
||||
*/
|
||||
public int getA_Registration_ID();
|
||||
|
||||
public I_A_Registration getA_Registration() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -90,19 +90,6 @@ public interface I_B_BuyerFunds
|
|||
*/
|
||||
public int getB_BuyerFunds_ID();
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name C_Order_ID */
|
||||
public static final String COLUMNNAME_C_Order_ID = "C_Order_ID";
|
||||
|
||||
|
@ -133,6 +120,19 @@ public interface I_B_BuyerFunds
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -90,19 +90,6 @@ public interface I_B_SellerFunds
|
|||
*/
|
||||
public int getB_SellerFunds_ID();
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name C_Order_ID */
|
||||
public static final String COLUMNNAME_C_Order_ID = "C_Order_ID";
|
||||
|
||||
|
@ -133,6 +120,19 @@ public interface I_B_SellerFunds
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -62,6 +62,19 @@ public interface I_B_Topic
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name B_Topic_ID */
|
||||
public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID";
|
||||
|
||||
/** Set Topic.
|
||||
* Auction Topic
|
||||
*/
|
||||
public void setB_Topic_ID (int B_Topic_ID);
|
||||
|
||||
/** Get Topic.
|
||||
* Auction Topic
|
||||
*/
|
||||
public int getB_Topic_ID();
|
||||
|
||||
/** Column name B_TopicCategory_ID */
|
||||
public static final String COLUMNNAME_B_TopicCategory_ID = "B_TopicCategory_ID";
|
||||
|
||||
|
@ -77,19 +90,6 @@ public interface I_B_Topic
|
|||
|
||||
public I_B_TopicCategory getB_TopicCategory() throws RuntimeException;
|
||||
|
||||
/** Column name B_Topic_ID */
|
||||
public static final String COLUMNNAME_B_Topic_ID = "B_Topic_ID";
|
||||
|
||||
/** Set Topic.
|
||||
* Auction Topic
|
||||
*/
|
||||
public void setB_Topic_ID (int B_Topic_ID);
|
||||
|
||||
/** Get Topic.
|
||||
* Auction Topic
|
||||
*/
|
||||
public int getB_Topic_ID();
|
||||
|
||||
/** Column name B_TopicType_ID */
|
||||
public static final String COLUMNNAME_B_TopicType_ID = "B_TopicType_ID";
|
||||
|
||||
|
|
|
@ -103,45 +103,6 @@ public interface I_CM_ChatEntry
|
|||
*/
|
||||
public String getChatEntryType();
|
||||
|
||||
/** Column name CM_ChatEntryGrandParent_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntryGrandParent_ID = "CM_ChatEntryGrandParent_ID";
|
||||
|
||||
/** Set Chat Entry Grandparent.
|
||||
* Link to Grand Parent (root level)
|
||||
*/
|
||||
public void setCM_ChatEntryGrandParent_ID (int CM_ChatEntryGrandParent_ID);
|
||||
|
||||
/** Get Chat Entry Grandparent.
|
||||
* Link to Grand Parent (root level)
|
||||
*/
|
||||
public int getCM_ChatEntryGrandParent_ID();
|
||||
|
||||
/** Column name CM_ChatEntry_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntry_ID = "CM_ChatEntry_ID";
|
||||
|
||||
/** Set Chat Entry.
|
||||
* Individual Chat / Discussion Entry
|
||||
*/
|
||||
public void setCM_ChatEntry_ID (int CM_ChatEntry_ID);
|
||||
|
||||
/** Get Chat Entry.
|
||||
* Individual Chat / Discussion Entry
|
||||
*/
|
||||
public int getCM_ChatEntry_ID();
|
||||
|
||||
/** Column name CM_ChatEntryParent_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntryParent_ID = "CM_ChatEntryParent_ID";
|
||||
|
||||
/** Set Chat Entry Parent.
|
||||
* Link to direct Parent
|
||||
*/
|
||||
public void setCM_ChatEntryParent_ID (int CM_ChatEntryParent_ID);
|
||||
|
||||
/** Get Chat Entry Parent.
|
||||
* Link to direct Parent
|
||||
*/
|
||||
public int getCM_ChatEntryParent_ID();
|
||||
|
||||
/** Column name CM_Chat_ID */
|
||||
public static final String COLUMNNAME_CM_Chat_ID = "CM_Chat_ID";
|
||||
|
||||
|
@ -157,6 +118,45 @@ public interface I_CM_ChatEntry
|
|||
|
||||
public I_CM_Chat getCM_Chat() throws RuntimeException;
|
||||
|
||||
/** Column name CM_ChatEntry_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntry_ID = "CM_ChatEntry_ID";
|
||||
|
||||
/** Set Chat Entry.
|
||||
* Individual Chat / Discussion Entry
|
||||
*/
|
||||
public void setCM_ChatEntry_ID (int CM_ChatEntry_ID);
|
||||
|
||||
/** Get Chat Entry.
|
||||
* Individual Chat / Discussion Entry
|
||||
*/
|
||||
public int getCM_ChatEntry_ID();
|
||||
|
||||
/** Column name CM_ChatEntryGrandParent_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntryGrandParent_ID = "CM_ChatEntryGrandParent_ID";
|
||||
|
||||
/** Set Chat Entry Grandparent.
|
||||
* Link to Grand Parent (root level)
|
||||
*/
|
||||
public void setCM_ChatEntryGrandParent_ID (int CM_ChatEntryGrandParent_ID);
|
||||
|
||||
/** Get Chat Entry Grandparent.
|
||||
* Link to Grand Parent (root level)
|
||||
*/
|
||||
public int getCM_ChatEntryGrandParent_ID();
|
||||
|
||||
/** Column name CM_ChatEntryParent_ID */
|
||||
public static final String COLUMNNAME_CM_ChatEntryParent_ID = "CM_ChatEntryParent_ID";
|
||||
|
||||
/** Set Chat Entry Parent.
|
||||
* Link to direct Parent
|
||||
*/
|
||||
public void setCM_ChatEntryParent_ID (int CM_ChatEntryParent_ID);
|
||||
|
||||
/** Get Chat Entry Parent.
|
||||
* Link to direct Parent
|
||||
*/
|
||||
public int getCM_ChatEntryParent_ID();
|
||||
|
||||
/** Column name ConfidentialType */
|
||||
public static final String COLUMNNAME_ConfidentialType = "ConfidentialType";
|
||||
|
||||
|
|
|
@ -62,19 +62,6 @@ public interface I_CM_MediaDeploy
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name CM_MediaDeploy_ID */
|
||||
public static final String COLUMNNAME_CM_MediaDeploy_ID = "CM_MediaDeploy_ID";
|
||||
|
||||
/** Set Media Deploy.
|
||||
* Media Deployment Log
|
||||
*/
|
||||
public void setCM_MediaDeploy_ID (int CM_MediaDeploy_ID);
|
||||
|
||||
/** Get Media Deploy.
|
||||
* Media Deployment Log
|
||||
*/
|
||||
public int getCM_MediaDeploy_ID();
|
||||
|
||||
/** Column name CM_Media_ID */
|
||||
public static final String COLUMNNAME_CM_Media_ID = "CM_Media_ID";
|
||||
|
||||
|
@ -105,6 +92,19 @@ public interface I_CM_MediaDeploy
|
|||
|
||||
public I_CM_Media_Server getCM_Media_Server() throws RuntimeException;
|
||||
|
||||
/** Column name CM_MediaDeploy_ID */
|
||||
public static final String COLUMNNAME_CM_MediaDeploy_ID = "CM_MediaDeploy_ID";
|
||||
|
||||
/** Set Media Deploy.
|
||||
* Media Deployment Log
|
||||
*/
|
||||
public void setCM_MediaDeploy_ID (int CM_MediaDeploy_ID);
|
||||
|
||||
/** Get Media Deploy.
|
||||
* Media Deployment Log
|
||||
*/
|
||||
public int getCM_MediaDeploy_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -116,6 +116,21 @@ public interface I_C_AcctSchema
|
|||
|
||||
public I_C_Currency getC_Currency() throws RuntimeException;
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
/** Set Period.
|
||||
* Period of the Calendar
|
||||
*/
|
||||
public void setC_Period_ID (int C_Period_ID);
|
||||
|
||||
/** Get Period.
|
||||
* Period of the Calendar
|
||||
*/
|
||||
public int getC_Period_ID();
|
||||
|
||||
public I_C_Period getC_Period() throws RuntimeException;
|
||||
|
||||
/** Column name CommitmentType */
|
||||
public static final String COLUMNNAME_CommitmentType = "CommitmentType";
|
||||
|
||||
|
@ -155,21 +170,6 @@ public interface I_C_AcctSchema
|
|||
*/
|
||||
public String getCostingMethod();
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
/** Set Period.
|
||||
* Period of the Calendar
|
||||
*/
|
||||
public void setC_Period_ID (int C_Period_ID);
|
||||
|
||||
/** Get Period.
|
||||
* Period of the Calendar
|
||||
*/
|
||||
public int getC_Period_ID();
|
||||
|
||||
public I_C_Period getC_Period() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -233,6 +233,45 @@ public interface I_C_AcctSchema_Default
|
|||
|
||||
public I_C_AcctSchema getC_AcctSchema() throws RuntimeException;
|
||||
|
||||
/** Column name C_Prepayment_Acct */
|
||||
public static final String COLUMNNAME_C_Prepayment_Acct = "C_Prepayment_Acct";
|
||||
|
||||
/** Set Customer Prepayment.
|
||||
* Account for customer prepayments
|
||||
*/
|
||||
public void setC_Prepayment_Acct (int C_Prepayment_Acct);
|
||||
|
||||
/** Get Customer Prepayment.
|
||||
* Account for customer prepayments
|
||||
*/
|
||||
public int getC_Prepayment_Acct();
|
||||
|
||||
/** Column name C_Receivable_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Acct = "C_Receivable_Acct";
|
||||
|
||||
/** Set Customer Receivables.
|
||||
* Account for Customer Receivables
|
||||
*/
|
||||
public void setC_Receivable_Acct (int C_Receivable_Acct);
|
||||
|
||||
/** Get Customer Receivables.
|
||||
* Account for Customer Receivables
|
||||
*/
|
||||
public int getC_Receivable_Acct();
|
||||
|
||||
/** Column name C_Receivable_Services_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Services_Acct = "C_Receivable_Services_Acct";
|
||||
|
||||
/** Set Receivable Services.
|
||||
* Customer Accounts Receivables Services Account
|
||||
*/
|
||||
public void setC_Receivable_Services_Acct (int C_Receivable_Services_Acct);
|
||||
|
||||
/** Get Receivable Services.
|
||||
* Customer Accounts Receivables Services Account
|
||||
*/
|
||||
public int getC_Receivable_Services_Acct();
|
||||
|
||||
/** Column name CB_Asset_Acct */
|
||||
public static final String COLUMNNAME_CB_Asset_Acct = "CB_Asset_Acct";
|
||||
|
||||
|
@ -324,19 +363,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getCh_Revenue_Acct();
|
||||
|
||||
/** Column name C_Prepayment_Acct */
|
||||
public static final String COLUMNNAME_C_Prepayment_Acct = "C_Prepayment_Acct";
|
||||
|
||||
/** Set Customer Prepayment.
|
||||
* Account for customer prepayments
|
||||
*/
|
||||
public void setC_Prepayment_Acct (int C_Prepayment_Acct);
|
||||
|
||||
/** Get Customer Prepayment.
|
||||
* Account for customer prepayments
|
||||
*/
|
||||
public int getC_Prepayment_Acct();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -353,32 +379,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Receivable_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Acct = "C_Receivable_Acct";
|
||||
|
||||
/** Set Customer Receivables.
|
||||
* Account for Customer Receivables
|
||||
*/
|
||||
public void setC_Receivable_Acct (int C_Receivable_Acct);
|
||||
|
||||
/** Get Customer Receivables.
|
||||
* Account for Customer Receivables
|
||||
*/
|
||||
public int getC_Receivable_Acct();
|
||||
|
||||
/** Column name C_Receivable_Services_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Services_Acct = "C_Receivable_Services_Acct";
|
||||
|
||||
/** Set Receivable Services.
|
||||
* Customer Accounts Receivables Services Account
|
||||
*/
|
||||
public void setC_Receivable_Services_Acct (int C_Receivable_Services_Acct);
|
||||
|
||||
/** Get Receivable Services.
|
||||
* Customer Accounts Receivables Services Account
|
||||
*/
|
||||
public int getC_Receivable_Services_Acct();
|
||||
|
||||
/** Column name E_Expense_Acct */
|
||||
public static final String COLUMNNAME_E_Expense_Acct = "E_Expense_Acct";
|
||||
|
||||
|
@ -470,32 +470,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getP_Asset_Acct();
|
||||
|
||||
/** Column name PayDiscount_Exp_Acct */
|
||||
public static final String COLUMNNAME_PayDiscount_Exp_Acct = "PayDiscount_Exp_Acct";
|
||||
|
||||
/** Set Payment Discount Expense.
|
||||
* Payment Discount Expense Account
|
||||
*/
|
||||
public void setPayDiscount_Exp_Acct (int PayDiscount_Exp_Acct);
|
||||
|
||||
/** Get Payment Discount Expense.
|
||||
* Payment Discount Expense Account
|
||||
*/
|
||||
public int getPayDiscount_Exp_Acct();
|
||||
|
||||
/** Column name PayDiscount_Rev_Acct */
|
||||
public static final String COLUMNNAME_PayDiscount_Rev_Acct = "PayDiscount_Rev_Acct";
|
||||
|
||||
/** Set Payment Discount Revenue.
|
||||
* Payment Discount Revenue Account
|
||||
*/
|
||||
public void setPayDiscount_Rev_Acct (int PayDiscount_Rev_Acct);
|
||||
|
||||
/** Get Payment Discount Revenue.
|
||||
* Payment Discount Revenue Account
|
||||
*/
|
||||
public int getPayDiscount_Rev_Acct();
|
||||
|
||||
/** Column name P_Burden_Acct */
|
||||
public static final String COLUMNNAME_P_Burden_Acct = "P_Burden_Acct";
|
||||
|
||||
|
@ -600,32 +574,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getP_InvoicePriceVariance_Acct();
|
||||
|
||||
/** Column name PJ_Asset_Acct */
|
||||
public static final String COLUMNNAME_PJ_Asset_Acct = "PJ_Asset_Acct";
|
||||
|
||||
/** Set Project Asset.
|
||||
* Project Asset Account
|
||||
*/
|
||||
public void setPJ_Asset_Acct (int PJ_Asset_Acct);
|
||||
|
||||
/** Get Project Asset.
|
||||
* Project Asset Account
|
||||
*/
|
||||
public int getPJ_Asset_Acct();
|
||||
|
||||
/** Column name PJ_WIP_Acct */
|
||||
public static final String COLUMNNAME_PJ_WIP_Acct = "PJ_WIP_Acct";
|
||||
|
||||
/** Set Work In Progress.
|
||||
* Account for Work in Progress
|
||||
*/
|
||||
public void setPJ_WIP_Acct (int PJ_WIP_Acct);
|
||||
|
||||
/** Get Work In Progress.
|
||||
* Account for Work in Progress
|
||||
*/
|
||||
public int getPJ_WIP_Acct();
|
||||
|
||||
/** Column name P_Labor_Acct */
|
||||
public static final String COLUMNNAME_P_Labor_Acct = "P_Labor_Acct";
|
||||
|
||||
|
@ -730,15 +678,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getP_Revenue_Acct();
|
||||
|
||||
/** Column name Processing */
|
||||
public static final String COLUMNNAME_Processing = "Processing";
|
||||
|
||||
/** Set Process Now */
|
||||
public void setProcessing (boolean Processing);
|
||||
|
||||
/** Get Process Now */
|
||||
public boolean isProcessing();
|
||||
|
||||
/** Column name P_Scrap_Acct */
|
||||
public static final String COLUMNNAME_P_Scrap_Acct = "P_Scrap_Acct";
|
||||
|
||||
|
@ -804,6 +743,67 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getP_WIP_Acct();
|
||||
|
||||
/** Column name PayDiscount_Exp_Acct */
|
||||
public static final String COLUMNNAME_PayDiscount_Exp_Acct = "PayDiscount_Exp_Acct";
|
||||
|
||||
/** Set Payment Discount Expense.
|
||||
* Payment Discount Expense Account
|
||||
*/
|
||||
public void setPayDiscount_Exp_Acct (int PayDiscount_Exp_Acct);
|
||||
|
||||
/** Get Payment Discount Expense.
|
||||
* Payment Discount Expense Account
|
||||
*/
|
||||
public int getPayDiscount_Exp_Acct();
|
||||
|
||||
/** Column name PayDiscount_Rev_Acct */
|
||||
public static final String COLUMNNAME_PayDiscount_Rev_Acct = "PayDiscount_Rev_Acct";
|
||||
|
||||
/** Set Payment Discount Revenue.
|
||||
* Payment Discount Revenue Account
|
||||
*/
|
||||
public void setPayDiscount_Rev_Acct (int PayDiscount_Rev_Acct);
|
||||
|
||||
/** Get Payment Discount Revenue.
|
||||
* Payment Discount Revenue Account
|
||||
*/
|
||||
public int getPayDiscount_Rev_Acct();
|
||||
|
||||
/** Column name PJ_Asset_Acct */
|
||||
public static final String COLUMNNAME_PJ_Asset_Acct = "PJ_Asset_Acct";
|
||||
|
||||
/** Set Project Asset.
|
||||
* Project Asset Account
|
||||
*/
|
||||
public void setPJ_Asset_Acct (int PJ_Asset_Acct);
|
||||
|
||||
/** Get Project Asset.
|
||||
* Project Asset Account
|
||||
*/
|
||||
public int getPJ_Asset_Acct();
|
||||
|
||||
/** Column name PJ_WIP_Acct */
|
||||
public static final String COLUMNNAME_PJ_WIP_Acct = "PJ_WIP_Acct";
|
||||
|
||||
/** Set Work In Progress.
|
||||
* Account for Work in Progress
|
||||
*/
|
||||
public void setPJ_WIP_Acct (int PJ_WIP_Acct);
|
||||
|
||||
/** Get Work In Progress.
|
||||
* Account for Work in Progress
|
||||
*/
|
||||
public int getPJ_WIP_Acct();
|
||||
|
||||
/** Column name Processing */
|
||||
public static final String COLUMNNAME_Processing = "Processing";
|
||||
|
||||
/** Set Process Now */
|
||||
public void setProcessing (boolean Processing);
|
||||
|
||||
/** Get Process Now */
|
||||
public boolean isProcessing();
|
||||
|
||||
/** Column name RealizedGain_Acct */
|
||||
public static final String COLUMNNAME_RealizedGain_Acct = "RealizedGain_Acct";
|
||||
|
||||
|
@ -1028,19 +1028,6 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getW_Inventory_Acct();
|
||||
|
||||
/** Column name Withholding_Acct */
|
||||
public static final String COLUMNNAME_Withholding_Acct = "Withholding_Acct";
|
||||
|
||||
/** Set Withholding.
|
||||
* Account for Withholdings
|
||||
*/
|
||||
public void setWithholding_Acct (int Withholding_Acct);
|
||||
|
||||
/** Get Withholding.
|
||||
* Account for Withholdings
|
||||
*/
|
||||
public int getWithholding_Acct();
|
||||
|
||||
/** Column name W_Revaluation_Acct */
|
||||
public static final String COLUMNNAME_W_Revaluation_Acct = "W_Revaluation_Acct";
|
||||
|
||||
|
@ -1054,6 +1041,19 @@ public interface I_C_AcctSchema_Default
|
|||
*/
|
||||
public int getW_Revaluation_Acct();
|
||||
|
||||
/** Column name Withholding_Acct */
|
||||
public static final String COLUMNNAME_Withholding_Acct = "Withholding_Acct";
|
||||
|
||||
/** Set Withholding.
|
||||
* Account for Withholdings
|
||||
*/
|
||||
public void setWithholding_Acct (int Withholding_Acct);
|
||||
|
||||
/** Get Withholding.
|
||||
* Account for Withholdings
|
||||
*/
|
||||
public int getWithholding_Acct();
|
||||
|
||||
/** Column name WriteOff_Acct */
|
||||
public static final String COLUMNNAME_WriteOff_Acct = "WriteOff_Acct";
|
||||
|
||||
|
|
|
@ -204,6 +204,21 @@ public interface I_C_AcctSchema_Element
|
|||
|
||||
public I_C_Project getC_Project() throws RuntimeException;
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -220,21 +235,6 @@ public interface I_C_AcctSchema_Element
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name ElementType */
|
||||
public static final String COLUMNNAME_ElementType = "ElementType";
|
||||
|
||||
|
|
|
@ -41,19 +41,6 @@ public interface I_C_BP_BankAccount
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AccountNo */
|
||||
public static final String COLUMNNAME_AccountNo = "AccountNo";
|
||||
|
||||
/** Set Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public void setAccountNo (String AccountNo);
|
||||
|
||||
/** Get Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public String getAccountNo();
|
||||
|
||||
/** Column name A_City */
|
||||
public static final String COLUMNNAME_A_City = "A_City";
|
||||
|
||||
|
@ -80,42 +67,6 @@ public interface I_C_BP_BankAccount
|
|||
*/
|
||||
public String getA_Country();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
/** Set User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public void setAD_User_ID (int AD_User_ID);
|
||||
|
||||
/** Get User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public int getAD_User_ID();
|
||||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name A_EMail */
|
||||
public static final String COLUMNNAME_A_EMail = "A_EMail";
|
||||
|
||||
|
@ -207,6 +158,55 @@ public interface I_C_BP_BankAccount
|
|||
*/
|
||||
public String getA_Zip();
|
||||
|
||||
/** Column name AccountNo */
|
||||
public static final String COLUMNNAME_AccountNo = "AccountNo";
|
||||
|
||||
/** Set Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public void setAccountNo (String AccountNo);
|
||||
|
||||
/** Get Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public String getAccountNo();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_User_ID */
|
||||
public static final String COLUMNNAME_AD_User_ID = "AD_User_ID";
|
||||
|
||||
/** Set User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public void setAD_User_ID (int AD_User_ID);
|
||||
|
||||
/** Get User/Contact.
|
||||
* User within the system - Internal or Business Partner Contact
|
||||
*/
|
||||
public int getAD_User_ID();
|
||||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name BankAccountType */
|
||||
public static final String COLUMNNAME_BankAccountType = "BankAccountType";
|
||||
|
||||
|
@ -248,6 +248,19 @@ public interface I_C_BP_BankAccount
|
|||
|
||||
public I_C_Bank getC_Bank() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID";
|
||||
|
||||
/** Set Partner Bank Account.
|
||||
* Bank Account of the Business Partner
|
||||
*/
|
||||
public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID);
|
||||
|
||||
/** Get Partner Bank Account.
|
||||
* Bank Account of the Business Partner
|
||||
*/
|
||||
public int getC_BP_BankAccount_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
|
@ -263,19 +276,6 @@ public interface I_C_BP_BankAccount
|
|||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID";
|
||||
|
||||
/** Set Partner Bank Account.
|
||||
* Bank Account of the Business Partner
|
||||
*/
|
||||
public void setC_BP_BankAccount_ID (int C_BP_BankAccount_ID);
|
||||
|
||||
/** Get Partner Bank Account.
|
||||
* Bank Account of the Business Partner
|
||||
*/
|
||||
public int getC_BP_BankAccount_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -105,22 +105,6 @@ public interface I_C_BP_Customer_Acct
|
|||
*/
|
||||
public int getC_Prepayment_Acct();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Receivable_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Acct = "C_Receivable_Acct";
|
||||
|
||||
|
@ -147,6 +131,22 @@ public interface I_C_BP_Customer_Acct
|
|||
*/
|
||||
public int getC_Receivable_Services_Acct();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -75,6 +75,19 @@ public interface I_C_BP_EDI
|
|||
*/
|
||||
public int getAD_Sequence_ID();
|
||||
|
||||
/** Column name C_BP_EDI_ID */
|
||||
public static final String COLUMNNAME_C_BP_EDI_ID = "C_BP_EDI_ID";
|
||||
|
||||
/** Set EDI Definition.
|
||||
* Electronic Data Interchange
|
||||
*/
|
||||
public void setC_BP_EDI_ID (int C_BP_EDI_ID);
|
||||
|
||||
/** Get EDI Definition.
|
||||
* Electronic Data Interchange
|
||||
*/
|
||||
public int getC_BP_EDI_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
|
@ -90,19 +103,6 @@ public interface I_C_BP_EDI
|
|||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_EDI_ID */
|
||||
public static final String COLUMNNAME_C_BP_EDI_ID = "C_BP_EDI_ID";
|
||||
|
||||
/** Set EDI Definition.
|
||||
* Electronic Data Interchange
|
||||
*/
|
||||
public void setC_BP_EDI_ID (int C_BP_EDI_ID);
|
||||
|
||||
/** Get EDI Definition.
|
||||
* Electronic Data Interchange
|
||||
*/
|
||||
public int getC_BP_EDI_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -105,22 +105,6 @@ public interface I_C_BP_Group_Acct
|
|||
*/
|
||||
public int getC_Prepayment_Acct();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Receivable_Acct */
|
||||
public static final String COLUMNNAME_C_Receivable_Acct = "C_Receivable_Acct";
|
||||
|
||||
|
@ -147,6 +131,22 @@ public interface I_C_BP_Group_Acct
|
|||
*/
|
||||
public int getC_Receivable_Services_Acct();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -62,6 +62,19 @@ public interface I_C_BP_Relation
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_BP_Relation_ID */
|
||||
public static final String COLUMNNAME_C_BP_Relation_ID = "C_BP_Relation_ID";
|
||||
|
||||
/** Set Partner Relation.
|
||||
* Business Partner Relation
|
||||
*/
|
||||
public void setC_BP_Relation_ID (int C_BP_Relation_ID);
|
||||
|
||||
/** Get Partner Relation.
|
||||
* Business Partner Relation
|
||||
*/
|
||||
public int getC_BP_Relation_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
|
@ -118,19 +131,6 @@ public interface I_C_BP_Relation
|
|||
*/
|
||||
public int getC_BPartnerRelation_Location_ID();
|
||||
|
||||
/** Column name C_BP_Relation_ID */
|
||||
public static final String COLUMNNAME_C_BP_Relation_ID = "C_BP_Relation_ID";
|
||||
|
||||
/** Set Partner Relation.
|
||||
* Business Partner Relation
|
||||
*/
|
||||
public void setC_BP_Relation_ID (int C_BP_Relation_ID);
|
||||
|
||||
/** Get Partner Relation.
|
||||
* Business Partner Relation
|
||||
*/
|
||||
public int getC_BP_Relation_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -77,6 +77,21 @@ public interface I_C_BP_Withholding
|
|||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_Withholding_ID */
|
||||
public static final String COLUMNNAME_C_Withholding_ID = "C_Withholding_ID";
|
||||
|
||||
/** Set Withholding.
|
||||
* Withholding type defined
|
||||
*/
|
||||
public void setC_Withholding_ID (int C_Withholding_ID);
|
||||
|
||||
/** Get Withholding.
|
||||
* Withholding type defined
|
||||
*/
|
||||
public int getC_Withholding_ID();
|
||||
|
||||
public I_C_Withholding getC_Withholding() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -93,21 +108,6 @@ public interface I_C_BP_Withholding
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Withholding_ID */
|
||||
public static final String COLUMNNAME_C_Withholding_ID = "C_Withholding_ID";
|
||||
|
||||
/** Set Withholding.
|
||||
* Withholding type defined
|
||||
*/
|
||||
public void setC_Withholding_ID (int C_Withholding_ID);
|
||||
|
||||
/** Get Withholding.
|
||||
* Withholding type defined
|
||||
*/
|
||||
public int getC_Withholding_ID();
|
||||
|
||||
public I_C_Withholding getC_Withholding() throws RuntimeException;
|
||||
|
||||
/** Column name ExemptReason */
|
||||
public static final String COLUMNNAME_ExemptReason = "ExemptReason";
|
||||
|
||||
|
|
|
@ -88,19 +88,6 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public String getAD_Language();
|
||||
|
||||
/** Column name AD_OrgBP_ID */
|
||||
public static final String COLUMNNAME_AD_OrgBP_ID = "AD_OrgBP_ID";
|
||||
|
||||
/** Set Linked Organization.
|
||||
* The Business Partner is another Organization for explicit Inter-Org transactions
|
||||
*/
|
||||
public void setAD_OrgBP_ID (String AD_OrgBP_ID);
|
||||
|
||||
/** Get Linked Organization.
|
||||
* The Business Partner is another Organization for explicit Inter-Org transactions
|
||||
*/
|
||||
public String getAD_OrgBP_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
|
@ -114,6 +101,19 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_OrgBP_ID */
|
||||
public static final String COLUMNNAME_AD_OrgBP_ID = "AD_OrgBP_ID";
|
||||
|
||||
/** Set Linked Organization.
|
||||
* The Business Partner is another Organization for explicit Inter-Org transactions
|
||||
*/
|
||||
public void setAD_OrgBP_ID (String AD_OrgBP_ID);
|
||||
|
||||
/** Get Linked Organization.
|
||||
* The Business Partner is another Organization for explicit Inter-Org transactions
|
||||
*/
|
||||
public String getAD_OrgBP_ID();
|
||||
|
||||
/** Column name BPartner_Parent_ID */
|
||||
public static final String COLUMNNAME_BPartner_Parent_ID = "BPartner_Parent_ID";
|
||||
|
||||
|
@ -127,19 +127,6 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public int getBPartner_Parent_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
/** Column name C_BP_Group_ID */
|
||||
public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID";
|
||||
|
||||
|
@ -155,6 +142,19 @@ public interface I_C_BPartner
|
|||
|
||||
public I_C_BP_Group getC_BP_Group() throws RuntimeException;
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
/** Column name C_Dunning_ID */
|
||||
public static final String COLUMNNAME_C_Dunning_ID = "C_Dunning_ID";
|
||||
|
||||
|
@ -215,6 +215,17 @@ public interface I_C_BPartner
|
|||
|
||||
public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException;
|
||||
|
||||
/** Column name C_TaxGroup_ID */
|
||||
public static final String COLUMNNAME_C_TaxGroup_ID = "C_TaxGroup_ID";
|
||||
|
||||
/** Set Tax Group */
|
||||
public void setC_TaxGroup_ID (int C_TaxGroup_ID);
|
||||
|
||||
/** Get Tax Group */
|
||||
public int getC_TaxGroup_ID();
|
||||
|
||||
public org.eevolution.model.I_C_TaxGroup getC_TaxGroup() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -231,17 +242,6 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_TaxGroup_ID */
|
||||
public static final String COLUMNNAME_C_TaxGroup_ID = "C_TaxGroup_ID";
|
||||
|
||||
/** Set Tax Group */
|
||||
public void setC_TaxGroup_ID (int C_TaxGroup_ID);
|
||||
|
||||
/** Get Tax Group */
|
||||
public int getC_TaxGroup_ID();
|
||||
|
||||
public org.eevolution.model.I_C_TaxGroup getC_TaxGroup() throws RuntimeException;
|
||||
|
||||
/** Column name DeliveryRule */
|
||||
public static final String COLUMNNAME_DeliveryRule = "DeliveryRule";
|
||||
|
||||
|
@ -791,19 +791,6 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public BigDecimal getSO_CreditLimit();
|
||||
|
||||
/** Column name SOCreditStatus */
|
||||
public static final String COLUMNNAME_SOCreditStatus = "SOCreditStatus";
|
||||
|
||||
/** Set Credit Status.
|
||||
* Business Partner Credit Status
|
||||
*/
|
||||
public void setSOCreditStatus (String SOCreditStatus);
|
||||
|
||||
/** Get Credit Status.
|
||||
* Business Partner Credit Status
|
||||
*/
|
||||
public String getSOCreditStatus();
|
||||
|
||||
/** Column name SO_CreditUsed */
|
||||
public static final String COLUMNNAME_SO_CreditUsed = "SO_CreditUsed";
|
||||
|
||||
|
@ -830,6 +817,19 @@ public interface I_C_BPartner
|
|||
*/
|
||||
public String getSO_Description();
|
||||
|
||||
/** Column name SOCreditStatus */
|
||||
public static final String COLUMNNAME_SOCreditStatus = "SOCreditStatus";
|
||||
|
||||
/** Set Credit Status.
|
||||
* Business Partner Credit Status
|
||||
*/
|
||||
public void setSOCreditStatus (String SOCreditStatus);
|
||||
|
||||
/** Get Credit Status.
|
||||
* Business Partner Credit Status
|
||||
*/
|
||||
public String getSOCreditStatus();
|
||||
|
||||
/** Column name TaxID */
|
||||
public static final String COLUMNNAME_TaxID = "TaxID";
|
||||
|
||||
|
|
|
@ -103,6 +103,21 @@ public interface I_C_BPartner_Location
|
|||
*/
|
||||
public int getC_Location_ID();
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -119,21 +134,6 @@ public interface I_C_BPartner_Location
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name Fax */
|
||||
public static final String COLUMNNAME_Fax = "Fax";
|
||||
|
||||
|
|
|
@ -119,19 +119,6 @@ public interface I_C_BPartner_Product
|
|||
*/
|
||||
public boolean isActive();
|
||||
|
||||
/** 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_ID */
|
||||
public static final String COLUMNNAME_M_Product_ID = "M_Product_ID";
|
||||
|
||||
|
@ -147,6 +134,19 @@ public interface I_C_BPartner_Product
|
|||
|
||||
public 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 QualityRating */
|
||||
public static final String COLUMNNAME_QualityRating = "QualityRating";
|
||||
|
||||
|
|
|
@ -101,19 +101,6 @@ public interface I_C_BankAccount
|
|||
*/
|
||||
public String getBBAN();
|
||||
|
||||
/** Column name C_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID";
|
||||
|
||||
/** Set Bank Account.
|
||||
* Account at the Bank
|
||||
*/
|
||||
public void setC_BankAccount_ID (int C_BankAccount_ID);
|
||||
|
||||
/** Get Bank Account.
|
||||
* Account at the Bank
|
||||
*/
|
||||
public int getC_BankAccount_ID();
|
||||
|
||||
/** Column name C_Bank_ID */
|
||||
public static final String COLUMNNAME_C_Bank_ID = "C_Bank_ID";
|
||||
|
||||
|
@ -129,6 +116,19 @@ public interface I_C_BankAccount
|
|||
|
||||
public I_C_Bank getC_Bank() throws RuntimeException;
|
||||
|
||||
/** Column name C_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID";
|
||||
|
||||
/** Set Bank Account.
|
||||
* Account at the Bank
|
||||
*/
|
||||
public void setC_BankAccount_ID (int C_BankAccount_ID);
|
||||
|
||||
/** Get Bank Account.
|
||||
* Account at the Bank
|
||||
*/
|
||||
public int getC_BankAccount_ID();
|
||||
|
||||
/** Column name C_Currency_ID */
|
||||
public static final String COLUMNNAME_C_Currency_ID = "C_Currency_ID";
|
||||
|
||||
|
|
|
@ -62,19 +62,6 @@ public interface I_C_BankAccountDoc
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_BankAccountDoc_ID */
|
||||
public static final String COLUMNNAME_C_BankAccountDoc_ID = "C_BankAccountDoc_ID";
|
||||
|
||||
/** Set Bank Account Document.
|
||||
* Checks, Transfers, etc.
|
||||
*/
|
||||
public void setC_BankAccountDoc_ID (int C_BankAccountDoc_ID);
|
||||
|
||||
/** Get Bank Account Document.
|
||||
* Checks, Transfers, etc.
|
||||
*/
|
||||
public int getC_BankAccountDoc_ID();
|
||||
|
||||
/** Column name C_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID";
|
||||
|
||||
|
@ -90,6 +77,19 @@ public interface I_C_BankAccountDoc
|
|||
|
||||
public I_C_BankAccount getC_BankAccount() throws RuntimeException;
|
||||
|
||||
/** Column name C_BankAccountDoc_ID */
|
||||
public static final String COLUMNNAME_C_BankAccountDoc_ID = "C_BankAccountDoc_ID";
|
||||
|
||||
/** Set Bank Account Document.
|
||||
* Checks, Transfers, etc.
|
||||
*/
|
||||
public void setC_BankAccountDoc_ID (int C_BankAccountDoc_ID);
|
||||
|
||||
/** Get Bank Account Document.
|
||||
* Checks, Transfers, etc.
|
||||
*/
|
||||
public int getC_BankAccountDoc_ID();
|
||||
|
||||
/** Column name Check_PrintFormat_ID */
|
||||
public static final String COLUMNNAME_Check_PrintFormat_ID = "Check_PrintFormat_ID";
|
||||
|
||||
|
|
|
@ -135,19 +135,6 @@ public interface I_C_BankStatementLine
|
|||
|
||||
public I_C_Currency getC_Currency() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name C_Invoice_ID */
|
||||
public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID";
|
||||
|
||||
|
@ -178,6 +165,19 @@ public interface I_C_BankStatementLine
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -118,6 +118,19 @@ public interface I_C_Cash
|
|||
|
||||
public I_C_Campaign getC_Campaign() throws RuntimeException;
|
||||
|
||||
/** Column name C_Cash_ID */
|
||||
public static final String COLUMNNAME_C_Cash_ID = "C_Cash_ID";
|
||||
|
||||
/** Set Cash Journal.
|
||||
* Cash Journal
|
||||
*/
|
||||
public void setC_Cash_ID (int C_Cash_ID);
|
||||
|
||||
/** Get Cash Journal.
|
||||
* Cash Journal
|
||||
*/
|
||||
public int getC_Cash_ID();
|
||||
|
||||
/** Column name C_CashBook_ID */
|
||||
public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID";
|
||||
|
||||
|
@ -133,19 +146,6 @@ public interface I_C_Cash
|
|||
|
||||
public I_C_CashBook getC_CashBook() throws RuntimeException;
|
||||
|
||||
/** Column name C_Cash_ID */
|
||||
public static final String COLUMNNAME_C_Cash_ID = "C_Cash_ID";
|
||||
|
||||
/** Set Cash Journal.
|
||||
* Cash Journal
|
||||
*/
|
||||
public void setC_Cash_ID (int C_Cash_ID);
|
||||
|
||||
/** Get Cash Journal.
|
||||
* Cash Journal
|
||||
*/
|
||||
public int getC_Cash_ID();
|
||||
|
||||
/** Column name C_Project_ID */
|
||||
public static final String COLUMNNAME_C_Project_ID = "C_Project_ID";
|
||||
|
||||
|
|
|
@ -77,6 +77,21 @@ public interface I_C_CashBook_Acct
|
|||
|
||||
public I_C_AcctSchema getC_AcctSchema() throws RuntimeException;
|
||||
|
||||
/** Column name C_CashBook_ID */
|
||||
public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID";
|
||||
|
||||
/** Set Cash Book.
|
||||
* Cash Book for recording petty cash transactions
|
||||
*/
|
||||
public void setC_CashBook_ID (int C_CashBook_ID);
|
||||
|
||||
/** Get Cash Book.
|
||||
* Cash Book for recording petty cash transactions
|
||||
*/
|
||||
public int getC_CashBook_ID();
|
||||
|
||||
public I_C_CashBook getC_CashBook() throws RuntimeException;
|
||||
|
||||
/** Column name CB_Asset_Acct */
|
||||
public static final String COLUMNNAME_CB_Asset_Acct = "CB_Asset_Acct";
|
||||
|
||||
|
@ -142,21 +157,6 @@ public interface I_C_CashBook_Acct
|
|||
*/
|
||||
public int getCB_Receipt_Acct();
|
||||
|
||||
/** Column name C_CashBook_ID */
|
||||
public static final String COLUMNNAME_C_CashBook_ID = "C_CashBook_ID";
|
||||
|
||||
/** Set Cash Book.
|
||||
* Cash Book for recording petty cash transactions
|
||||
*/
|
||||
public void setC_CashBook_ID (int C_CashBook_ID);
|
||||
|
||||
/** Get Cash Book.
|
||||
* Cash Book for recording petty cash transactions
|
||||
*/
|
||||
public int getC_CashBook_ID();
|
||||
|
||||
public I_C_CashBook getC_CashBook() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -75,19 +75,6 @@ public interface I_C_CashLine
|
|||
*/
|
||||
public BigDecimal getAmount();
|
||||
|
||||
/** Column name CashType */
|
||||
public static final String COLUMNNAME_CashType = "CashType";
|
||||
|
||||
/** Set Cash Type.
|
||||
* Source of Cash
|
||||
*/
|
||||
public void setCashType (String CashType);
|
||||
|
||||
/** Get Cash Type.
|
||||
* Source of Cash
|
||||
*/
|
||||
public String getCashType();
|
||||
|
||||
/** Column name C_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID";
|
||||
|
||||
|
@ -191,6 +178,19 @@ public interface I_C_CashLine
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name CashType */
|
||||
public static final String COLUMNNAME_CashType = "CashType";
|
||||
|
||||
/** Set Cash Type.
|
||||
* Source of Cash
|
||||
*/
|
||||
public void setCashType (String CashType);
|
||||
|
||||
/** Get Cash Type.
|
||||
* Source of Cash
|
||||
*/
|
||||
public String getCashType();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -101,6 +101,21 @@ public interface I_C_Charge
|
|||
|
||||
public I_C_ChargeType getC_ChargeType() throws RuntimeException;
|
||||
|
||||
/** Column name C_TaxCategory_ID */
|
||||
public static final String COLUMNNAME_C_TaxCategory_ID = "C_TaxCategory_ID";
|
||||
|
||||
/** Set Tax Category.
|
||||
* Tax Category
|
||||
*/
|
||||
public void setC_TaxCategory_ID (int C_TaxCategory_ID);
|
||||
|
||||
/** Get Tax Category.
|
||||
* Tax Category
|
||||
*/
|
||||
public int getC_TaxCategory_ID();
|
||||
|
||||
public I_C_TaxCategory getC_TaxCategory() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
|
@ -130,21 +145,6 @@ public interface I_C_Charge
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_TaxCategory_ID */
|
||||
public static final String COLUMNNAME_C_TaxCategory_ID = "C_TaxCategory_ID";
|
||||
|
||||
/** Set Tax Category.
|
||||
* Tax Category
|
||||
*/
|
||||
public void setC_TaxCategory_ID (int C_TaxCategory_ID);
|
||||
|
||||
/** Get Tax Category.
|
||||
* Tax Category
|
||||
*/
|
||||
public int getC_TaxCategory_ID();
|
||||
|
||||
public I_C_TaxCategory getC_TaxCategory() throws RuntimeException;
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
|
|
|
@ -103,6 +103,19 @@ public interface I_C_City
|
|||
|
||||
public I_C_Country getC_Country() throws RuntimeException;
|
||||
|
||||
/** Column name C_Region_ID */
|
||||
public static final String COLUMNNAME_C_Region_ID = "C_Region_ID";
|
||||
|
||||
/** Set Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public void setC_Region_ID (int C_Region_ID);
|
||||
|
||||
/** Get Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public int getC_Region_ID();
|
||||
|
||||
/** Column name Coordinates */
|
||||
public static final String COLUMNNAME_Coordinates = "Coordinates";
|
||||
|
||||
|
@ -132,19 +145,6 @@ public interface I_C_City
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Region_ID */
|
||||
public static final String COLUMNNAME_C_Region_ID = "C_Region_ID";
|
||||
|
||||
/** Set Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public void setC_Region_ID (int C_Region_ID);
|
||||
|
||||
/** Get Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public int getC_Region_ID();
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -146,19 +146,6 @@ public interface I_C_CommissionDetail
|
|||
|
||||
public I_C_InvoiceLine getC_InvoiceLine() throws RuntimeException;
|
||||
|
||||
/** Column name ConvertedAmt */
|
||||
public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt";
|
||||
|
||||
/** Set Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public void setConvertedAmt (BigDecimal ConvertedAmt);
|
||||
|
||||
/** Get Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public BigDecimal getConvertedAmt();
|
||||
|
||||
/** Column name C_OrderLine_ID */
|
||||
public static final String COLUMNNAME_C_OrderLine_ID = "C_OrderLine_ID";
|
||||
|
||||
|
@ -174,6 +161,19 @@ public interface I_C_CommissionDetail
|
|||
|
||||
public I_C_OrderLine getC_OrderLine() throws RuntimeException;
|
||||
|
||||
/** Column name ConvertedAmt */
|
||||
public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt";
|
||||
|
||||
/** Set Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public void setConvertedAmt (BigDecimal ConvertedAmt);
|
||||
|
||||
/** Get Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public BigDecimal getConvertedAmt();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -88,21 +88,6 @@ public interface I_C_CommissionLine
|
|||
*/
|
||||
public BigDecimal getAmtSubtract();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_Group_ID */
|
||||
public static final String COLUMNNAME_C_BP_Group_ID = "C_BP_Group_ID";
|
||||
|
||||
|
@ -118,6 +103,21 @@ public interface I_C_CommissionLine
|
|||
|
||||
public I_C_BP_Group getC_BP_Group() throws RuntimeException;
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_Commission_ID */
|
||||
public static final String COLUMNNAME_C_Commission_ID = "C_Commission_ID";
|
||||
|
||||
|
@ -146,6 +146,21 @@ public interface I_C_CommissionLine
|
|||
*/
|
||||
public int getC_CommissionLine_ID();
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name CommissionOrders */
|
||||
public static final String COLUMNNAME_CommissionOrders = "CommissionOrders";
|
||||
|
||||
|
@ -175,21 +190,6 @@ public interface I_C_CommissionLine
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_SalesRegion_ID */
|
||||
public static final String COLUMNNAME_C_SalesRegion_ID = "C_SalesRegion_ID";
|
||||
|
||||
/** Set Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public void setC_SalesRegion_ID (int C_SalesRegion_ID);
|
||||
|
||||
/** Get Sales Region.
|
||||
* Sales coverage region
|
||||
*/
|
||||
public int getC_SalesRegion_ID();
|
||||
|
||||
public I_C_SalesRegion getC_SalesRegion() throws RuntimeException;
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
|
|
|
@ -77,19 +77,6 @@ public interface I_C_DocType
|
|||
|
||||
public I_AD_PrintFormat getAD_PrintFormat() throws RuntimeException;
|
||||
|
||||
/** Column name C_DocTypeDifference_ID */
|
||||
public static final String COLUMNNAME_C_DocTypeDifference_ID = "C_DocTypeDifference_ID";
|
||||
|
||||
/** Set Difference Document.
|
||||
* Document type for generating in dispute Shipments
|
||||
*/
|
||||
public void setC_DocTypeDifference_ID (int C_DocTypeDifference_ID);
|
||||
|
||||
/** Get Difference Document.
|
||||
* Document type for generating in dispute Shipments
|
||||
*/
|
||||
public int getC_DocTypeDifference_ID();
|
||||
|
||||
/** Column name C_DocType_ID */
|
||||
public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID";
|
||||
|
||||
|
@ -103,6 +90,19 @@ public interface I_C_DocType
|
|||
*/
|
||||
public int getC_DocType_ID();
|
||||
|
||||
/** Column name C_DocTypeDifference_ID */
|
||||
public static final String COLUMNNAME_C_DocTypeDifference_ID = "C_DocTypeDifference_ID";
|
||||
|
||||
/** Set Difference Document.
|
||||
* Document type for generating in dispute Shipments
|
||||
*/
|
||||
public void setC_DocTypeDifference_ID (int C_DocTypeDifference_ID);
|
||||
|
||||
/** Get Difference Document.
|
||||
* Document type for generating in dispute Shipments
|
||||
*/
|
||||
public int getC_DocTypeDifference_ID();
|
||||
|
||||
/** Column name C_DocTypeInvoice_ID */
|
||||
public static final String COLUMNNAME_C_DocTypeInvoice_ID = "C_DocTypeInvoice_ID";
|
||||
|
||||
|
|
|
@ -62,19 +62,6 @@ public interface I_C_DocTypeCounter
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_DocTypeCounter_ID */
|
||||
public static final String COLUMNNAME_C_DocTypeCounter_ID = "C_DocTypeCounter_ID";
|
||||
|
||||
/** Set Counter Document.
|
||||
* Counter Document Relationship
|
||||
*/
|
||||
public void setC_DocTypeCounter_ID (int C_DocTypeCounter_ID);
|
||||
|
||||
/** Get Counter Document.
|
||||
* Counter Document Relationship
|
||||
*/
|
||||
public int getC_DocTypeCounter_ID();
|
||||
|
||||
/** Column name C_DocType_ID */
|
||||
public static final String COLUMNNAME_C_DocType_ID = "C_DocType_ID";
|
||||
|
||||
|
@ -90,6 +77,19 @@ public interface I_C_DocTypeCounter
|
|||
|
||||
public I_C_DocType getC_DocType() throws RuntimeException;
|
||||
|
||||
/** Column name C_DocTypeCounter_ID */
|
||||
public static final String COLUMNNAME_C_DocTypeCounter_ID = "C_DocTypeCounter_ID";
|
||||
|
||||
/** Set Counter Document.
|
||||
* Counter Document Relationship
|
||||
*/
|
||||
public void setC_DocTypeCounter_ID (int C_DocTypeCounter_ID);
|
||||
|
||||
/** Get Counter Document.
|
||||
* Counter Document Relationship
|
||||
*/
|
||||
public int getC_DocTypeCounter_ID();
|
||||
|
||||
/** Column name Counter_C_DocType_ID */
|
||||
public static final String COLUMNNAME_Counter_C_DocType_ID = "Counter_C_DocType_ID";
|
||||
|
||||
|
|
|
@ -86,6 +86,21 @@ public interface I_C_DunningLevel
|
|||
/** Get Dunning Level */
|
||||
public int getC_DunningLevel_ID();
|
||||
|
||||
/** Column name C_PaymentTerm_ID */
|
||||
public static final String COLUMNNAME_C_PaymentTerm_ID = "C_PaymentTerm_ID";
|
||||
|
||||
/** Set Payment Term.
|
||||
* The terms of Payment (timing, discount)
|
||||
*/
|
||||
public void setC_PaymentTerm_ID (int C_PaymentTerm_ID);
|
||||
|
||||
/** Get Payment Term.
|
||||
* The terms of Payment (timing, discount)
|
||||
*/
|
||||
public int getC_PaymentTerm_ID();
|
||||
|
||||
public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeFee */
|
||||
public static final String COLUMNNAME_ChargeFee = "ChargeFee";
|
||||
|
||||
|
@ -112,21 +127,6 @@ public interface I_C_DunningLevel
|
|||
*/
|
||||
public boolean isChargeInterest();
|
||||
|
||||
/** Column name C_PaymentTerm_ID */
|
||||
public static final String COLUMNNAME_C_PaymentTerm_ID = "C_PaymentTerm_ID";
|
||||
|
||||
/** Set Payment Term.
|
||||
* The terms of Payment (timing, discount)
|
||||
*/
|
||||
public void setC_PaymentTerm_ID (int C_PaymentTerm_ID);
|
||||
|
||||
/** Get Payment Term.
|
||||
* The terms of Payment (timing, discount)
|
||||
*/
|
||||
public int getC_PaymentTerm_ID();
|
||||
|
||||
public I_C_PaymentTerm getC_PaymentTerm() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -135,19 +135,6 @@ public interface I_C_DunningRunEntry
|
|||
|
||||
public I_C_Currency getC_Currency() throws RuntimeException;
|
||||
|
||||
/** Column name C_DunningRunEntry_ID */
|
||||
public static final String COLUMNNAME_C_DunningRunEntry_ID = "C_DunningRunEntry_ID";
|
||||
|
||||
/** Set Dunning Run Entry.
|
||||
* Dunning Run Entry
|
||||
*/
|
||||
public void setC_DunningRunEntry_ID (int C_DunningRunEntry_ID);
|
||||
|
||||
/** Get Dunning Run Entry.
|
||||
* Dunning Run Entry
|
||||
*/
|
||||
public int getC_DunningRunEntry_ID();
|
||||
|
||||
/** Column name C_DunningRun_ID */
|
||||
public static final String COLUMNNAME_C_DunningRun_ID = "C_DunningRun_ID";
|
||||
|
||||
|
@ -163,6 +150,19 @@ public interface I_C_DunningRunEntry
|
|||
|
||||
public I_C_DunningRun getC_DunningRun() throws RuntimeException;
|
||||
|
||||
/** Column name C_DunningRunEntry_ID */
|
||||
public static final String COLUMNNAME_C_DunningRunEntry_ID = "C_DunningRunEntry_ID";
|
||||
|
||||
/** Set Dunning Run Entry.
|
||||
* Dunning Run Entry
|
||||
*/
|
||||
public void setC_DunningRunEntry_ID (int C_DunningRunEntry_ID);
|
||||
|
||||
/** Get Dunning Run Entry.
|
||||
* Dunning Run Entry
|
||||
*/
|
||||
public int getC_DunningRunEntry_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -133,19 +133,6 @@ public interface I_C_DunningRunLine
|
|||
|
||||
public I_C_InvoicePaySchedule getC_InvoicePaySchedule() throws RuntimeException;
|
||||
|
||||
/** Column name ConvertedAmt */
|
||||
public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt";
|
||||
|
||||
/** Set Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public void setConvertedAmt (BigDecimal ConvertedAmt);
|
||||
|
||||
/** Get Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public BigDecimal getConvertedAmt();
|
||||
|
||||
/** Column name C_Payment_ID */
|
||||
public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID";
|
||||
|
||||
|
@ -161,6 +148,19 @@ public interface I_C_DunningRunLine
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name ConvertedAmt */
|
||||
public static final String COLUMNNAME_ConvertedAmt = "ConvertedAmt";
|
||||
|
||||
/** Set Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public void setConvertedAmt (BigDecimal ConvertedAmt);
|
||||
|
||||
/** Get Converted Amount.
|
||||
* Converted Amount
|
||||
*/
|
||||
public BigDecimal getConvertedAmt();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -247,19 +247,6 @@ public interface I_C_Invoice
|
|||
|
||||
public I_C_DunningLevel getC_DunningLevel() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name C_Invoice_ID */
|
||||
public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID";
|
||||
|
||||
|
@ -273,19 +260,6 @@ public interface I_C_Invoice
|
|||
*/
|
||||
public int getC_Invoice_ID();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name C_Order_ID */
|
||||
public static final String COLUMNNAME_C_Order_ID = "C_Order_ID";
|
||||
|
||||
|
@ -346,6 +320,32 @@ public interface I_C_Invoice
|
|||
|
||||
public I_C_Project getC_Project() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -165,6 +165,21 @@ public interface I_C_InvoiceBatchLine
|
|||
|
||||
public I_C_DocType getC_DocType() throws RuntimeException;
|
||||
|
||||
/** Column name C_Invoice_ID */
|
||||
public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID";
|
||||
|
||||
/** Set Invoice.
|
||||
* Invoice Identifier
|
||||
*/
|
||||
public void setC_Invoice_ID (int C_Invoice_ID);
|
||||
|
||||
/** Get Invoice.
|
||||
* Invoice Identifier
|
||||
*/
|
||||
public int getC_Invoice_ID();
|
||||
|
||||
public I_C_Invoice getC_Invoice() throws RuntimeException;
|
||||
|
||||
/** Column name C_InvoiceBatch_ID */
|
||||
public static final String COLUMNNAME_C_InvoiceBatch_ID = "C_InvoiceBatch_ID";
|
||||
|
||||
|
@ -193,21 +208,6 @@ public interface I_C_InvoiceBatchLine
|
|||
*/
|
||||
public int getC_InvoiceBatchLine_ID();
|
||||
|
||||
/** Column name C_Invoice_ID */
|
||||
public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID";
|
||||
|
||||
/** Set Invoice.
|
||||
* Invoice Identifier
|
||||
*/
|
||||
public void setC_Invoice_ID (int C_Invoice_ID);
|
||||
|
||||
/** Get Invoice.
|
||||
* Invoice Identifier
|
||||
*/
|
||||
public int getC_Invoice_ID();
|
||||
|
||||
public I_C_Invoice getC_Invoice() throws RuntimeException;
|
||||
|
||||
/** Column name C_InvoiceLine_ID */
|
||||
public static final String COLUMNNAME_C_InvoiceLine_ID = "C_InvoiceLine_ID";
|
||||
|
||||
|
@ -238,6 +238,21 @@ public interface I_C_InvoiceBatchLine
|
|||
|
||||
public I_C_Project getC_Project() throws RuntimeException;
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -254,21 +269,6 @@ public interface I_C_InvoiceBatchLine
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name DateAcct */
|
||||
public static final String COLUMNNAME_DateAcct = "DateAcct";
|
||||
|
||||
|
|
|
@ -89,6 +89,15 @@ public interface I_C_InvoiceLine
|
|||
/** Get Asset Related? */
|
||||
public boolean isA_CreateAsset();
|
||||
|
||||
/** Column name A_Processed */
|
||||
public static final String COLUMNNAME_A_Processed = "A_Processed";
|
||||
|
||||
/** Set A_Processed */
|
||||
public void setA_Processed (boolean A_Processed);
|
||||
|
||||
/** Get A_Processed */
|
||||
public boolean isA_Processed();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
|
@ -123,15 +132,6 @@ public interface I_C_InvoiceLine
|
|||
*/
|
||||
public int getAD_OrgTrx_ID();
|
||||
|
||||
/** Column name A_Processed */
|
||||
public static final String COLUMNNAME_A_Processed = "A_Processed";
|
||||
|
||||
/** Set A_Processed */
|
||||
public void setA_Processed (boolean A_Processed);
|
||||
|
||||
/** Get A_Processed */
|
||||
public boolean isA_Processed();
|
||||
|
||||
/** Column name C_Activity_ID */
|
||||
public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID";
|
||||
|
||||
|
@ -265,22 +265,6 @@ public interface I_C_InvoiceLine
|
|||
|
||||
public I_C_ProjectTask getC_ProjectTask() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
|
@ -311,6 +295,22 @@ public interface I_C_InvoiceLine
|
|||
|
||||
public I_C_UOM getC_UOM() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
|
|
|
@ -77,6 +77,21 @@ public interface I_C_InvoiceTax
|
|||
|
||||
public I_C_Invoice getC_Invoice() throws RuntimeException;
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -93,21 +108,6 @@ public interface I_C_InvoiceTax
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -62,6 +62,19 @@ public interface I_C_Job
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_Job_ID */
|
||||
public static final String COLUMNNAME_C_Job_ID = "C_Job_ID";
|
||||
|
||||
/** Set Position.
|
||||
* Job Position
|
||||
*/
|
||||
public void setC_Job_ID (int C_Job_ID);
|
||||
|
||||
/** Get Position.
|
||||
* Job Position
|
||||
*/
|
||||
public int getC_Job_ID();
|
||||
|
||||
/** Column name C_JobCategory_ID */
|
||||
public static final String COLUMNNAME_C_JobCategory_ID = "C_JobCategory_ID";
|
||||
|
||||
|
@ -77,19 +90,6 @@ public interface I_C_Job
|
|||
|
||||
public I_C_JobCategory getC_JobCategory() throws RuntimeException;
|
||||
|
||||
/** Column name C_Job_ID */
|
||||
public static final String COLUMNNAME_C_Job_ID = "C_Job_ID";
|
||||
|
||||
/** Set Position.
|
||||
* Job Position
|
||||
*/
|
||||
public void setC_Job_ID (int C_Job_ID);
|
||||
|
||||
/** Get Position.
|
||||
* Job Position
|
||||
*/
|
||||
public int getC_Job_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -77,19 +77,6 @@ public interface I_C_JobAssignment
|
|||
|
||||
public I_AD_User getAD_User() throws RuntimeException;
|
||||
|
||||
/** Column name C_JobAssignment_ID */
|
||||
public static final String COLUMNNAME_C_JobAssignment_ID = "C_JobAssignment_ID";
|
||||
|
||||
/** Set Position Assignment.
|
||||
* Assignemt of Employee (User) to Job Position
|
||||
*/
|
||||
public void setC_JobAssignment_ID (int C_JobAssignment_ID);
|
||||
|
||||
/** Get Position Assignment.
|
||||
* Assignemt of Employee (User) to Job Position
|
||||
*/
|
||||
public int getC_JobAssignment_ID();
|
||||
|
||||
/** Column name C_Job_ID */
|
||||
public static final String COLUMNNAME_C_Job_ID = "C_Job_ID";
|
||||
|
||||
|
@ -105,6 +92,19 @@ public interface I_C_JobAssignment
|
|||
|
||||
public I_C_Job getC_Job() throws RuntimeException;
|
||||
|
||||
/** Column name C_JobAssignment_ID */
|
||||
public static final String COLUMNNAME_C_JobAssignment_ID = "C_JobAssignment_ID";
|
||||
|
||||
/** Set Position Assignment.
|
||||
* Assignemt of Employee (User) to Job Position
|
||||
*/
|
||||
public void setC_JobAssignment_ID (int C_JobAssignment_ID);
|
||||
|
||||
/** Get Position Assignment.
|
||||
* Assignemt of Employee (User) to Job Position
|
||||
*/
|
||||
public int getC_JobAssignment_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -90,6 +90,21 @@ public interface I_C_JobRemuneration
|
|||
*/
|
||||
public int getC_JobRemuneration_ID();
|
||||
|
||||
/** Column name C_Remuneration_ID */
|
||||
public static final String COLUMNNAME_C_Remuneration_ID = "C_Remuneration_ID";
|
||||
|
||||
/** Set Remuneration.
|
||||
* Wage or Salary
|
||||
*/
|
||||
public void setC_Remuneration_ID (int C_Remuneration_ID);
|
||||
|
||||
/** Get Remuneration.
|
||||
* Wage or Salary
|
||||
*/
|
||||
public int getC_Remuneration_ID();
|
||||
|
||||
public I_C_Remuneration getC_Remuneration() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -106,21 +121,6 @@ public interface I_C_JobRemuneration
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Remuneration_ID */
|
||||
public static final String COLUMNNAME_C_Remuneration_ID = "C_Remuneration_ID";
|
||||
|
||||
/** Set Remuneration.
|
||||
* Wage or Salary
|
||||
*/
|
||||
public void setC_Remuneration_ID (int C_Remuneration_ID);
|
||||
|
||||
/** Get Remuneration.
|
||||
* Wage or Salary
|
||||
*/
|
||||
public int getC_Remuneration_ID();
|
||||
|
||||
public I_C_Remuneration getC_Remuneration() throws RuntimeException;
|
||||
|
||||
/** Column name Description */
|
||||
public static final String COLUMNNAME_Description = "Description";
|
||||
|
||||
|
|
|
@ -49,6 +49,19 @@ public interface I_C_Location
|
|||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name Address1 */
|
||||
public static final String COLUMNNAME_Address1 = "Address1";
|
||||
|
||||
|
@ -101,19 +114,6 @@ public interface I_C_Location
|
|||
*/
|
||||
public String getAddress4();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_City_ID */
|
||||
public static final String COLUMNNAME_C_City_ID = "C_City_ID";
|
||||
|
||||
|
@ -144,19 +144,6 @@ public interface I_C_Location
|
|||
|
||||
public I_C_Country getC_Country() throws RuntimeException;
|
||||
|
||||
/** Column name City */
|
||||
public static final String COLUMNNAME_City = "City";
|
||||
|
||||
/** Set City.
|
||||
* Identifies a City
|
||||
*/
|
||||
public void setCity (String City);
|
||||
|
||||
/** Get City.
|
||||
* Identifies a City
|
||||
*/
|
||||
public String getCity();
|
||||
|
||||
/** Column name C_Location_ID */
|
||||
public static final String COLUMNNAME_C_Location_ID = "C_Location_ID";
|
||||
|
||||
|
@ -170,6 +157,34 @@ public interface I_C_Location
|
|||
*/
|
||||
public int getC_Location_ID();
|
||||
|
||||
/** Column name C_Region_ID */
|
||||
public static final String COLUMNNAME_C_Region_ID = "C_Region_ID";
|
||||
|
||||
/** Set Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public void setC_Region_ID (int C_Region_ID);
|
||||
|
||||
/** Get Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public int getC_Region_ID();
|
||||
|
||||
public I_C_Region getC_Region() throws RuntimeException;
|
||||
|
||||
/** Column name City */
|
||||
public static final String COLUMNNAME_City = "City";
|
||||
|
||||
/** Set City.
|
||||
* Identifies a City
|
||||
*/
|
||||
public void setCity (String City);
|
||||
|
||||
/** Get City.
|
||||
* Identifies a City
|
||||
*/
|
||||
public String getCity();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -186,21 +201,6 @@ public interface I_C_Location
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Region_ID */
|
||||
public static final String COLUMNNAME_C_Region_ID = "C_Region_ID";
|
||||
|
||||
/** Set Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public void setC_Region_ID (int C_Region_ID);
|
||||
|
||||
/** Get Region.
|
||||
* Identifies a geographical Region
|
||||
*/
|
||||
public int getC_Region_ID();
|
||||
|
||||
public I_C_Region getC_Region() throws RuntimeException;
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -293,32 +293,6 @@ public interface I_C_Order
|
|||
*/
|
||||
public int getC_DocTypeTarget_ID();
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name C_Order_ID */
|
||||
public static final String COLUMNNAME_C_Order_ID = "C_Order_ID";
|
||||
|
||||
|
@ -392,6 +366,32 @@ public interface I_C_Order
|
|||
|
||||
public I_C_Project getC_Project() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -972,6 +972,19 @@ public interface I_C_Order
|
|||
/** Get Process Now */
|
||||
public boolean isProcessing();
|
||||
|
||||
/** Column name PromotionCode */
|
||||
public static final String COLUMNNAME_PromotionCode = "PromotionCode";
|
||||
|
||||
/** Set Promotion Code.
|
||||
* User entered promotion code at sales time
|
||||
*/
|
||||
public void setPromotionCode (String PromotionCode);
|
||||
|
||||
/** Get Promotion Code.
|
||||
* User entered promotion code at sales time
|
||||
*/
|
||||
public String getPromotionCode();
|
||||
|
||||
/** Column name Ref_Order_ID */
|
||||
public static final String COLUMNNAME_Ref_Order_ID = "Ref_Order_ID";
|
||||
|
||||
|
|
|
@ -238,22 +238,6 @@ public interface I_C_OrderLine
|
|||
|
||||
public I_C_ProjectTask getC_ProjectTask() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
|
@ -284,6 +268,22 @@ public interface I_C_OrderLine
|
|||
|
||||
public I_C_UOM getC_UOM() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
/** Get Created.
|
||||
* Date this record was created
|
||||
*/
|
||||
public Timestamp getCreated();
|
||||
|
||||
/** Column name CreatedBy */
|
||||
public static final String COLUMNNAME_CreatedBy = "CreatedBy";
|
||||
|
||||
/** Get Created By.
|
||||
* User who created this records
|
||||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name DateDelivered */
|
||||
public static final String COLUMNNAME_DateDelivered = "DateDelivered";
|
||||
|
||||
|
@ -468,6 +468,17 @@ public interface I_C_OrderLine
|
|||
|
||||
public I_M_Product getM_Product() throws RuntimeException;
|
||||
|
||||
/** Column name M_Promotion_ID */
|
||||
public static final String COLUMNNAME_M_Promotion_ID = "M_Promotion_ID";
|
||||
|
||||
/** Set Promotion */
|
||||
public void setM_Promotion_ID (int M_Promotion_ID);
|
||||
|
||||
/** Get Promotion */
|
||||
public int getM_Promotion_ID();
|
||||
|
||||
public I_M_Promotion getM_Promotion() throws RuntimeException;
|
||||
|
||||
/** Column name M_Shipper_ID */
|
||||
public static final String COLUMNNAME_M_Shipper_ID = "M_Shipper_ID";
|
||||
|
||||
|
|
|
@ -77,6 +77,21 @@ public interface I_C_OrderTax
|
|||
|
||||
public I_C_Order getC_Order() throws RuntimeException;
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -93,21 +108,6 @@ public interface I_C_OrderTax
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Tax_ID */
|
||||
public static final String COLUMNNAME_C_Tax_ID = "C_Tax_ID";
|
||||
|
||||
/** Set Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public void setC_Tax_ID (int C_Tax_ID);
|
||||
|
||||
/** Get Tax.
|
||||
* Tax identifier
|
||||
*/
|
||||
public int getC_Tax_ID();
|
||||
|
||||
public I_C_Tax getC_Tax() throws RuntimeException;
|
||||
|
||||
/** Column name IsActive */
|
||||
public static final String COLUMNNAME_IsActive = "IsActive";
|
||||
|
||||
|
|
|
@ -62,15 +62,6 @@ public interface I_C_POS
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name CashDrawer */
|
||||
public static final String COLUMNNAME_CashDrawer = "CashDrawer";
|
||||
|
||||
/** Set CashDrawer */
|
||||
public void setCashDrawer (String CashDrawer);
|
||||
|
||||
/** Get CashDrawer */
|
||||
public String getCashDrawer();
|
||||
|
||||
/** Column name C_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BankAccount_ID = "C_BankAccount_ID";
|
||||
|
||||
|
@ -157,6 +148,15 @@ public interface I_C_POS
|
|||
|
||||
public I_C_POSKeyLayout getC_POSKeyLayout() throws RuntimeException;
|
||||
|
||||
/** Column name CashDrawer */
|
||||
public static final String COLUMNNAME_CashDrawer = "CashDrawer";
|
||||
|
||||
/** Set CashDrawer */
|
||||
public void setCashDrawer (String CashDrawer);
|
||||
|
||||
/** Get CashDrawer */
|
||||
public String getCashDrawer();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -62,21 +62,6 @@ public interface I_C_PaySelectionCheck
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID";
|
||||
|
||||
|
@ -92,6 +77,21 @@ public interface I_C_PaySelectionCheck
|
|||
|
||||
public I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException;
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_Payment_ID */
|
||||
public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID";
|
||||
|
||||
|
@ -105,19 +105,6 @@ public interface I_C_PaySelectionCheck
|
|||
*/
|
||||
public int getC_Payment_ID();
|
||||
|
||||
/** Column name C_PaySelectionCheck_ID */
|
||||
public static final String COLUMNNAME_C_PaySelectionCheck_ID = "C_PaySelectionCheck_ID";
|
||||
|
||||
/** Set Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public void setC_PaySelectionCheck_ID (int C_PaySelectionCheck_ID);
|
||||
|
||||
/** Get Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public int getC_PaySelectionCheck_ID();
|
||||
|
||||
/** Column name C_PaySelection_ID */
|
||||
public static final String COLUMNNAME_C_PaySelection_ID = "C_PaySelection_ID";
|
||||
|
||||
|
@ -133,6 +120,19 @@ public interface I_C_PaySelectionCheck
|
|||
|
||||
public I_C_PaySelection getC_PaySelection() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaySelectionCheck_ID */
|
||||
public static final String COLUMNNAME_C_PaySelectionCheck_ID = "C_PaySelectionCheck_ID";
|
||||
|
||||
/** Set Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public void setC_PaySelectionCheck_ID (int C_PaySelectionCheck_ID);
|
||||
|
||||
/** Get Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public int getC_PaySelectionCheck_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -77,21 +77,6 @@ public interface I_C_PaySelectionLine
|
|||
|
||||
public I_C_Invoice getC_Invoice() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaySelectionCheck_ID */
|
||||
public static final String COLUMNNAME_C_PaySelectionCheck_ID = "C_PaySelectionCheck_ID";
|
||||
|
||||
/** Set Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public void setC_PaySelectionCheck_ID (int C_PaySelectionCheck_ID);
|
||||
|
||||
/** Get Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public int getC_PaySelectionCheck_ID();
|
||||
|
||||
public I_C_PaySelectionCheck getC_PaySelectionCheck() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaySelection_ID */
|
||||
public static final String COLUMNNAME_C_PaySelection_ID = "C_PaySelection_ID";
|
||||
|
||||
|
@ -107,6 +92,21 @@ public interface I_C_PaySelectionLine
|
|||
|
||||
public I_C_PaySelection getC_PaySelection() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaySelectionCheck_ID */
|
||||
public static final String COLUMNNAME_C_PaySelectionCheck_ID = "C_PaySelectionCheck_ID";
|
||||
|
||||
/** Set Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public void setC_PaySelectionCheck_ID (int C_PaySelectionCheck_ID);
|
||||
|
||||
/** Get Pay Selection Check.
|
||||
* Payment Selection Check
|
||||
*/
|
||||
public int getC_PaySelectionCheck_ID();
|
||||
|
||||
public I_C_PaySelectionCheck getC_PaySelectionCheck() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaySelectionLine_ID */
|
||||
public static final String COLUMNNAME_C_PaySelectionLine_ID = "C_PaySelectionLine_ID";
|
||||
|
||||
|
|
|
@ -41,19 +41,6 @@ public interface I_C_Payment
|
|||
|
||||
/** Load Meta Data */
|
||||
|
||||
/** Column name AccountNo */
|
||||
public static final String COLUMNNAME_AccountNo = "AccountNo";
|
||||
|
||||
/** Set Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public void setAccountNo (String AccountNo);
|
||||
|
||||
/** Get Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public String getAccountNo();
|
||||
|
||||
/** Column name A_City */
|
||||
public static final String COLUMNNAME_A_City = "A_City";
|
||||
|
||||
|
@ -80,40 +67,6 @@ public interface I_C_Payment
|
|||
*/
|
||||
public String getA_Country();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_OrgTrx_ID */
|
||||
public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID";
|
||||
|
||||
/** Set Trx Organization.
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public void setAD_OrgTrx_ID (int AD_OrgTrx_ID);
|
||||
|
||||
/** Get Trx Organization.
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public int getAD_OrgTrx_ID();
|
||||
|
||||
/** Column name A_EMail */
|
||||
public static final String COLUMNNAME_A_EMail = "A_EMail";
|
||||
|
||||
|
@ -205,6 +158,53 @@ public interface I_C_Payment
|
|||
*/
|
||||
public String getA_Zip();
|
||||
|
||||
/** Column name AccountNo */
|
||||
public static final String COLUMNNAME_AccountNo = "AccountNo";
|
||||
|
||||
/** Set Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public void setAccountNo (String AccountNo);
|
||||
|
||||
/** Get Account No.
|
||||
* Account Number
|
||||
*/
|
||||
public String getAccountNo();
|
||||
|
||||
/** Column name AD_Client_ID */
|
||||
public static final String COLUMNNAME_AD_Client_ID = "AD_Client_ID";
|
||||
|
||||
/** Get Client.
|
||||
* Client/Tenant for this installation.
|
||||
*/
|
||||
public int getAD_Client_ID();
|
||||
|
||||
/** Column name AD_Org_ID */
|
||||
public static final String COLUMNNAME_AD_Org_ID = "AD_Org_ID";
|
||||
|
||||
/** Set Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public void setAD_Org_ID (int AD_Org_ID);
|
||||
|
||||
/** Get Organization.
|
||||
* Organizational entity within client
|
||||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name AD_OrgTrx_ID */
|
||||
public static final String COLUMNNAME_AD_OrgTrx_ID = "AD_OrgTrx_ID";
|
||||
|
||||
/** Set Trx Organization.
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public void setAD_OrgTrx_ID (int AD_OrgTrx_ID);
|
||||
|
||||
/** Get Trx Organization.
|
||||
* Performing or initiating organization
|
||||
*/
|
||||
public int getAD_OrgTrx_ID();
|
||||
|
||||
/** Column name C_Activity_ID */
|
||||
public static final String COLUMNNAME_C_Activity_ID = "C_Activity_ID";
|
||||
|
||||
|
@ -235,21 +235,6 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_BankAccount getC_BankAccount() throws RuntimeException;
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_BP_BankAccount_ID */
|
||||
public static final String COLUMNNAME_C_BP_BankAccount_ID = "C_BP_BankAccount_ID";
|
||||
|
||||
|
@ -265,6 +250,21 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_BP_BankAccount getC_BP_BankAccount() throws RuntimeException;
|
||||
|
||||
/** Column name C_BPartner_ID */
|
||||
public static final String COLUMNNAME_C_BPartner_ID = "C_BPartner_ID";
|
||||
|
||||
/** Set Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public void setC_BPartner_ID (int C_BPartner_ID);
|
||||
|
||||
/** Get Business Partner .
|
||||
* Identifies a Business Partner
|
||||
*/
|
||||
public int getC_BPartner_ID();
|
||||
|
||||
public I_C_BPartner getC_BPartner() throws RuntimeException;
|
||||
|
||||
/** Column name C_Campaign_ID */
|
||||
public static final String COLUMNNAME_C_Campaign_ID = "C_Campaign_ID";
|
||||
|
||||
|
@ -355,32 +355,6 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_DocType getC_DocType() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name CheckNo */
|
||||
public static final String COLUMNNAME_CheckNo = "CheckNo";
|
||||
|
||||
/** Set Check No.
|
||||
* Check Number
|
||||
*/
|
||||
public void setCheckNo (String CheckNo);
|
||||
|
||||
/** Get Check No.
|
||||
* Check Number
|
||||
*/
|
||||
public String getCheckNo();
|
||||
|
||||
/** Column name C_Invoice_ID */
|
||||
public static final String COLUMNNAME_C_Invoice_ID = "C_Invoice_ID";
|
||||
|
||||
|
@ -411,6 +385,19 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_Order getC_Order() throws RuntimeException;
|
||||
|
||||
/** Column name C_Payment_ID */
|
||||
public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID";
|
||||
|
||||
/** Set Payment.
|
||||
* Payment identifier
|
||||
*/
|
||||
public void setC_Payment_ID (int C_Payment_ID);
|
||||
|
||||
/** Get Payment.
|
||||
* Payment identifier
|
||||
*/
|
||||
public int getC_Payment_ID();
|
||||
|
||||
/** Column name C_PaymentBatch_ID */
|
||||
public static final String COLUMNNAME_C_PaymentBatch_ID = "C_PaymentBatch_ID";
|
||||
|
||||
|
@ -426,19 +413,6 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_PaymentBatch getC_PaymentBatch() throws RuntimeException;
|
||||
|
||||
/** Column name C_Payment_ID */
|
||||
public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID";
|
||||
|
||||
/** Set Payment.
|
||||
* Payment identifier
|
||||
*/
|
||||
public void setC_Payment_ID (int C_Payment_ID);
|
||||
|
||||
/** Get Payment.
|
||||
* Payment identifier
|
||||
*/
|
||||
public int getC_Payment_ID();
|
||||
|
||||
/** Column name C_Project_ID */
|
||||
public static final String COLUMNNAME_C_Project_ID = "C_Project_ID";
|
||||
|
||||
|
@ -454,6 +428,32 @@ public interface I_C_Payment
|
|||
|
||||
public I_C_Project getC_Project() throws RuntimeException;
|
||||
|
||||
/** Column name ChargeAmt */
|
||||
public static final String COLUMNNAME_ChargeAmt = "ChargeAmt";
|
||||
|
||||
/** Set Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public void setChargeAmt (BigDecimal ChargeAmt);
|
||||
|
||||
/** Get Charge amount.
|
||||
* Charge Amount
|
||||
*/
|
||||
public BigDecimal getChargeAmt();
|
||||
|
||||
/** Column name CheckNo */
|
||||
public static final String COLUMNNAME_CheckNo = "CheckNo";
|
||||
|
||||
/** Set Check No.
|
||||
* Check Number
|
||||
*/
|
||||
public void setCheckNo (String CheckNo);
|
||||
|
||||
/** Get Check No.
|
||||
* Check Number
|
||||
*/
|
||||
public String getCheckNo();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -934,28 +934,6 @@ public interface I_C_Payment
|
|||
*/
|
||||
public boolean isR_CVV2Match();
|
||||
|
||||
/** Column name Ref_Payment_ID */
|
||||
public static final String COLUMNNAME_Ref_Payment_ID = "Ref_Payment_ID";
|
||||
|
||||
/** Set Referenced Payment */
|
||||
public void setRef_Payment_ID (int Ref_Payment_ID);
|
||||
|
||||
/** Get Referenced Payment */
|
||||
public int getRef_Payment_ID();
|
||||
|
||||
/** Column name Reversal_ID */
|
||||
public static final String COLUMNNAME_Reversal_ID = "Reversal_ID";
|
||||
|
||||
/** Set Reversal ID.
|
||||
* ID of document reversal
|
||||
*/
|
||||
public void setReversal_ID (int Reversal_ID);
|
||||
|
||||
/** Get Reversal ID.
|
||||
* ID of document reversal
|
||||
*/
|
||||
public int getReversal_ID();
|
||||
|
||||
/** Column name R_Info */
|
||||
public static final String COLUMNNAME_R_Info = "R_Info";
|
||||
|
||||
|
@ -969,19 +947,6 @@ public interface I_C_Payment
|
|||
*/
|
||||
public String getR_Info();
|
||||
|
||||
/** Column name RoutingNo */
|
||||
public static final String COLUMNNAME_RoutingNo = "RoutingNo";
|
||||
|
||||
/** Set Routing No.
|
||||
* Bank Routing Number
|
||||
*/
|
||||
public void setRoutingNo (String RoutingNo);
|
||||
|
||||
/** Get Routing No.
|
||||
* Bank Routing Number
|
||||
*/
|
||||
public String getRoutingNo();
|
||||
|
||||
/** Column name R_PnRef */
|
||||
public static final String COLUMNNAME_R_PnRef = "R_PnRef";
|
||||
|
||||
|
@ -1034,6 +999,41 @@ public interface I_C_Payment
|
|||
*/
|
||||
public String getR_Result();
|
||||
|
||||
/** Column name Ref_Payment_ID */
|
||||
public static final String COLUMNNAME_Ref_Payment_ID = "Ref_Payment_ID";
|
||||
|
||||
/** Set Referenced Payment */
|
||||
public void setRef_Payment_ID (int Ref_Payment_ID);
|
||||
|
||||
/** Get Referenced Payment */
|
||||
public int getRef_Payment_ID();
|
||||
|
||||
/** Column name Reversal_ID */
|
||||
public static final String COLUMNNAME_Reversal_ID = "Reversal_ID";
|
||||
|
||||
/** Set Reversal ID.
|
||||
* ID of document reversal
|
||||
*/
|
||||
public void setReversal_ID (int Reversal_ID);
|
||||
|
||||
/** Get Reversal ID.
|
||||
* ID of document reversal
|
||||
*/
|
||||
public int getReversal_ID();
|
||||
|
||||
/** Column name RoutingNo */
|
||||
public static final String COLUMNNAME_RoutingNo = "RoutingNo";
|
||||
|
||||
/** Set Routing No.
|
||||
* Bank Routing Number
|
||||
*/
|
||||
public void setRoutingNo (String RoutingNo);
|
||||
|
||||
/** Get Routing No.
|
||||
* Bank Routing Number
|
||||
*/
|
||||
public String getRoutingNo();
|
||||
|
||||
/** Column name Swipe */
|
||||
public static final String COLUMNNAME_Swipe = "Swipe";
|
||||
|
||||
|
|
|
@ -105,19 +105,6 @@ public interface I_C_PaymentAllocate
|
|||
|
||||
public I_C_Invoice getC_Invoice() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaymentAllocate_ID */
|
||||
public static final String COLUMNNAME_C_PaymentAllocate_ID = "C_PaymentAllocate_ID";
|
||||
|
||||
/** Set Allocate Payment.
|
||||
* Allocate Payment to Invoices
|
||||
*/
|
||||
public void setC_PaymentAllocate_ID (int C_PaymentAllocate_ID);
|
||||
|
||||
/** Get Allocate Payment.
|
||||
* Allocate Payment to Invoices
|
||||
*/
|
||||
public int getC_PaymentAllocate_ID();
|
||||
|
||||
/** Column name C_Payment_ID */
|
||||
public static final String COLUMNNAME_C_Payment_ID = "C_Payment_ID";
|
||||
|
||||
|
@ -133,6 +120,19 @@ public interface I_C_PaymentAllocate
|
|||
|
||||
public I_C_Payment getC_Payment() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaymentAllocate_ID */
|
||||
public static final String COLUMNNAME_C_PaymentAllocate_ID = "C_PaymentAllocate_ID";
|
||||
|
||||
/** Set Allocate Payment.
|
||||
* Allocate Payment to Invoices
|
||||
*/
|
||||
public void setC_PaymentAllocate_ID (int C_PaymentAllocate_ID);
|
||||
|
||||
/** Get Allocate Payment.
|
||||
* Allocate Payment to Invoices
|
||||
*/
|
||||
public int getC_PaymentAllocate_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -235,6 +235,19 @@ public interface I_C_PaymentProcessor
|
|||
|
||||
public I_C_Currency getC_Currency() throws RuntimeException;
|
||||
|
||||
/** Column name C_PaymentProcessor_ID */
|
||||
public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID";
|
||||
|
||||
/** Set Payment Processor.
|
||||
* Payment processor for electronic payments
|
||||
*/
|
||||
public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID);
|
||||
|
||||
/** Get Payment Processor.
|
||||
* Payment processor for electronic payments
|
||||
*/
|
||||
public int getC_PaymentProcessor_ID();
|
||||
|
||||
/** Column name Commission */
|
||||
public static final String COLUMNNAME_Commission = "Commission";
|
||||
|
||||
|
@ -261,19 +274,6 @@ public interface I_C_PaymentProcessor
|
|||
*/
|
||||
public BigDecimal getCostPerTrx();
|
||||
|
||||
/** Column name C_PaymentProcessor_ID */
|
||||
public static final String COLUMNNAME_C_PaymentProcessor_ID = "C_PaymentProcessor_ID";
|
||||
|
||||
/** Set Payment Processor.
|
||||
* Payment processor for electronic payments
|
||||
*/
|
||||
public void setC_PaymentProcessor_ID (int C_PaymentProcessor_ID);
|
||||
|
||||
/** Get Payment Processor.
|
||||
* Payment processor for electronic payments
|
||||
*/
|
||||
public int getC_PaymentProcessor_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -75,6 +75,21 @@ public interface I_C_Period
|
|||
*/
|
||||
public int getC_Period_ID();
|
||||
|
||||
/** Column name C_Year_ID */
|
||||
public static final String COLUMNNAME_C_Year_ID = "C_Year_ID";
|
||||
|
||||
/** Set Year.
|
||||
* Calendar Year
|
||||
*/
|
||||
public void setC_Year_ID (int C_Year_ID);
|
||||
|
||||
/** Get Year.
|
||||
* Calendar Year
|
||||
*/
|
||||
public int getC_Year_ID();
|
||||
|
||||
public I_C_Year getC_Year() throws RuntimeException;
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
@ -91,21 +106,6 @@ public interface I_C_Period
|
|||
*/
|
||||
public int getCreatedBy();
|
||||
|
||||
/** Column name C_Year_ID */
|
||||
public static final String COLUMNNAME_C_Year_ID = "C_Year_ID";
|
||||
|
||||
/** Set Year.
|
||||
* Calendar Year
|
||||
*/
|
||||
public void setC_Year_ID (int C_Year_ID);
|
||||
|
||||
/** Get Year.
|
||||
* Calendar Year
|
||||
*/
|
||||
public int getC_Year_ID();
|
||||
|
||||
public I_C_Year getC_Year() throws RuntimeException;
|
||||
|
||||
/** Column name EndDate */
|
||||
public static final String COLUMNNAME_EndDate = "EndDate";
|
||||
|
||||
|
|
|
@ -62,15 +62,6 @@ public interface I_C_PeriodControl
|
|||
*/
|
||||
public int getAD_Org_ID();
|
||||
|
||||
/** Column name C_PeriodControl_ID */
|
||||
public static final String COLUMNNAME_C_PeriodControl_ID = "C_PeriodControl_ID";
|
||||
|
||||
/** Set Period Control */
|
||||
public void setC_PeriodControl_ID (int C_PeriodControl_ID);
|
||||
|
||||
/** Get Period Control */
|
||||
public int getC_PeriodControl_ID();
|
||||
|
||||
/** Column name C_Period_ID */
|
||||
public static final String COLUMNNAME_C_Period_ID = "C_Period_ID";
|
||||
|
||||
|
@ -86,6 +77,15 @@ public interface I_C_PeriodControl
|
|||
|
||||
public I_C_Period getC_Period() throws RuntimeException;
|
||||
|
||||
/** Column name C_PeriodControl_ID */
|
||||
public static final String COLUMNNAME_C_PeriodControl_ID = "C_PeriodControl_ID";
|
||||
|
||||
/** Set Period Control */
|
||||
public void setC_PeriodControl_ID (int C_PeriodControl_ID);
|
||||
|
||||
/** Get Period Control */
|
||||
public int getC_PeriodControl_ID();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
|
@ -150,45 +150,6 @@ public interface I_C_Project
|
|||
|
||||
public I_C_Currency getC_Currency() throws RuntimeException;
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name CommittedQty */
|
||||
public static final String COLUMNNAME_CommittedQty = "CommittedQty";
|
||||
|
||||
/** Set Committed Quantity.
|
||||
* The (legal) commitment Quantity
|
||||
*/
|
||||
public void setCommittedQty (BigDecimal CommittedQty);
|
||||
|
||||
/** Get Committed Quantity.
|
||||
* The (legal) commitment Quantity
|
||||
*/
|
||||
public BigDecimal getCommittedQty();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name C_PaymentTerm_ID */
|
||||
public static final String COLUMNNAME_C_PaymentTerm_ID = "C_PaymentTerm_ID";
|
||||
|
||||
|
@ -245,6 +206,45 @@ public interface I_C_Project
|
|||
*/
|
||||
public String getC_ProjectType_ID();
|
||||
|
||||
/** Column name CommittedAmt */
|
||||
public static final String COLUMNNAME_CommittedAmt = "CommittedAmt";
|
||||
|
||||
/** Set Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public void setCommittedAmt (BigDecimal CommittedAmt);
|
||||
|
||||
/** Get Committed Amount.
|
||||
* The (legal) commitment amount
|
||||
*/
|
||||
public BigDecimal getCommittedAmt();
|
||||
|
||||
/** Column name CommittedQty */
|
||||
public static final String COLUMNNAME_CommittedQty = "CommittedQty";
|
||||
|
||||
/** Set Committed Quantity.
|
||||
* The (legal) commitment Quantity
|
||||
*/
|
||||
public void setCommittedQty (BigDecimal CommittedQty);
|
||||
|
||||
/** Get Committed Quantity.
|
||||
* The (legal) commitment Quantity
|
||||
*/
|
||||
public BigDecimal getCommittedQty();
|
||||
|
||||
/** Column name CopyFrom */
|
||||
public static final String COLUMNNAME_CopyFrom = "CopyFrom";
|
||||
|
||||
/** Set Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public void setCopyFrom (String CopyFrom);
|
||||
|
||||
/** Get Copy From.
|
||||
* Copy From Record
|
||||
*/
|
||||
public String getCopyFrom();
|
||||
|
||||
/** Column name Created */
|
||||
public static final String COLUMNNAME_Created = "Created";
|
||||
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue