Commit 8f61bbc3 authored by caluka's avatar caluka

Net Required Quantity(plan supply) added in place of Running Supply


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98549 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 490f3464
...@@ -113,18 +113,18 @@ public class ReqViewMrpBean { ...@@ -113,18 +113,18 @@ public class ReqViewMrpBean {
{ {
supply = detail3List.item(cntr).getFirstChild().getNodeValue(); supply = detail3List.item(cntr).getFirstChild().getNodeValue();
} }
/*if("plan_supply".equalsIgnoreCase( detail3Node.getNodeName())) if("plan_supply".equalsIgnoreCase( detail3Node.getNodeName()))
{ {
planSupply = detail3List.item(cntr).getFirstChild().getNodeValue(); planSupply = detail3List.item(cntr).getFirstChild().getNodeValue();
}*/ }
/*if("running_demand".equalsIgnoreCase( detail3Node.getNodeName())) /*if("running_demand".equalsIgnoreCase( detail3Node.getNodeName()))
{ {
runningDemand = detail3List.item(cntr).getFirstChild().getNodeValue(); runningDemand = detail3List.item(cntr).getFirstChild().getNodeValue();
}*/ }*/
if("running_supply".equalsIgnoreCase( detail3Node.getNodeName())) /*if("running_supply".equalsIgnoreCase( detail3Node.getNodeName()))
{ {
runningSupplyStr = detail3List.item(cntr).getFirstChild().getNodeValue(); runningSupplyStr = detail3List.item(cntr).getFirstChild().getNodeValue();
} }*/
/*if("running_plan_supply".equalsIgnoreCase( detail3Node.getNodeName())) /*if("running_plan_supply".equalsIgnoreCase( detail3Node.getNodeName()))
{ {
runningPlanSupply = detail3List.item(cntr).getFirstChild().getNodeValue(); runningPlanSupply = detail3List.item(cntr).getFirstChild().getNodeValue();
...@@ -194,10 +194,10 @@ public class ReqViewMrpBean { ...@@ -194,10 +194,10 @@ public class ReqViewMrpBean {
rowlist.add(supply); rowlist.add(supply);
rowlist.add(quarntineStk); rowlist.add(quarntineStk);
rowlist.add(holdQtyStr); rowlist.add(holdQtyStr);
//rowlist.add(planSupply); rowlist.add(planSupply);
//rowlist.add(runningPlanSupply); //rowlist.add(runningPlanSupply);
//rowlist.add(runningDemand); //rowlist.add(runningDemand);
rowlist.add(runningSupplyStr); //rowlist.add(runningSupplyStr);
rowlist.add(pendingIndent); rowlist.add(pendingIndent);
rowlist.add(pendingPo); rowlist.add(pendingPo);
rowlist.add(reorderQty); rowlist.add(reorderQty);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment