Commit 13458426 authored by kshinde's avatar kshinde

bug fix

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@181556 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fa12a0d3
......@@ -169,7 +169,7 @@ public class DemandGenPrc extends ProcessEJB implements DemandGenPrcLocal, Deman
// if Already present sum quantity
if (indDemandrow.containsKey(Key)) {
double SumQuantity = (indDemandrow.get(Key)) + quantity;
indDemandrow.replace(Key, SumQuantity);
indDemandrow.put(Key, SumQuantity);
} else {
System.out.println("Key is " + Key);
indDemandrow.put(Key, quantity);
......
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