Commit d2f24ff0 authored by ssalve's avatar ssalve

Done changes for inv_amt casting for double to Double on line no.1324 08NOV2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@173239 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a4417b64
...@@ -1321,8 +1321,9 @@ public String defaultDataWiz() throws RemoteException, ITMException ...@@ -1321,8 +1321,9 @@ public String defaultDataWiz() throws RemoteException, ITMException
dataMap = tempList.get(iCtr); dataMap = tempList.get(iCtr);
cctrCode = (String)dataMap.get("tech_spec"); cctrCode = (String)dataMap.get("tech_spec");
itemSer = (String)dataMap.get("item_ser"); itemSer = (String)dataMap.get("item_ser");
invAmt = (double)dataMap.get("inv_amt"); //changes by sarita on 08NOV2017
//invAmt = (double)dataMap.get("inv_amt");
invAmt = (Double)dataMap.get("inv_amt");
calcAlloc = (invAmt / totSalesAmt) * 100; calcAlloc = (invAmt / totSalesAmt) * 100;
System.out.println("calcAlloc Amt::[" +calcAlloc+"]"); System.out.println("calcAlloc Amt::[" +calcAlloc+"]");
......
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