/****************************************************************************** * Product: iDempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2012 ComPiere, Inc. All Rights Reserved. * * This program is free software, you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY, without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program, if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via info@compiere.org or http://www.compiere.org/license.html * *****************************************************************************/ /** Generated Model - DO NOT CHANGE */ package org.eevolution.model; import java.sql.ResultSet; import java.sql.Timestamp; import java.util.Properties; import org.compiere.model.*; import org.compiere.util.KeyNamePair; /** Generated Model for HR_Period * @author iDempiere (generated) * @version Release 12 - $Id$ */ @org.adempiere.base.Model(table="HR_Period") public class X_HR_Period extends PO implements I_HR_Period, I_Persistent { /** * */ private static final long serialVersionUID = 20241222L; /** Standard Constructor */ public X_HR_Period (Properties ctx, int HR_Period_ID, String trxName) { super (ctx, HR_Period_ID, trxName); /** if (HR_Period_ID == 0) { setC_Period_ID (0); setC_Year_ID (0); setDateAcct (new Timestamp( System.currentTimeMillis() )); setHR_Payroll_ID (0); setHR_Period_ID (0); setName (null); setPeriodNo (0); setStartDate (new Timestamp( System.currentTimeMillis() )); } */ } /** Standard Constructor */ public X_HR_Period (Properties ctx, int HR_Period_ID, String trxName, String ... virtualColumns) { super (ctx, HR_Period_ID, trxName, virtualColumns); /** if (HR_Period_ID == 0) { setC_Period_ID (0); setC_Year_ID (0); setDateAcct (new Timestamp( System.currentTimeMillis() )); setHR_Payroll_ID (0); setHR_Period_ID (0); setName (null); setPeriodNo (0); setStartDate (new Timestamp( System.currentTimeMillis() )); } */ } /** Standard Constructor */ public X_HR_Period (Properties ctx, String HR_Period_UU, String trxName) { super (ctx, HR_Period_UU, trxName); /** if (HR_Period_UU == null) { setC_Period_ID (0); setC_Year_ID (0); setDateAcct (new Timestamp( System.currentTimeMillis() )); setHR_Payroll_ID (0); setHR_Period_ID (0); setName (null); setPeriodNo (0); setStartDate (new Timestamp( System.currentTimeMillis() )); } */ } /** Standard Constructor */ public X_HR_Period (Properties ctx, String HR_Period_UU, String trxName, String ... virtualColumns) { super (ctx, HR_Period_UU, trxName, virtualColumns); /** if (HR_Period_UU == null) { setC_Period_ID (0); setC_Year_ID (0); setDateAcct (new Timestamp( System.currentTimeMillis() )); setHR_Payroll_ID (0); setHR_Period_ID (0); setName (null); setPeriodNo (0); setStartDate (new Timestamp( System.currentTimeMillis() )); } */ } /** Load Constructor */ public X_HR_Period (Properties ctx, ResultSet rs, String trxName) { super (ctx, rs, trxName); } /** AccessLevel * @return 3 - Client - Org */ protected int get_AccessLevel() { return accessLevel.intValue(); } /** Load Meta Data */ protected POInfo initPO (Properties ctx) { POInfo poi = POInfo.getPOInfo (ctx, Table_ID, get_TrxName()); return poi; } public String toString() { StringBuilder sb = new StringBuilder ("X_HR_Period[") .append(get_ID()).append(",Name=").append(getName()).append("]"); return sb.toString(); } public org.compiere.model.I_C_Period getC_Period() throws RuntimeException { return (org.compiere.model.I_C_Period)MTable.get(getCtx(), org.compiere.model.I_C_Period.Table_ID) .getPO(getC_Period_ID(), get_TrxName()); } /** Set Period. @param C_Period_ID Period of the Calendar */ public void setC_Period_ID (int C_Period_ID) { if (C_Period_ID < 1) set_Value (COLUMNNAME_C_Period_ID, null); else set_Value (COLUMNNAME_C_Period_ID, Integer.valueOf(C_Period_ID)); } /** Get Period. @return Period of the Calendar */ public int getC_Period_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Period_ID); if (ii == null) return 0; return ii.intValue(); } public org.compiere.model.I_C_Year getC_Year() throws RuntimeException { return (org.compiere.model.I_C_Year)MTable.get(getCtx(), org.compiere.model.I_C_Year.Table_ID) .getPO(getC_Year_ID(), get_TrxName()); } /** Set Year. @param C_Year_ID Calendar Year */ public void setC_Year_ID (int C_Year_ID) { if (C_Year_ID < 1) set_Value (COLUMNNAME_C_Year_ID, null); else set_Value (COLUMNNAME_C_Year_ID, Integer.valueOf(C_Year_ID)); } /** Get Year. @return Calendar Year */ public int getC_Year_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_C_Year_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Account Date. @param DateAcct Accounting Date */ public void setDateAcct (Timestamp DateAcct) { set_Value (COLUMNNAME_DateAcct, DateAcct); } /** Get Account Date. @return Accounting Date */ public Timestamp getDateAcct() { return (Timestamp)get_Value(COLUMNNAME_DateAcct); } /** Set Description. @param Description Optional short description of the record */ public void setDescription (String Description) { set_Value (COLUMNNAME_Description, Description); } /** Get Description. @return Optional short description of the record */ public String getDescription() { return (String)get_Value(COLUMNNAME_Description); } /** Set End Date. @param EndDate Last effective date (inclusive) */ public void setEndDate (Timestamp EndDate) { set_Value (COLUMNNAME_EndDate, EndDate); } /** Get End Date. @return Last effective date (inclusive) */ public Timestamp getEndDate() { return (Timestamp)get_Value(COLUMNNAME_EndDate); } public org.eevolution.model.I_HR_Payroll getHR_Payroll() throws RuntimeException { return (org.eevolution.model.I_HR_Payroll)MTable.get(getCtx(), org.eevolution.model.I_HR_Payroll.Table_ID) .getPO(getHR_Payroll_ID(), get_TrxName()); } /** Set Payroll. @param HR_Payroll_ID Payroll */ public void setHR_Payroll_ID (int HR_Payroll_ID) { if (HR_Payroll_ID < 1) set_Value (COLUMNNAME_HR_Payroll_ID, null); else set_Value (COLUMNNAME_HR_Payroll_ID, Integer.valueOf(HR_Payroll_ID)); } /** Get Payroll. @return Payroll */ public int getHR_Payroll_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_HR_Payroll_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Payroll Period. @param HR_Period_ID Payroll Period */ public void setHR_Period_ID (int HR_Period_ID) { if (HR_Period_ID < 1) set_ValueNoCheck (COLUMNNAME_HR_Period_ID, null); else set_ValueNoCheck (COLUMNNAME_HR_Period_ID, Integer.valueOf(HR_Period_ID)); } /** Get Payroll Period. @return Payroll Period */ public int getHR_Period_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_HR_Period_ID); if (ii == null) return 0; return ii.intValue(); } /** Set HR_Period_UU. @param HR_Period_UU HR_Period_UU */ public void setHR_Period_UU (String HR_Period_UU) { set_Value (COLUMNNAME_HR_Period_UU, HR_Period_UU); } /** Get HR_Period_UU. @return HR_Period_UU */ public String getHR_Period_UU() { return (String)get_Value(COLUMNNAME_HR_Period_UU); } public org.eevolution.model.I_HR_Year getHR_Year() throws RuntimeException { return (org.eevolution.model.I_HR_Year)MTable.get(getCtx(), org.eevolution.model.I_HR_Year.Table_ID) .getPO(getHR_Year_ID(), get_TrxName()); } /** Set Payroll Year. @param HR_Year_ID Payroll Year */ public void setHR_Year_ID (int HR_Year_ID) { if (HR_Year_ID < 1) set_ValueNoCheck (COLUMNNAME_HR_Year_ID, null); else set_ValueNoCheck (COLUMNNAME_HR_Year_ID, Integer.valueOf(HR_Year_ID)); } /** Get Payroll Year. @return Payroll Year */ public int getHR_Year_ID() { Integer ii = (Integer)get_Value(COLUMNNAME_HR_Year_ID); if (ii == null) return 0; return ii.intValue(); } /** Set Name. @param Name Alphanumeric identifier of the entity */ public void setName (String Name) { set_Value (COLUMNNAME_Name, Name); } /** Get Name. @return Alphanumeric identifier of the entity */ public String getName() { return (String)get_Value(COLUMNNAME_Name); } /** Get Record ID/ColumnName @return ID/ColumnName pair */ public KeyNamePair getKeyNamePair() { return new KeyNamePair(get_ID(), getName()); } /** Set Period Action. @param PeriodAction Action taken for this period */ public void setPeriodAction (String PeriodAction) { set_Value (COLUMNNAME_PeriodAction, PeriodAction); } /** Get Period Action. @return Action taken for this period */ public String getPeriodAction() { return (String)get_Value(COLUMNNAME_PeriodAction); } /** Set Period No. @param PeriodNo Unique Period Number */ public void setPeriodNo (int PeriodNo) { set_Value (COLUMNNAME_PeriodNo, Integer.valueOf(PeriodNo)); } /** Get Period No. @return Unique Period Number */ public int getPeriodNo() { Integer ii = (Integer)get_Value(COLUMNNAME_PeriodNo); if (ii == null) return 0; return ii.intValue(); } /** Set Period Status. @param PeriodStatus Current state of this period */ public void setPeriodStatus (String PeriodStatus) { set_Value (COLUMNNAME_PeriodStatus, PeriodStatus); } /** Get Period Status. @return Current state of this period */ public String getPeriodStatus() { return (String)get_Value(COLUMNNAME_PeriodStatus); } /** Set Processed. @param Processed The document has been processed */ public void setProcessed (boolean Processed) { set_Value (COLUMNNAME_Processed, Boolean.valueOf(Processed)); } /** Get Processed. @return The document has been processed */ public boolean isProcessed() { Object oo = get_Value(COLUMNNAME_Processed); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Process Now. @param Processing Process Now */ public void setProcessing (boolean Processing) { set_Value (COLUMNNAME_Processing, Boolean.valueOf(Processing)); } /** Get Process Now. @return Process Now */ public boolean isProcessing() { Object oo = get_Value(COLUMNNAME_Processing); if (oo != null) { if (oo instanceof Boolean) return ((Boolean)oo).booleanValue(); return "Y".equals(oo); } return false; } /** Set Start Date. @param StartDate First effective day (inclusive) */ public void setStartDate (Timestamp StartDate) { set_Value (COLUMNNAME_StartDate, StartDate); } /** Get Start Date. @return First effective day (inclusive) */ public Timestamp getStartDate() { return (Timestamp)get_Value(COLUMNNAME_StartDate); } }