ERP 2.50:Developers Guide/Reference/Entity Model/FinancialMgmtGLJournalLine
FinancialMgmtGLJournalLine
The GL Journal Line Tab defines the individual debit and credit transactions that comprise a journal.
To the database table (GL_JournalLine) of this entity.
Properties
Note:
- Properties marked with a * are part of the Id of the Entity.
- Properties marked with a # are part of the Identifier of the Entity.
Property | Column | Constraints | Type | Description |
id* | GL_JournalLine_ID | Mandatory Max Length: 32 | java.lang.String | The General Ledger Journal Line identifies a single transaction in a journal. |
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. |
journalEntry | GL_Journal_ID | Mandatory | FinancialMgmtGLJournal | The General Ledger Journal identifies a group of journal lines which represent a logical business transaction |
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. |
generated | IsGenerated | Mandatory | java.lang.Boolean | The Generated checkbox identifies a journal line that was generated from a source document. Lines could also be entered manually or imported. |
description | Description | Max Length: 255 | java.lang.String | A description is limited to 255 characters. |
foreignCurrencyDebit | AmtSourceDr | Mandatory | java.math.BigDecimal | The Source Debit Amount indicates the credit amount for this line in the source currency. |
foreignCurrencyCredit | AmtSourceCr | Mandatory | java.math.BigDecimal | The Source Credit Amount indicates the credit amount for this line in the source currency. |
currency | C_Currency_ID | Mandatory | Currency | Indicates the currency to be used when processing this document. |
currencyRateType | CurrencyRateType | Mandatory Max Length: 60 | java.lang.String | The Conversion Rate Type indicates the type of rate to use when retrieving the conversion rate. It allows you to define multiple rates for the same to and from currency. For example you may have a set of rates used for daily transactions with a rate type of SPOT and rates for currency revaluation defined as REVAL. |
rate | CurrencyRate | Mandatory | java.math.BigDecimal | The Currency Conversion Rate indicates the rate to use when converting the source currency to the accounting currency |
accountingDate | DateAcct | java.util.Date | The date this transaction is recorded on in the general ledger. This date also indicates which accounting period within the fiscal year this transaction will be part of. | |
debit | AmtAcctDr | Mandatory | java.math.BigDecimal | The Account Debit Amount indicates the transaction amount converted to this organization's accounting currency |
credit | AmtAcctCr | Mandatory | java.math.BigDecimal | The Account Credit Amount indicates the transaction amount converted to this organization's accounting currency |
uOM | C_UOM_ID | UOM | The UOM defines a unique non monetary unit of measure | |
quantity | Qty | java.math.BigDecimal | The Quantity indicates the number of a specific product or item for this document. | |
accountingCombination | C_ValidCombination_ID | Mandatory | FinancialMgmtAccountingCombination | The Combination identifies a valid combination of element which represent a GL account. |
payment | C_Debt_Payment_ID | FinancialMgmtDebtPayment | Refers to the amount of money to be paid or collected. | |
withholding | C_Withholding_ID | FinancialMgmtWithholding | The Withholding indicates the type of withholding to be calculated. | |
tax | C_Tax_ID | FinancialMgmtTaxRate | The Tax indicates the type of tax for this document line. |
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-2010 Openbravo SLU * All Rights Reserved. * Contributor(s): ______________________________________. ************************************************************************ */ package org.openbravo.model.financialmgmt.gl; 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.currency.Currency; import org.openbravo.model.common.enterprise.Organization; import org.openbravo.model.financialmgmt.accounting.coa.AccountingCombination; import org.openbravo.model.financialmgmt.payment.DebtPayment; import org.openbravo.model.financialmgmt.tax.TaxRate; import org.openbravo.model.financialmgmt.tax.Withholding; import java.lang.Boolean; import java.lang.Long; import java.lang.String; import java.math.BigDecimal; import java.util.Date; /** * Entity class for entity FinancialMgmtGLJournalLine (stored in table GL_JournalLine). * * NOTE: This class should not be instantiated directly. To instantiate this * class the {@link org.openbravo.base.provider.OBProvider} should be used. */ public class GLJournalLine extends BaseOBObject implements Traceable, ClientEnabled, OrganizationEnabled, ActiveEnabled { private static final long serialVersionUID = 1L; public static final String TABLE_NAME = "GL_JournalLine"; public static final String FinancialMgmtGLJournalLine = "FinancialMgmtGLJournalLine"; public static final String PROPERTY_ID = "id"; public static final String PROPERTY_CLIENT = "client"; public static final String PROPERTY_ORGANIZATION = "organization"; public static final String PROPERTY_ACTIVE = "active"; public static final String PROPERTY_CREATIONDATE = "creationDate"; public static final String PROPERTY_CREATEDBY = "createdBy"; public static final String PROPERTY_UPDATED = "updated"; public static final String PROPERTY_UPDATEDBY = "updatedBy"; public static final String PROPERTY_JOURNALENTRY = "journalEntry"; public static final String PROPERTY_LINENO = "lineNo"; public static final String PROPERTY_GENERATED = "generated"; public static final String PROPERTY_DESCRIPTION = "description"; public static final String PROPERTY_FOREIGNCURRENCYDEBIT = "foreignCurrencyDebit"; public static final String PROPERTY_FOREIGNCURRENCYCREDIT = "foreignCurrencyCredit"; public static final String PROPERTY_CURRENCY = "currency"; public static final String PROPERTY_CURRENCYRATETYPE = "currencyRateType"; public static final String PROPERTY_RATE = "rate"; public static final String PROPERTY_ACCOUNTINGDATE = "accountingDate"; public static final String PROPERTY_DEBIT = "debit"; public static final String PROPERTY_CREDIT = "credit"; public static final String PROPERTY_UOM = "uOM"; public static final String PROPERTY_QUANTITY = "quantity"; public static final String PROPERTY_ACCOUNTINGCOMBINATION = "accountingCombination"; public static final String PROPERTY_PAYMENT = "payment"; public static final String PROPERTY_WITHHOLDING = "withholding"; public static final String PROPERTY_TAX = "tax"; public GLJournalLine() { setDefaultValue(PROPERTY_ACTIVE, true); setDefaultValue(PROPERTY_GENERATED, false); setDefaultValue(PROPERTY_CURRENCYRATETYPE, "S"); setDefaultValue(PROPERTY_RATE, new BigDecimal(1)); } @Override public String getEntityName() { return FinancialMgmtGLJournalLine; } public String getId() { return (String) get(PROPERTY_ID); } public void setId(String id) { set(PROPERTY_ID, id); } public Client getClient() { return (Client) get(PROPERTY_CLIENT); } public void setClient(Client client) { set(PROPERTY_CLIENT, client); } public Organization getOrganization() { return (Organization) get(PROPERTY_ORGANIZATION); } public void setOrganization(Organization organization) { set(PROPERTY_ORGANIZATION, organization); } public Boolean isActive() { return (Boolean) get(PROPERTY_ACTIVE); } public void setActive(Boolean active) { set(PROPERTY_ACTIVE, active); } public Date getCreationDate() { return (Date) get(PROPERTY_CREATIONDATE); } public void setCreationDate(Date creationDate) { set(PROPERTY_CREATIONDATE, creationDate); } public User getCreatedBy() { return (User) get(PROPERTY_CREATEDBY); } public void setCreatedBy(User createdBy) { set(PROPERTY_CREATEDBY, createdBy); } public Date getUpdated() { return (Date) get(PROPERTY_UPDATED); } public void setUpdated(Date updated) { set(PROPERTY_UPDATED, updated); } public User getUpdatedBy() { return (User) get(PROPERTY_UPDATEDBY); } public void setUpdatedBy(User updatedBy) { set(PROPERTY_UPDATEDBY, updatedBy); } public GLJournal getJournalEntry() { return (GLJournal) get(PROPERTY_JOURNALENTRY); } public void setJournalEntry(GLJournal journalEntry) { set(PROPERTY_JOURNALENTRY, journalEntry); } public Long getLineNo() { return (Long) get(PROPERTY_LINENO); } public void setLineNo(Long lineNo) { set(PROPERTY_LINENO, lineNo); } public Boolean isGenerated() { return (Boolean) get(PROPERTY_GENERATED); } public void setGenerated(Boolean generated) { set(PROPERTY_GENERATED, generated); } public String getDescription() { return (String) get(PROPERTY_DESCRIPTION); } public void setDescription(String description) { set(PROPERTY_DESCRIPTION, description); } public BigDecimal getForeignCurrencyDebit() { return (BigDecimal) get(PROPERTY_FOREIGNCURRENCYDEBIT); } public void setForeignCurrencyDebit(BigDecimal foreignCurrencyDebit) { set(PROPERTY_FOREIGNCURRENCYDEBIT, foreignCurrencyDebit); } public BigDecimal getForeignCurrencyCredit() { return (BigDecimal) get(PROPERTY_FOREIGNCURRENCYCREDIT); } public void setForeignCurrencyCredit(BigDecimal foreignCurrencyCredit) { set(PROPERTY_FOREIGNCURRENCYCREDIT, foreignCurrencyCredit); } public Currency getCurrency() { return (Currency) get(PROPERTY_CURRENCY); } public void setCurrency(Currency currency) { set(PROPERTY_CURRENCY, currency); } public String getCurrencyRateType() { return (String) get(PROPERTY_CURRENCYRATETYPE); } public void setCurrencyRateType(String currencyRateType) { set(PROPERTY_CURRENCYRATETYPE, currencyRateType); } public BigDecimal getRate() { return (BigDecimal) get(PROPERTY_RATE); } public void setRate(BigDecimal rate) { set(PROPERTY_RATE, rate); } public Date getAccountingDate() { return (Date) get(PROPERTY_ACCOUNTINGDATE); } public void setAccountingDate(Date accountingDate) { set(PROPERTY_ACCOUNTINGDATE, accountingDate); } public BigDecimal getDebit() { return (BigDecimal) get(PROPERTY_DEBIT); } public void setDebit(BigDecimal debit) { set(PROPERTY_DEBIT, debit); } public BigDecimal getCredit() { return (BigDecimal) get(PROPERTY_CREDIT); } public void setCredit(BigDecimal credit) { set(PROPERTY_CREDIT, credit); } public org.openbravo.model.common.uom.UOM getUOM() { return (org.openbravo.model.common.uom.UOM) get(PROPERTY_UOM); } public void setUOM(org.openbravo.model.common.uom.UOM uOM) { set(PROPERTY_UOM, uOM); } public BigDecimal getQuantity() { return (BigDecimal) get(PROPERTY_QUANTITY); } public void setQuantity(BigDecimal quantity) { set(PROPERTY_QUANTITY, quantity); } public AccountingCombination getAccountingCombination() { return (AccountingCombination) get(PROPERTY_ACCOUNTINGCOMBINATION); } public void setAccountingCombination( AccountingCombination accountingCombination) { set(PROPERTY_ACCOUNTINGCOMBINATION, accountingCombination); } public DebtPayment getPayment() { return (DebtPayment) get(PROPERTY_PAYMENT); } public void setPayment(DebtPayment payment) { set(PROPERTY_PAYMENT, payment); } public Withholding getWithholding() { return (Withholding) get(PROPERTY_WITHHOLDING); } public void setWithholding(Withholding withholding) { set(PROPERTY_WITHHOLDING, withholding); } public TaxRate getTax() { return (TaxRate) get(PROPERTY_TAX); } public void setTax(TaxRate tax) { set(PROPERTY_TAX, tax); } }