[ 1812144 ] In LandedCost Cost Distribution for type "Cost" is not work.

This commit is contained in:
armenrz 2008-09-21 05:13:47 +00:00
parent 2605bb1a79
commit 98baad232a
1 changed files with 6 additions and 2 deletions

View File

@ -580,8 +580,12 @@ public class MInOutLine extends X_M_InOutLine
{ {
if (MLandedCost.LANDEDCOSTDISTRIBUTION_Costs.equals(CostDistribution)) if (MLandedCost.LANDEDCOSTDISTRIBUTION_Costs.equals(CostDistribution))
{ {
// TODO Costs! //Goodwill
log.severe("Not Implemented yet - Cost"); 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();
}
return Env.ZERO; return Env.ZERO;
} }
else if (MLandedCost.LANDEDCOSTDISTRIBUTION_Line.equals(CostDistribution)) else if (MLandedCost.LANDEDCOSTDISTRIBUTION_Line.equals(CostDistribution))