[ 1812144 ] In LandedCost Cost Distribution for type "Cost" is not work. Following mar_cal_westf's advice.

This commit is contained in:
armenrz 2008-10-10 09:40:41 +00:00
parent faef3f0217
commit a783f40b25
1 changed files with 6 additions and 6 deletions

View File

@ -580,13 +580,13 @@ public class MInOutLine extends X_M_InOutLine
{
if (MLandedCost.LANDEDCOSTDISTRIBUTION_Costs.equals(CostDistribution))
{
//Goodwill
int c_OrderLine_Id = getC_OrderLine_ID();
if(c_OrderLine_Id != 0){
MOrderLine oLine = new MOrderLine(getCtx(), c_OrderLine_Id, get_TrxName());
return oLine.getLineNetAmt();
MInvoiceLine m_il = MInvoiceLine.getOfInOutLine(this);
if (m_il == null)
{
log.severe("No Invoice Line for: " + this.toString());
return Env.ZERO;
}
return Env.ZERO;
return m_il.getLineNetAmt();
}
else if (MLandedCost.LANDEDCOSTDISTRIBUTION_Line.equals(CostDistribution))
return Env.ONE;