View source | Discuss this page | Page history | Printable version   

ERP/3.0/Developers Guide/Reference/Entity Model/TimeAndExpenseSheetLineV

This article is protected against manual editing because it is automatically generated from Openbravo meta-data. Learn more about writing and translating such documents.
Back button.png   Back to ERP/3.0/Developers_Guide/Reference/Entity_Model#TimeAndExpenseSheetLineV


TimeAndExpenseSheetLineV

View and modify Time and Expense Report Lines. It lists expense items for the business partner on the expense header where the expense lines were not invoiced yet.

To the database table (S_TimeExpenseLine_V) of this entity.

Properties

Note:

Property Column Constraints Type Description
id* S_TimeExpenseLine_ID Mandatory
Max Length: 32
java.lang.String The ID identifies a unique record
client AD_Client_ID Mandatory
ADClient A Client is a company or a legal entity. You cannot share data between Clients.
organization AD_Org_ID Mandatory
Organization An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.
active IsActive Mandatory
java.lang.Boolean There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reporting. There are two reasons for de-activating and not deleting records:

(1) The system requires the record for auditing purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are existing invoices for it. By de-activating the Business Partner you prevent it from being used in future transactions.

creationDate Created Mandatory
java.util.Date The Created field indicates the date that this record was created.
createdBy Createdby Mandatory
ADUser The Created By field indicates the user who created this record.
updated Updated Mandatory
java.util.Date The Updated field indicates the date that this record was updated.
updatedBy Updatedby Mandatory
ADUser The Updated By field indicates the user who updated this record.
expenseSheet S_TimeExpense_ID Mandatory
TimeAndExpenseSheet The ID identifies a unique record for the expense report
lineNo# Line Mandatory
java.lang.Long Indicates the unique line for a document. It will also control the display order of the lines within a document.
timeSheet IsTimeReport Mandatory
java.lang.Boolean The line contains only time information
reportDate Datereport Mandatory
java.util.Date Date of Expense/Time Report
product M_Product_ID Product Identifies an item which is either purchased or sold in this organization.
quantity Qty java.math.BigDecimal The Quantity indicates the number of a specific product or item for this document.
expenseAmount Expenseamt java.math.BigDecimal Expense amount in currency
currency C_Currency_ID Currency Indicates the currency to be used when processing this document.
convertedAmount ConvertedAmt java.math.BigDecimal The Converted Amount is the result of multiplying the Source Amount by the Conversion Rate for this target currency.
resourceAssignment S_ResourceAssignment_ID ResourceAssignment The ID identifies a unique record
description Description Max Length: 255
java.lang.String A description is limited to 255 characters.
comments Note Max Length: 255
java.lang.String The Note field allows for optional entry of user defined information regarding this record
reinvoice IsInvoiced Mandatory
java.lang.Boolean Indicator if invoiced
project C_Project_ID Project Identifier of a project defined within the Project & Service Management module.
activity C_Activity_ID MaterialMgmtABCActivity Activities indicate tasks that are performed and used to utilize Activity based Costing
salesCampaign C_Campaign_ID MarketingCampaign The Campaign defines a unique marketing program. Projects can be associated with a pre defined Marketing Campaign. You can then report based on a specific Campaign.
invoiceLine C_InvoiceLine_ID InvoiceLine The Invoice Line uniquely identifies a single line of an Invoice.
invoicePrice InvoicePrice java.math.BigDecimal Unit Price in the currency of the business partner! If it is 0, the standard price of the sales price list of the business partner (customer) is used.
uOM C_UOM_ID UOM The UOM defines a unique non monetary unit of measure
salesOrderLine C_OrderLine_ID OrderLine A unique identifier and a reference to a sales order line (product).
projectPhase C_ProjectPhase_ID ProjectPhase Identifies a phase for a particular project.
projectTask C_ProjectTask_ID ProjectTask A Project Task in a Project Phase represents the actual work.
timeType S_Timetype_ID TimeType Differentiate time types for reporting purposes (In parallel to Activities)
businessPartner C_BPartner_ID Mandatory
BusinessPartner A Business Partner is anyone with whom you transact. This can include a customer, vendor, employee or any combination of these.
expenseDate Dateexpense java.util.Date Date of expense
chargedBusinessPartner TEL_C_Bpartner_ID BusinessPartner A Business Partner is anyone with whom you transact. This can include a customer, vendor, employee or any combination of these.
sheetLine S_TimeExpenseLine_ID Mandatory
TimeAndExpenseSheetLine The ID identifies a unique record


Java Entity Class

 
 
 
 /*
  *************************************************************************
  * The contents of this file are subject to the Openbravo  Public  License
  * Version  1.1  (the  "License"),  being   the  Mozilla   Public  License
  * Version 1.1  with a permitted attribution clause; you may not  use this
  * file except in compliance with the License. You  may  obtain  a copy of
  * the License at http://www.openbravo.com/legal/license.html
  * Software distributed under the License  is  distributed  on  an "AS IS"
  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  * License for the specific  language  governing  rights  and  limitations
  * under the License.
  * The Original Code is Openbravo ERP.
  * The Initial Developer of the Original Code is Openbravo SLU
  * All portions are Copyright (C) 2008-2020 Openbravo SLU
  * All Rights Reserved.
  * Contributor(s):  ______________________________________.
  ************************************************************************
 */
 package org.openbravo.model.timeandexpense;
 
 import java.math.BigDecimal;
 import java.util.Date;
 
 import org.openbravo.base.structure.ActiveEnabled;
 import org.openbravo.base.structure.BaseOBObject;
 import org.openbravo.base.structure.ClientEnabled;
 import org.openbravo.base.structure.OrganizationEnabled;
 import org.openbravo.base.structure.Traceable;
 import org.openbravo.model.ad.access.User;
 import org.openbravo.model.ad.system.Client;
 import org.openbravo.model.common.businesspartner.BusinessPartner;
 import org.openbravo.model.common.currency.Currency;
 import org.openbravo.model.common.enterprise.Organization;
 import org.openbravo.model.common.invoice.InvoiceLine;
 import org.openbravo.model.common.order.OrderLine;
 import org.openbravo.model.common.plm.Product;
 import org.openbravo.model.common.uom.UOM;
 import org.openbravo.model.marketing.Campaign;
 import org.openbravo.model.materialmgmt.cost.ABCActivity;
 import org.openbravo.model.project.Project;
 import org.openbravo.model.project.ProjectPhase;
 import org.openbravo.model.project.ProjectTask;
 /**
  * Entity class for entity TimeAndExpenseSheetLineV (stored in table S_TimeExpenseLine_V).
  * <br>
  * Help: {@literal View and modify Time and Expense Report Lines. It lists expense items for the business
      *       partner on the expense header where the expense lines were not invoiced yet.}
  * <br>
  * NOTE: This class should not be instantiated directly. To instantiate this
  * class the {@link org.openbravo.base.provider.OBProvider} should be used.
  */
 public class SheetLineV extends BaseOBObject implements Traceable, ClientEnabled, OrganizationEnabled, ActiveEnabled {
     private static final long serialVersionUID = 1L;
     public static final String TABLE_NAME = "S_TimeExpenseLine_V";
     public static final String ENTITY_NAME = "TimeAndExpenseSheetLineV";
 
     /**
      * Property id stored in column S_TimeExpenseLine_ID in table S_TimeExpenseLine_V 
      * 
      */
     public static final String PROPERTY_ID = "id";
 
     /**
      * Property client stored in column AD_Client_ID in table S_TimeExpenseLine_V 
      * @see ClientEnabled 
      * 
      */
     public static final String PROPERTY_CLIENT = "client";
 
     /**
      * Property organization stored in column AD_Org_ID in table S_TimeExpenseLine_V 
      * @see OrganizationEnabled 
      * 
      */
     public static final String PROPERTY_ORGANIZATION = "organization";
 
     /**
      * Property active stored in column IsActive in table S_TimeExpenseLine_V 
      * @see ActiveEnabled 
      * 
      */
     public static final String PROPERTY_ACTIVE = "active";
 
     /**
      * Property creationDate stored in column Created in table S_TimeExpenseLine_V 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_CREATIONDATE = "creationDate";
 
     /**
      * Property createdBy stored in column Createdby in table S_TimeExpenseLine_V 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_CREATEDBY = "createdBy";
 
     /**
      * Property updated stored in column Updated in table S_TimeExpenseLine_V 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_UPDATED = "updated";
 
     /**
      * Property updatedBy stored in column Updatedby in table S_TimeExpenseLine_V 
      * @see Traceable 
      * 
      */
     public static final String PROPERTY_UPDATEDBY = "updatedBy";
 
     /**
      * Property expenseSheet stored in column S_TimeExpense_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The ID identifies a unique record for the expense report}
      * 
      */
     public static final String PROPERTY_EXPENSESHEET = "expenseSheet";
 
     /**
      * Property lineNo stored in column Line in table S_TimeExpenseLine_V 
      * 
      */
     public static final String PROPERTY_LINENO = "lineNo";
 
     /**
      * Property timeSheet stored in column IsTimeReport in table S_TimeExpenseLine_V<br>
      * Help: {@literal The line contains only time information}
      * 
      */
     public static final String PROPERTY_TIMESHEET = "timeSheet";
 
     /**
      * Property reportDate stored in column Datereport in table S_TimeExpenseLine_V<br>
      * Help: {@literal Date of Expense/Time Report}
      * 
      */
     public static final String PROPERTY_REPORTDATE = "reportDate";
 
     /**
      * Property product stored in column M_Product_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Identifies an item which is either purchased or sold in this organization.}
      * 
      */
     public static final String PROPERTY_PRODUCT = "product";
 
     /**
      * Property quantity stored in column Qty in table S_TimeExpenseLine_V<br>
      * Help: {@literal The Quantity indicates the number of a specific product or item for this document.}
      * 
      */
     public static final String PROPERTY_QUANTITY = "quantity";
 
     /**
      * Property expenseAmount stored in column Expenseamt in table S_TimeExpenseLine_V<br>
      * Help: {@literal Expense amount in currency}
      * 
      */
     public static final String PROPERTY_EXPENSEAMOUNT = "expenseAmount";
 
     /**
      * Property currency stored in column C_Currency_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Indicates the currency to be used when processing this document.}
      * 
      */
     public static final String PROPERTY_CURRENCY = "currency";
 
     /**
      * Property convertedAmount stored in column ConvertedAmt in table S_TimeExpenseLine_V<br>
      * Help: {@literal The Converted Amount is the result of multiplying the Source Amount by the Conversion Rate
      *       for this target currency.}
      * 
      */
     public static final String PROPERTY_CONVERTEDAMOUNT = "convertedAmount";
 
     /**
      * Property resourceAssignment stored in column S_ResourceAssignment_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The ID identifies a unique record}
      * 
      */
     public static final String PROPERTY_RESOURCEASSIGNMENT = "resourceAssignment";
 
     /**
      * Property description stored in column Description in table S_TimeExpenseLine_V<br>
      * Help: {@literal A description is limited to 255 characters.}
      * 
      */
     public static final String PROPERTY_DESCRIPTION = "description";
 
     /**
      * Property comments stored in column Note in table S_TimeExpenseLine_V<br>
      * Help: {@literal The Note field allows for optional entry of user defined information regarding this
      *       record}
      * 
      */
     public static final String PROPERTY_COMMENTS = "comments";
 
     /**
      * Property reinvoice stored in column IsInvoiced in table S_TimeExpenseLine_V<br>
      * Help: {@literal Indicator if invoiced}
      * 
      */
     public static final String PROPERTY_REINVOICE = "reinvoice";
 
     /**
      * Property project stored in column C_Project_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Identifier of a project defined within the Project & Service Management module.}
      * 
      */
     public static final String PROPERTY_PROJECT = "project";
 
     /**
      * Property activity stored in column C_Activity_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Activities indicate tasks that are performed and used to utilize Activity based Costing}
      * 
      */
     public static final String PROPERTY_ACTIVITY = "activity";
 
     /**
      * Property salesCampaign stored in column C_Campaign_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The Campaign defines a unique marketing program.  Projects can be associated with a pre
      *       defined Marketing Campaign.  You can then report based on a specific Campaign.}
      * 
      */
     public static final String PROPERTY_SALESCAMPAIGN = "salesCampaign";
 
     /**
      * Property invoiceLine stored in column C_InvoiceLine_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The Invoice Line uniquely identifies a single line of an Invoice.}
      * 
      */
     public static final String PROPERTY_INVOICELINE = "invoiceLine";
 
     /**
      * Property invoicePrice stored in column InvoicePrice in table S_TimeExpenseLine_V<br>
      * Help: {@literal Unit Price in the currency of the business partner!  If it is 0, the standard price of the
      *       sales price list of the business partner (customer) is used.}
      * 
      */
     public static final String PROPERTY_INVOICEPRICE = "invoicePrice";
 
     /**
      * Property uOM stored in column C_UOM_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The UOM defines a unique non monetary unit of measure}
      * 
      */
     public static final String PROPERTY_UOM = "uOM";
 
     /**
      * Property salesOrderLine stored in column C_OrderLine_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal A unique identifier and a reference to a sales order line (product).}
      * 
      */
     public static final String PROPERTY_SALESORDERLINE = "salesOrderLine";
 
     /**
      * Property projectPhase stored in column C_ProjectPhase_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Identifies a phase for a particular project.}
      * 
      */
     public static final String PROPERTY_PROJECTPHASE = "projectPhase";
 
     /**
      * Property projectTask stored in column C_ProjectTask_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal A Project Task in a Project Phase represents the actual work.}
      * 
      */
     public static final String PROPERTY_PROJECTTASK = "projectTask";
 
     /**
      * Property timeType stored in column S_Timetype_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal Differentiate time types for reporting purposes (In parallel to Activities)}
      * 
      */
     public static final String PROPERTY_TIMETYPE = "timeType";
 
     /**
      * Property businessPartner stored in column C_BPartner_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal A Business Partner is anyone with whom you transact.  This can include a customer, vendor,
      *       employee or any combination of these.}
      * 
      */
     public static final String PROPERTY_BUSINESSPARTNER = "businessPartner";
 
     /**
      * Property expenseDate stored in column Dateexpense in table S_TimeExpenseLine_V<br>
      * Help: {@literal Date of expense}
      * 
      */
     public static final String PROPERTY_EXPENSEDATE = "expenseDate";
 
     /**
      * Property chargedBusinessPartner stored in column TEL_C_Bpartner_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal A Business Partner is anyone with whom you transact.  This can include a customer, vendor,
      *       employee or any combination of these.}
      * 
      */
     public static final String PROPERTY_CHARGEDBUSINESSPARTNER = "chargedBusinessPartner";
 
     /**
      * Property sheetLine stored in column S_TimeExpenseLine_ID in table S_TimeExpenseLine_V<br>
      * Help: {@literal The ID identifies a unique record}
      * 
      */
     public static final String PROPERTY_SHEETLINE = "sheetLine";
 
 
     public SheetLineV() {
         setDefaultValue(PROPERTY_ACTIVE, true);
         setDefaultValue(PROPERTY_TIMESHEET, false);
         setDefaultValue(PROPERTY_REINVOICE, false);
     }
 
     @Override
     public String getEntityName() {
         return ENTITY_NAME;
     }
 
     /**
      * @see SheetLineV#PROPERTY_ID
      * 
      */
     public String getId() {
         return (String) get(PROPERTY_ID);
     }
     /**
      * @see SheetLineV#PROPERTY_ID
      * 
      */
     public void setId(String id) {
         set(PROPERTY_ID, id);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CLIENT
      * 
      */
     public Client getClient() {
         return (Client) get(PROPERTY_CLIENT);
     }
     /**
      * @see SheetLineV#PROPERTY_CLIENT
      * 
      */
     public void setClient(Client client) {
         set(PROPERTY_CLIENT, client);
     }
 
     /**
      * @see SheetLineV#PROPERTY_ORGANIZATION
      * 
      */
     public Organization getOrganization() {
         return (Organization) get(PROPERTY_ORGANIZATION);
     }
     /**
      * @see SheetLineV#PROPERTY_ORGANIZATION
      * 
      */
     public void setOrganization(Organization organization) {
         set(PROPERTY_ORGANIZATION, organization);
     }
 
     /**
      * @see SheetLineV#PROPERTY_ACTIVE
      * 
      */
     public Boolean isActive() {
         return (Boolean) get(PROPERTY_ACTIVE);
     }
     /**
      * @see SheetLineV#PROPERTY_ACTIVE
      * 
      */
     public void setActive(Boolean active) {
         set(PROPERTY_ACTIVE, active);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CREATIONDATE
      * 
      */
     public Date getCreationDate() {
         return (Date) get(PROPERTY_CREATIONDATE);
     }
     /**
      * @see SheetLineV#PROPERTY_CREATIONDATE
      * 
      */
     public void setCreationDate(Date creationDate) {
         set(PROPERTY_CREATIONDATE, creationDate);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CREATEDBY
      * 
      */
     public User getCreatedBy() {
         return (User) get(PROPERTY_CREATEDBY);
     }
     /**
      * @see SheetLineV#PROPERTY_CREATEDBY
      * 
      */
     public void setCreatedBy(User createdBy) {
         set(PROPERTY_CREATEDBY, createdBy);
     }
 
     /**
      * @see SheetLineV#PROPERTY_UPDATED
      * 
      */
     public Date getUpdated() {
         return (Date) get(PROPERTY_UPDATED);
     }
     /**
      * @see SheetLineV#PROPERTY_UPDATED
      * 
      */
     public void setUpdated(Date updated) {
         set(PROPERTY_UPDATED, updated);
     }
 
     /**
      * @see SheetLineV#PROPERTY_UPDATEDBY
      * 
      */
     public User getUpdatedBy() {
         return (User) get(PROPERTY_UPDATEDBY);
     }
     /**
      * @see SheetLineV#PROPERTY_UPDATEDBY
      * 
      */
     public void setUpdatedBy(User updatedBy) {
         set(PROPERTY_UPDATEDBY, updatedBy);
     }
 
     /**
      * @see SheetLineV#PROPERTY_EXPENSESHEET
      * 
      */
     public Sheet getExpenseSheet() {
         return (Sheet) get(PROPERTY_EXPENSESHEET);
     }
     /**
      * @see SheetLineV#PROPERTY_EXPENSESHEET
      * 
      */
     public void setExpenseSheet(Sheet expenseSheet) {
         set(PROPERTY_EXPENSESHEET, expenseSheet);
     }
 
     /**
      * @see SheetLineV#PROPERTY_LINENO
      * 
      */
     public Long getLineNo() {
         return (Long) get(PROPERTY_LINENO);
     }
     /**
      * @see SheetLineV#PROPERTY_LINENO
      * 
      */
     public void setLineNo(Long lineNo) {
         set(PROPERTY_LINENO, lineNo);
     }
 
     /**
      * @see SheetLineV#PROPERTY_TIMESHEET
      * 
      */
     public Boolean isTimeSheet() {
         return (Boolean) get(PROPERTY_TIMESHEET);
     }
     /**
      * @see SheetLineV#PROPERTY_TIMESHEET
      * 
      */
     public void setTimeSheet(Boolean timeSheet) {
         set(PROPERTY_TIMESHEET, timeSheet);
     }
 
     /**
      * @see SheetLineV#PROPERTY_REPORTDATE
      * 
      */
     public Date getReportDate() {
         return (Date) get(PROPERTY_REPORTDATE);
     }
     /**
      * @see SheetLineV#PROPERTY_REPORTDATE
      * 
      */
     public void setReportDate(Date reportDate) {
         set(PROPERTY_REPORTDATE, reportDate);
     }
 
     /**
      * @see SheetLineV#PROPERTY_PRODUCT
      * 
      */
     public Product getProduct() {
         return (Product) get(PROPERTY_PRODUCT);
     }
     /**
      * @see SheetLineV#PROPERTY_PRODUCT
      * 
      */
     public void setProduct(Product product) {
         set(PROPERTY_PRODUCT, product);
     }
 
     /**
      * @see SheetLineV#PROPERTY_QUANTITY
      * 
      */
     public BigDecimal getQuantity() {
         return (BigDecimal) get(PROPERTY_QUANTITY);
     }
     /**
      * @see SheetLineV#PROPERTY_QUANTITY
      * 
      */
     public void setQuantity(BigDecimal quantity) {
         set(PROPERTY_QUANTITY, quantity);
     }
 
     /**
      * @see SheetLineV#PROPERTY_EXPENSEAMOUNT
      * 
      */
     public BigDecimal getExpenseAmount() {
         return (BigDecimal) get(PROPERTY_EXPENSEAMOUNT);
     }
     /**
      * @see SheetLineV#PROPERTY_EXPENSEAMOUNT
      * 
      */
     public void setExpenseAmount(BigDecimal expenseAmount) {
         set(PROPERTY_EXPENSEAMOUNT, expenseAmount);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CURRENCY
      * 
      */
     public Currency getCurrency() {
         return (Currency) get(PROPERTY_CURRENCY);
     }
     /**
      * @see SheetLineV#PROPERTY_CURRENCY
      * 
      */
     public void setCurrency(Currency currency) {
         set(PROPERTY_CURRENCY, currency);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CONVERTEDAMOUNT
      * 
      */
     public BigDecimal getConvertedAmount() {
         return (BigDecimal) get(PROPERTY_CONVERTEDAMOUNT);
     }
     /**
      * @see SheetLineV#PROPERTY_CONVERTEDAMOUNT
      * 
      */
     public void setConvertedAmount(BigDecimal convertedAmount) {
         set(PROPERTY_CONVERTEDAMOUNT, convertedAmount);
     }
 
     /**
      * @see SheetLineV#PROPERTY_RESOURCEASSIGNMENT
      * 
      */
     public ResourceAssignment getResourceAssignment() {
         return (ResourceAssignment) get(PROPERTY_RESOURCEASSIGNMENT);
     }
     /**
      * @see SheetLineV#PROPERTY_RESOURCEASSIGNMENT
      * 
      */
     public void setResourceAssignment(ResourceAssignment resourceAssignment) {
         set(PROPERTY_RESOURCEASSIGNMENT, resourceAssignment);
     }
 
     /**
      * @see SheetLineV#PROPERTY_DESCRIPTION
      * 
      */
     public String getDescription() {
         return (String) get(PROPERTY_DESCRIPTION);
     }
     /**
      * @see SheetLineV#PROPERTY_DESCRIPTION
      * 
      */
     public void setDescription(String description) {
         set(PROPERTY_DESCRIPTION, description);
     }
 
     /**
      * @see SheetLineV#PROPERTY_COMMENTS
      * 
      */
     public String getComments() {
         return (String) get(PROPERTY_COMMENTS);
     }
     /**
      * @see SheetLineV#PROPERTY_COMMENTS
      * 
      */
     public void setComments(String comments) {
         set(PROPERTY_COMMENTS, comments);
     }
 
     /**
      * @see SheetLineV#PROPERTY_REINVOICE
      * 
      */
     public Boolean isReinvoice() {
         return (Boolean) get(PROPERTY_REINVOICE);
     }
     /**
      * @see SheetLineV#PROPERTY_REINVOICE
      * 
      */
     public void setReinvoice(Boolean reinvoice) {
         set(PROPERTY_REINVOICE, reinvoice);
     }
 
     /**
      * @see SheetLineV#PROPERTY_PROJECT
      * 
      */
     public Project getProject() {
         return (Project) get(PROPERTY_PROJECT);
     }
     /**
      * @see SheetLineV#PROPERTY_PROJECT
      * 
      */
     public void setProject(Project project) {
         set(PROPERTY_PROJECT, project);
     }
 
     /**
      * @see SheetLineV#PROPERTY_ACTIVITY
      * 
      */
     public ABCActivity getActivity() {
         return (ABCActivity) get(PROPERTY_ACTIVITY);
     }
     /**
      * @see SheetLineV#PROPERTY_ACTIVITY
      * 
      */
     public void setActivity(ABCActivity activity) {
         set(PROPERTY_ACTIVITY, activity);
     }
 
     /**
      * @see SheetLineV#PROPERTY_SALESCAMPAIGN
      * 
      */
     public Campaign getSalesCampaign() {
         return (Campaign) get(PROPERTY_SALESCAMPAIGN);
     }
     /**
      * @see SheetLineV#PROPERTY_SALESCAMPAIGN
      * 
      */
     public void setSalesCampaign(Campaign salesCampaign) {
         set(PROPERTY_SALESCAMPAIGN, salesCampaign);
     }
 
     /**
      * @see SheetLineV#PROPERTY_INVOICELINE
      * 
      */
     public InvoiceLine getInvoiceLine() {
         return (InvoiceLine) get(PROPERTY_INVOICELINE);
     }
     /**
      * @see SheetLineV#PROPERTY_INVOICELINE
      * 
      */
     public void setInvoiceLine(InvoiceLine invoiceLine) {
         set(PROPERTY_INVOICELINE, invoiceLine);
     }
 
     /**
      * @see SheetLineV#PROPERTY_INVOICEPRICE
      * 
      */
     public BigDecimal getInvoicePrice() {
         return (BigDecimal) get(PROPERTY_INVOICEPRICE);
     }
     /**
      * @see SheetLineV#PROPERTY_INVOICEPRICE
      * 
      */
     public void setInvoicePrice(BigDecimal invoicePrice) {
         set(PROPERTY_INVOICEPRICE, invoicePrice);
     }
 
     /**
      * @see SheetLineV#PROPERTY_UOM
      * 
      */
     public UOM getUOM() {
         return (UOM) get(PROPERTY_UOM);
     }
     /**
      * @see SheetLineV#PROPERTY_UOM
      * 
      */
     public void setUOM(UOM uOM) {
         set(PROPERTY_UOM, uOM);
     }
 
     /**
      * @see SheetLineV#PROPERTY_SALESORDERLINE
      * 
      */
     public OrderLine getSalesOrderLine() {
         return (OrderLine) get(PROPERTY_SALESORDERLINE);
     }
     /**
      * @see SheetLineV#PROPERTY_SALESORDERLINE
      * 
      */
     public void setSalesOrderLine(OrderLine salesOrderLine) {
         set(PROPERTY_SALESORDERLINE, salesOrderLine);
     }
 
     /**
      * @see SheetLineV#PROPERTY_PROJECTPHASE
      * 
      */
     public ProjectPhase getProjectPhase() {
         return (ProjectPhase) get(PROPERTY_PROJECTPHASE);
     }
     /**
      * @see SheetLineV#PROPERTY_PROJECTPHASE
      * 
      */
     public void setProjectPhase(ProjectPhase projectPhase) {
         set(PROPERTY_PROJECTPHASE, projectPhase);
     }
 
     /**
      * @see SheetLineV#PROPERTY_PROJECTTASK
      * 
      */
     public ProjectTask getProjectTask() {
         return (ProjectTask) get(PROPERTY_PROJECTTASK);
     }
     /**
      * @see SheetLineV#PROPERTY_PROJECTTASK
      * 
      */
     public void setProjectTask(ProjectTask projectTask) {
         set(PROPERTY_PROJECTTASK, projectTask);
     }
 
     /**
      * @see SheetLineV#PROPERTY_TIMETYPE
      * 
      */
     public TimeType getTimeType() {
         return (TimeType) get(PROPERTY_TIMETYPE);
     }
     /**
      * @see SheetLineV#PROPERTY_TIMETYPE
      * 
      */
     public void setTimeType(TimeType timeType) {
         set(PROPERTY_TIMETYPE, timeType);
     }
 
     /**
      * @see SheetLineV#PROPERTY_BUSINESSPARTNER
      * 
      */
     public BusinessPartner getBusinessPartner() {
         return (BusinessPartner) get(PROPERTY_BUSINESSPARTNER);
     }
     /**
      * @see SheetLineV#PROPERTY_BUSINESSPARTNER
      * 
      */
     public void setBusinessPartner(BusinessPartner businessPartner) {
         set(PROPERTY_BUSINESSPARTNER, businessPartner);
     }
 
     /**
      * @see SheetLineV#PROPERTY_EXPENSEDATE
      * 
      */
     public Date getExpenseDate() {
         return (Date) get(PROPERTY_EXPENSEDATE);
     }
     /**
      * @see SheetLineV#PROPERTY_EXPENSEDATE
      * 
      */
     public void setExpenseDate(Date expenseDate) {
         set(PROPERTY_EXPENSEDATE, expenseDate);
     }
 
     /**
      * @see SheetLineV#PROPERTY_CHARGEDBUSINESSPARTNER
      * 
      */
     public BusinessPartner getChargedBusinessPartner() {
         return (BusinessPartner) get(PROPERTY_CHARGEDBUSINESSPARTNER);
     }
     /**
      * @see SheetLineV#PROPERTY_CHARGEDBUSINESSPARTNER
      * 
      */
     public void setChargedBusinessPartner(BusinessPartner chargedBusinessPartner) {
         set(PROPERTY_CHARGEDBUSINESSPARTNER, chargedBusinessPartner);
     }
 
     /**
      * @see SheetLineV#PROPERTY_SHEETLINE
      * 
      */
     public SheetLine getSheetLine() {
         return (SheetLine) get(PROPERTY_SHEETLINE);
     }
     /**
      * @see SheetLineV#PROPERTY_SHEETLINE
      * 
      */
     public void setSheetLine(SheetLine sheetLine) {
         set(PROPERTY_SHEETLINE, sheetLine);
     }
 
 }

Retrieved from "http://wiki.openbravo.com/wiki/ERP/3.0/Developers_Guide/Reference/Entity_Model/TimeAndExpenseSheetLineV"

This page has been accessed 1,770 times. This page was last modified on 30 November 2020, at 01:56. Content is available under Creative Commons Attribution-ShareAlike 2.5 Spain License.