Commit afd354bc authored by kmandhre's avatar kmandhre

change in commission loop ,start with zero


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95298 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d6d0dbe2
......@@ -849,7 +849,7 @@ public class CalculateCommission
}
}
drnList = new ArrayList<String>();
for(int cnt =1 ;commtList.size() > cnt ;cnt++)
for(int cnt = 0 ;commtList.size() > cnt ;cnt++) //change done by kunal on 23/jun/14 loop start with 0
{
commMap = new HashMap();
commMap = (HashMap) commtList.get(cnt);
......@@ -2425,7 +2425,7 @@ public class CalculateCommission
pstmt.close();
pstmt = null;
crnList = new ArrayList<String>();
for(int cnt =1 ;commtList.size() > cnt ;cnt++)
for(int cnt = 0 ;commtList.size() > cnt ;cnt++) //change done by kunal on 23/jun/14 loop start with 0
{
commMap = new HashMap();
commMap = (HashMap) commtList.get(cnt);
......
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