IDEMPIERE-1695 Errors on Invoice Not Realized Gain/Loss
This commit is contained in:
parent
f4f317c3ad
commit
c8f3a94f45
|
@ -1,137 +0,0 @@
|
||||||
DROP VIEW t_invoicegl_vt;
|
|
||||||
|
|
||||||
CREATE OR REPLACE VIEW t_invoicegl_vt
|
|
||||||
AS
|
|
||||||
SELECT i.ad_client_id,
|
|
||||||
i.ad_org_id,
|
|
||||||
i.isactive,
|
|
||||||
i.created,
|
|
||||||
i.createdby,
|
|
||||||
i.updated,
|
|
||||||
i.updatedby,
|
|
||||||
i.c_invoice_id,
|
|
||||||
i.issotrx,
|
|
||||||
i.documentno,
|
|
||||||
i.docstatus,
|
|
||||||
i.c_doctype_id,
|
|
||||||
i.c_order_id,
|
|
||||||
i.description,
|
|
||||||
i.salesrep_id,
|
|
||||||
i.dateinvoiced,
|
|
||||||
i.dateacct,
|
|
||||||
i.c_paymentterm_id,
|
|
||||||
i.c_bpartner_id,
|
|
||||||
i.c_bpartner_location_id,
|
|
||||||
i.ad_user_id,
|
|
||||||
i.isselfservice,
|
|
||||||
i.c_currency_id,
|
|
||||||
i.c_conversiontype_id,
|
|
||||||
i.grandtotal,
|
|
||||||
i.istaxincluded,
|
|
||||||
i.c_campaign_id,
|
|
||||||
i.c_project_id,
|
|
||||||
i.c_activity_id,
|
|
||||||
i.ad_orgtrx_id,
|
|
||||||
i.user1_id,
|
|
||||||
i.user2_id,
|
|
||||||
fa.c_locfrom_id,
|
|
||||||
fa.c_locto_id,
|
|
||||||
fa.c_salesregion_id,
|
|
||||||
fa.fact_acct_id,
|
|
||||||
fa.c_acctschema_id,
|
|
||||||
fa.account_id,
|
|
||||||
fa.c_period_id,
|
|
||||||
fa.gl_category_id,
|
|
||||||
fa.gl_budget_id,
|
|
||||||
fa.c_tax_id,
|
|
||||||
fa.m_locator_id,
|
|
||||||
fa.postingtype,
|
|
||||||
fa.amtsourcedr,
|
|
||||||
fa.amtsourcecr,
|
|
||||||
fa.amtacctdr,
|
|
||||||
fa.amtacctcr,
|
|
||||||
fa.c_uom_id,
|
|
||||||
fa.qty,
|
|
||||||
gl.ad_pinstance_id,
|
|
||||||
gl.apar,
|
|
||||||
gl.openamt,
|
|
||||||
gl.percent,
|
|
||||||
gl.amtrevaldr,
|
|
||||||
gl.amtrevalcr,
|
|
||||||
gl.datereval,
|
|
||||||
gl.c_conversiontypereval_id,
|
|
||||||
gl.amtsourcebalance,
|
|
||||||
gl.amtacctbalance,
|
|
||||||
gl.c_doctypereval_id,
|
|
||||||
gl.amtrevaldrdiff,
|
|
||||||
gl.amtrevalcrdiff,
|
|
||||||
gl.isallcurrencies,
|
|
||||||
fa.amtacctdr * gl.percent / 100 AS amtacctopendr,
|
|
||||||
fa.amtacctcr * gl.percent / 100 AS amtacctopencr,
|
|
||||||
( fa.amtacctdr - fa.amtacctcr ) * gl.percent / 100 AS amtacctopenbalance,
|
|
||||||
gl.ad_org_id AS t_invoicegl_ad_org_id,
|
|
||||||
gl.c_invoice_id AS t_invoicegl_c_invoice_id,
|
|
||||||
gl.created AS t_invoicegl_created,
|
|
||||||
gl.createdby AS t_invoicegl_createdby,
|
|
||||||
gl.grandtotal AS t_invoicegl_grandtotal,
|
|
||||||
gl.isactive AS t_invoicegl_isactive,
|
|
||||||
gl.updated AS t_invoicegl_updated,
|
|
||||||
gl.updatedby AS t_invoicegl_updatedby,
|
|
||||||
i.c_charge_id AS c_invoice_c_charge_id,
|
|
||||||
i.c_doctypetarget_id,
|
|
||||||
i.c_dunninglevel_id,
|
|
||||||
i.chargeamt,
|
|
||||||
i.c_payment_id,
|
|
||||||
i.dateordered,
|
|
||||||
i.dateprinted,
|
|
||||||
i.docaction,
|
|
||||||
i.dunninggrace,
|
|
||||||
i.generateto,
|
|
||||||
i.invoicecollectiontype,
|
|
||||||
i.isapproved,
|
|
||||||
i.isdiscountprinted,
|
|
||||||
i.isindispute,
|
|
||||||
i.ispaid,
|
|
||||||
i.ispayschedulevalid,
|
|
||||||
i.isprinted,
|
|
||||||
i.istransferred,
|
|
||||||
i.m_pricelist_id,
|
|
||||||
i.m_rma_id,
|
|
||||||
i.paymentrule,
|
|
||||||
i.poreference,
|
|
||||||
i.posted,
|
|
||||||
i.processedon,
|
|
||||||
i.processing,
|
|
||||||
i.ref_invoice_id,
|
|
||||||
i.reversal_id,
|
|
||||||
i.sendemail,
|
|
||||||
i.totallines,
|
|
||||||
fa.a_asset_id,
|
|
||||||
fa.ad_org_id AS fact_acct_ad_org_id,
|
|
||||||
fa.ad_orgtrx_id AS fact_acct_ad_orgtrx_id,
|
|
||||||
fa.ad_table_id AS fact_acct_ad_table_id,
|
|
||||||
fa.c_activity_id AS fact_acct_c_activity_id,
|
|
||||||
fa.c_bpartner_id AS fact_acct_c_bpartner_id,
|
|
||||||
fa.c_campaign_id AS fact_acct_c_campaign_id,
|
|
||||||
fa.c_currency_id AS fact_acct_c_currency_id,
|
|
||||||
fa.c_subacct_id,
|
|
||||||
fa.dateacct AS fact_acct_dateacct,
|
|
||||||
fa.datetrx,
|
|
||||||
fa.description AS fact_acct_description,
|
|
||||||
fa.isactive AS fact_acct_isactive,
|
|
||||||
fa.line_id,
|
|
||||||
fa.m_product_id AS fact_acct_m_product_id,
|
|
||||||
fa.record_id,
|
|
||||||
fa.updated AS fact_acct_updated,
|
|
||||||
fa.updatedby AS fact_acct_updatedby,
|
|
||||||
fa.user1_id AS fact_acct_user1_id,
|
|
||||||
fa.user2_id AS fact_acct_user2_id,
|
|
||||||
fa.userelement1_id,
|
|
||||||
fa.userelement2_id
|
|
||||||
FROM t_invoicegl gl
|
|
||||||
JOIN c_invoice i
|
|
||||||
ON gl.c_invoice_id = i.c_invoice_id
|
|
||||||
JOIN fact_acct fa
|
|
||||||
ON gl.fact_acct_id = fa.fact_acct_id
|
|
||||||
;
|
|
||||||
|
|
|
@ -1,135 +0,0 @@
|
||||||
DROP VIEW t_invoicegl_vt;
|
|
||||||
|
|
||||||
CREATE OR REPLACE VIEW t_invoicegl_vt AS
|
|
||||||
SELECT i.ad_client_id,
|
|
||||||
i.ad_org_id,
|
|
||||||
i.isactive,
|
|
||||||
i.created,
|
|
||||||
i.createdby,
|
|
||||||
i.updated,
|
|
||||||
i.updatedby,
|
|
||||||
i.c_invoice_id,
|
|
||||||
i.issotrx,
|
|
||||||
i.documentno,
|
|
||||||
i.docstatus,
|
|
||||||
i.c_doctype_id,
|
|
||||||
i.c_order_id,
|
|
||||||
i.description,
|
|
||||||
i.salesrep_id,
|
|
||||||
i.dateinvoiced,
|
|
||||||
i.dateacct,
|
|
||||||
i.c_paymentterm_id,
|
|
||||||
i.c_bpartner_id,
|
|
||||||
i.c_bpartner_location_id,
|
|
||||||
i.ad_user_id,
|
|
||||||
i.isselfservice,
|
|
||||||
i.c_currency_id,
|
|
||||||
i.c_conversiontype_id,
|
|
||||||
i.grandtotal,
|
|
||||||
i.istaxincluded,
|
|
||||||
i.c_campaign_id,
|
|
||||||
i.c_project_id,
|
|
||||||
i.c_activity_id,
|
|
||||||
i.ad_orgtrx_id,
|
|
||||||
i.user1_id,
|
|
||||||
i.user2_id,
|
|
||||||
fa.c_locfrom_id,
|
|
||||||
fa.c_locto_id,
|
|
||||||
fa.c_salesregion_id,
|
|
||||||
fa.fact_acct_id,
|
|
||||||
fa.c_acctschema_id,
|
|
||||||
fa.account_id,
|
|
||||||
fa.c_period_id,
|
|
||||||
fa.gl_category_id,
|
|
||||||
fa.gl_budget_id,
|
|
||||||
fa.c_tax_id,
|
|
||||||
fa.m_locator_id,
|
|
||||||
fa.postingtype,
|
|
||||||
fa.amtsourcedr,
|
|
||||||
fa.amtsourcecr,
|
|
||||||
fa.amtacctdr,
|
|
||||||
fa.amtacctcr,
|
|
||||||
fa.c_uom_id,
|
|
||||||
fa.qty,
|
|
||||||
gl.ad_pinstance_id,
|
|
||||||
gl.apar,
|
|
||||||
gl.openamt,
|
|
||||||
gl.percent,
|
|
||||||
gl.amtrevaldr,
|
|
||||||
gl.amtrevalcr,
|
|
||||||
gl.datereval,
|
|
||||||
gl.c_conversiontypereval_id,
|
|
||||||
gl.amtsourcebalance,
|
|
||||||
gl.amtacctbalance,
|
|
||||||
gl.c_doctypereval_id,
|
|
||||||
gl.amtrevaldrdiff,
|
|
||||||
gl.amtrevalcrdiff,
|
|
||||||
gl.isallcurrencies,
|
|
||||||
fa.amtacctdr * gl.percent / 100 AS amtacctopendr,
|
|
||||||
fa.amtacctcr * gl.percent / 100 AS amtacctopencr,
|
|
||||||
(fa.amtacctdr - fa.amtacctcr) * gl.percent / 100 AS amtacctopenbalance,
|
|
||||||
gl.ad_org_id AS t_invoicegl_ad_org_id,
|
|
||||||
gl.c_invoice_id AS t_invoicegl_c_invoice_id,
|
|
||||||
gl.created AS t_invoicegl_created,
|
|
||||||
gl.createdby AS t_invoicegl_createdby,
|
|
||||||
gl.grandtotal AS t_invoicegl_grandtotal,
|
|
||||||
gl.isactive AS t_invoicegl_isactive,
|
|
||||||
gl.updated AS t_invoicegl_updated,
|
|
||||||
gl.updatedby AS t_invoicegl_updatedby,
|
|
||||||
i.c_charge_id AS c_invoice_c_charge_id,
|
|
||||||
i.c_doctypetarget_id,
|
|
||||||
i.c_dunninglevel_id,
|
|
||||||
i.chargeamt,
|
|
||||||
i.c_payment_id,
|
|
||||||
i.dateordered,
|
|
||||||
i.dateprinted,
|
|
||||||
i.docaction,
|
|
||||||
i.dunninggrace,
|
|
||||||
i.generateto,
|
|
||||||
i.invoicecollectiontype,
|
|
||||||
i.isapproved,
|
|
||||||
i.isdiscountprinted,
|
|
||||||
i.isindispute,
|
|
||||||
i.ispaid,
|
|
||||||
i.ispayschedulevalid,
|
|
||||||
i.isprinted,
|
|
||||||
i.istransferred,
|
|
||||||
i.m_pricelist_id,
|
|
||||||
i.m_rma_id,
|
|
||||||
i.paymentrule,
|
|
||||||
i.poreference,
|
|
||||||
i.posted,
|
|
||||||
i.processedon,
|
|
||||||
i.processing,
|
|
||||||
i.ref_invoice_id,
|
|
||||||
i.reversal_id,
|
|
||||||
i.sendemail,
|
|
||||||
i.totallines,
|
|
||||||
fa.a_asset_id,
|
|
||||||
fa.ad_org_id AS fact_acct_ad_org_id,
|
|
||||||
fa.ad_orgtrx_id AS fact_acct_ad_orgtrx_id,
|
|
||||||
fa.ad_table_id AS fact_acct_ad_table_id,
|
|
||||||
fa.c_activity_id AS fact_acct_c_activity_id,
|
|
||||||
fa.c_bpartner_id AS fact_acct_c_bpartner_id,
|
|
||||||
fa.c_campaign_id AS fact_acct_c_campaign_id,
|
|
||||||
fa.c_currency_id AS fact_acct_c_currency_id,
|
|
||||||
fa.c_subacct_id,
|
|
||||||
fa.dateacct AS fact_acct_dateacct,
|
|
||||||
fa.datetrx,
|
|
||||||
fa.description AS fact_acct_description,
|
|
||||||
fa.isactive AS fact_acct_isactive,
|
|
||||||
fa.line_id,
|
|
||||||
fa.m_product_id AS fact_acct_m_product_id,
|
|
||||||
fa.record_id,
|
|
||||||
fa.updated AS fact_acct_updated,
|
|
||||||
fa.updatedby AS fact_acct_updatedby,
|
|
||||||
fa.user1_id AS fact_acct_user1_id,
|
|
||||||
fa.user2_id AS fact_acct_user2_id,
|
|
||||||
fa.userelement1_id,
|
|
||||||
fa.userelement2_id
|
|
||||||
FROM t_invoicegl gl
|
|
||||||
JOIN c_invoice i
|
|
||||||
ON gl.c_invoice_id = i.c_invoice_id
|
|
||||||
JOIN fact_acct fa
|
|
||||||
ON gl.fact_acct_id = fa.fact_acct_id
|
|
||||||
;
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
drop view t_invoicegl_vt
|
||||||
|
;
|
||||||
|
|
||||||
|
SELECT register_migration_script('201501091326_IDEMPIERE-1695.sql') FROM dual
|
||||||
|
;
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
drop view t_invoicegl_vt
|
||||||
|
;
|
||||||
|
|
||||||
|
SELECT register_migration_script('201501091326_IDEMPIERE-1695.sql') FROM dual
|
||||||
|
;
|
||||||
|
|
|
@ -29,7 +29,6 @@ import org.compiere.model.MFactAcct;
|
||||||
import org.compiere.model.MGLCategory;
|
import org.compiere.model.MGLCategory;
|
||||||
import org.compiere.model.MInvoice;
|
import org.compiere.model.MInvoice;
|
||||||
import org.compiere.model.MJournal;
|
import org.compiere.model.MJournal;
|
||||||
import org.compiere.model.MJournalBatch;
|
|
||||||
import org.compiere.model.MJournalLine;
|
import org.compiere.model.MJournalLine;
|
||||||
import org.compiere.model.MOrg;
|
import org.compiere.model.MOrg;
|
||||||
import org.compiere.model.Query;
|
import org.compiere.model.Query;
|
||||||
|
@ -147,7 +146,7 @@ public class InvoiceNGL extends SvrProcess
|
||||||
.append(" AND EXISTS (SELECT * FROM C_ElementValue ev ")
|
.append(" AND EXISTS (SELECT * FROM C_ElementValue ev ")
|
||||||
.append("WHERE ev.C_ElementValue_ID=fa.Account_ID AND (ev.AccountType='A' OR ev.AccountType='L'))")
|
.append("WHERE ev.C_ElementValue_ID=fa.Account_ID AND (ev.AccountType='A' OR ev.AccountType='L'))")
|
||||||
.append(" AND fa.C_AcctSchema_ID=").append(p_C_AcctSchema_ID);
|
.append(" AND fa.C_AcctSchema_ID=").append(p_C_AcctSchema_ID);
|
||||||
if (!p_IsAllCurrencies)
|
if (p_IsAllCurrencies)
|
||||||
sql.append(" AND i.C_Currency_ID<>a.C_Currency_ID");
|
sql.append(" AND i.C_Currency_ID<>a.C_Currency_ID");
|
||||||
if (ONLY_AR.equals(p_APAR))
|
if (ONLY_AR.equals(p_APAR))
|
||||||
sql.append(" AND i.IsSOTrx='Y'");
|
sql.append(" AND i.IsSOTrx='Y'");
|
||||||
|
@ -238,19 +237,23 @@ public class InvoiceNGL extends SvrProcess
|
||||||
cat = MGLCategory.get(getCtx(), docType.getGL_Category_ID());
|
cat = MGLCategory.get(getCtx(), docType.getGL_Category_ID());
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
MJournalBatch batch = new MJournalBatch(getCtx(), 0, get_TrxName());
|
MJournal journal = new MJournal (getCtx(), 0, get_TrxName());
|
||||||
batch.setDescription (getName());
|
journal.setC_DocType_ID(p_C_DocTypeReval_ID);
|
||||||
batch.setC_DocType_ID(p_C_DocTypeReval_ID);
|
journal.setPostingType(MJournal.POSTINGTYPE_Actual);
|
||||||
batch.setDateDoc(new Timestamp(System.currentTimeMillis()));
|
journal.setDateDoc(new Timestamp(System.currentTimeMillis()));
|
||||||
batch.setDateAcct(p_DateReval);
|
journal.setDateAcct(p_DateReval); // sets the period too
|
||||||
batch.setC_Currency_ID(as.getC_Currency_ID());
|
journal.setC_Currency_ID(as.getC_Currency_ID());
|
||||||
if (!batch.save())
|
journal.setC_AcctSchema_ID (as.getC_AcctSchema_ID());
|
||||||
return " - Could not create Batch";
|
journal.setC_ConversionType_ID(p_C_ConversionTypeReval_ID);
|
||||||
//
|
journal.setGL_Category_ID (cat.getGL_Category_ID());
|
||||||
MJournal journal = null;
|
journal.setDescription(getName()); // updated below
|
||||||
BigDecimal drTotal = Env.ZERO;
|
if (!journal.save())
|
||||||
BigDecimal crTotal = Env.ZERO;
|
return " - Could not create Journal";
|
||||||
|
//
|
||||||
|
BigDecimal gainTotal = Env.ZERO;
|
||||||
|
BigDecimal lossTotal = Env.ZERO;
|
||||||
int AD_Org_ID = 0;
|
int AD_Org_ID = 0;
|
||||||
|
MOrg org = null;
|
||||||
for (int i = 0; i < list.size(); i++)
|
for (int i = 0; i < list.size(); i++)
|
||||||
{
|
{
|
||||||
X_T_InvoiceGL gl = list.get(i);
|
X_T_InvoiceGL gl = list.get(i);
|
||||||
|
@ -265,65 +268,86 @@ public class InvoiceNGL extends SvrProcess
|
||||||
// Change in Org
|
// Change in Org
|
||||||
if (AD_Org_ID != gl.getAD_Org_ID())
|
if (AD_Org_ID != gl.getAD_Org_ID())
|
||||||
{
|
{
|
||||||
createBalancing (asDefaultAccts, journal, drTotal, crTotal, AD_Org_ID, (i+1) * 10);
|
createBalancing (asDefaultAccts, journal, gainTotal, lossTotal, AD_Org_ID, (i+1) * 10);
|
||||||
//
|
//
|
||||||
AD_Org_ID = gl.getAD_Org_ID();
|
AD_Org_ID = gl.getAD_Org_ID();
|
||||||
drTotal = Env.ZERO;
|
gainTotal = Env.ZERO;
|
||||||
crTotal = Env.ZERO;
|
lossTotal = Env.ZERO;
|
||||||
journal = null;
|
journal = null;
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
if (journal == null)
|
if (org == null) {
|
||||||
{
|
org = MOrg.get(getCtx(), gl.getAD_Org_ID());
|
||||||
journal = new MJournal (batch);
|
journal.setDescription (getName() + " - " + org.getName());
|
||||||
journal.setC_AcctSchema_ID (as.getC_AcctSchema_ID());
|
if (!journal.save())
|
||||||
journal.setC_Currency_ID(as.getC_Currency_ID());
|
return " - Could not set Description for Journal";
|
||||||
journal.setC_ConversionType_ID(p_C_ConversionTypeReval_ID);
|
|
||||||
MOrg org = MOrg.get(getCtx(), gl.getAD_Org_ID());
|
|
||||||
journal.setDescription (getName() + " - " + org.getName());
|
|
||||||
journal.setGL_Category_ID (cat.getGL_Category_ID());
|
|
||||||
if (!journal.save())
|
|
||||||
return " - Could not create Journal";
|
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
MJournalLine line = new MJournalLine(journal);
|
MJournalLine line = new MJournalLine(journal);
|
||||||
line.setLine((i+1) * 10);
|
line.setLine((i+1) * 10);
|
||||||
line.setDescription(invoice.getSummary());
|
line.setDescription(invoice.getSummary());
|
||||||
//
|
//
|
||||||
MFactAcct fa = new MFactAcct (getCtx(), gl.getFact_Acct_ID(), null);
|
MFactAcct fa = new MFactAcct (getCtx(), gl.getFact_Acct_ID(), null);
|
||||||
line.setC_ValidCombination_ID(MAccount.get(fa));
|
MAccount acct = MAccount.get(fa);
|
||||||
|
line.setC_ValidCombination_ID(acct);
|
||||||
BigDecimal dr = gl.getAmtRevalDrDiff();
|
BigDecimal dr = gl.getAmtRevalDrDiff();
|
||||||
BigDecimal cr = gl.getAmtRevalCrDiff();
|
BigDecimal cr = gl.getAmtRevalCrDiff();
|
||||||
drTotal = drTotal.add(dr);
|
// Check if acct.IsActiva to differentiate gain and loss ->
|
||||||
crTotal = crTotal.add(cr);
|
// acct.isActiva negative dr or positive cr -> loss
|
||||||
|
// acct.isActiva positive dr or negative cr -> gain
|
||||||
|
// acct.isPassiva negative cr or positive dr -> gain
|
||||||
|
// acct.isPassiva positive cr or negative dr -> loss
|
||||||
|
if (acct.isActiva()) {
|
||||||
|
if (dr.signum() < 0) {
|
||||||
|
lossTotal = lossTotal.add(dr.negate());
|
||||||
|
} else if (dr.signum() > 0) {
|
||||||
|
gainTotal = gainTotal.add(dr);
|
||||||
|
}
|
||||||
|
if (cr.signum() > 0) {
|
||||||
|
lossTotal = lossTotal.add(cr);
|
||||||
|
} if (cr.signum() < 0) {
|
||||||
|
gainTotal = gainTotal.add(cr.negate());
|
||||||
|
}
|
||||||
|
} else { // isPassiva
|
||||||
|
if (cr.signum() < 0) {
|
||||||
|
gainTotal = gainTotal.add(cr.negate());
|
||||||
|
} else if (cr.signum() > 0) {
|
||||||
|
lossTotal = lossTotal.add(cr);
|
||||||
|
}
|
||||||
|
if (dr.signum() > 0) {
|
||||||
|
gainTotal = gainTotal.add(dr);
|
||||||
|
} else if (dr.signum() < 0) {
|
||||||
|
lossTotal = lossTotal.add(dr.negate());
|
||||||
|
}
|
||||||
|
}
|
||||||
line.setAmtSourceDr (dr);
|
line.setAmtSourceDr (dr);
|
||||||
line.setAmtAcctDr (dr);
|
line.setAmtAcctDr (dr);
|
||||||
line.setAmtSourceCr (cr);
|
line.setAmtSourceCr (cr);
|
||||||
line.setAmtAcctCr (cr);
|
line.setAmtAcctCr (cr);
|
||||||
line.saveEx();
|
line.saveEx();
|
||||||
}
|
}
|
||||||
createBalancing (asDefaultAccts, journal, drTotal, crTotal, AD_Org_ID, (list.size()+1) * 10);
|
createBalancing (asDefaultAccts, journal, gainTotal, lossTotal, AD_Org_ID, (list.size()+1) * 10);
|
||||||
|
|
||||||
StringBuilder msgreturn = new StringBuilder(" - ").append(batch.getDocumentNo()).append(" #").append(list.size());
|
StringBuilder msgreturn = new StringBuilder(" - ").append(journal.getDocumentNo()).append(" #").append(list.size());
|
||||||
return msgreturn.toString();
|
addLog(journal.getGL_Journal_ID(), null, null, msgreturn.toString(), MJournal.Table_ID, journal.getGL_Journal_ID());
|
||||||
|
return "OK";
|
||||||
} // createGLJournal
|
} // createGLJournal
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create Balancing Entry
|
* Create Balancing Entry
|
||||||
* @param asDefaultAccts acct schema default accounts
|
* @param asDefaultAccts acct schema default accounts
|
||||||
* @param journal journal
|
* @param journal journal
|
||||||
* @param drTotal dr
|
* @param gainTotal dr
|
||||||
* @param crTotal cr
|
* @param lossTotal cr
|
||||||
* @param AD_Org_ID org
|
* @param AD_Org_ID org
|
||||||
* @param lineNo base line no
|
* @param lineNo base line no
|
||||||
*/
|
*/
|
||||||
private void createBalancing (MAcctSchemaDefault asDefaultAccts, MJournal journal,
|
private void createBalancing (MAcctSchemaDefault asDefaultAccts, MJournal journal,
|
||||||
BigDecimal drTotal, BigDecimal crTotal, int AD_Org_ID, int lineNo)
|
BigDecimal gainTotal, BigDecimal lossTotal, int AD_Org_ID, int lineNo)
|
||||||
{
|
{
|
||||||
if (journal == null)
|
if (journal == null)
|
||||||
throw new IllegalArgumentException("Jornal is null");
|
|
||||||
// CR Entry = Gain
|
// CR Entry = Gain
|
||||||
if (drTotal.signum() != 0)
|
if (gainTotal.signum() != 0)
|
||||||
{
|
{
|
||||||
MJournalLine line = new MJournalLine(journal);
|
MJournalLine line = new MJournalLine(journal);
|
||||||
line.setLine(lineNo+1);
|
line.setLine(lineNo+1);
|
||||||
|
@ -337,12 +361,12 @@ public class InvoiceNGL extends SvrProcess
|
||||||
get_TrxName());
|
get_TrxName());
|
||||||
line.setDescription(Msg.getElement(getCtx(), "UnrealizedGain_Acct"));
|
line.setDescription(Msg.getElement(getCtx(), "UnrealizedGain_Acct"));
|
||||||
line.setC_ValidCombination_ID(acct.getC_ValidCombination_ID());
|
line.setC_ValidCombination_ID(acct.getC_ValidCombination_ID());
|
||||||
line.setAmtSourceCr (drTotal);
|
line.setAmtSourceCr (gainTotal);
|
||||||
line.setAmtAcctCr (drTotal);
|
line.setAmtAcctCr (gainTotal);
|
||||||
line.saveEx();
|
line.saveEx();
|
||||||
}
|
}
|
||||||
// DR Entry = Loss
|
// DR Entry = Loss
|
||||||
if (crTotal.signum() != 0)
|
if (lossTotal.signum() != 0)
|
||||||
{
|
{
|
||||||
MJournalLine line = new MJournalLine(journal);
|
MJournalLine line = new MJournalLine(journal);
|
||||||
line.setLine(lineNo+2);
|
line.setLine(lineNo+2);
|
||||||
|
@ -356,8 +380,8 @@ public class InvoiceNGL extends SvrProcess
|
||||||
get_TrxName());
|
get_TrxName());
|
||||||
line.setDescription(Msg.getElement(getCtx(), "UnrealizedLoss_Acct"));
|
line.setDescription(Msg.getElement(getCtx(), "UnrealizedLoss_Acct"));
|
||||||
line.setC_ValidCombination_ID(acct.getC_ValidCombination_ID());
|
line.setC_ValidCombination_ID(acct.getC_ValidCombination_ID());
|
||||||
line.setAmtSourceDr (crTotal);
|
line.setAmtSourceDr (lossTotal);
|
||||||
line.setAmtAcctDr (crTotal);
|
line.setAmtAcctDr (lossTotal);
|
||||||
line.saveEx();
|
line.saveEx();
|
||||||
}
|
}
|
||||||
} // createBalancing
|
} // createBalancing
|
||||||
|
|
Loading…
Reference in New Issue