Commit 72f377ff authored by apal's avatar apal

Client Request Id:D17FPIT001 and clinet name : pitambari

We need table structure for following outbound master and transaction as mentioned in the scope document:
1. Item Master
2. Customer Master
3. Scheme Master
4. Price-list Master
5. Invoice
6. Sales return

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@172744 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ba02039d
...@@ -517,7 +517,10 @@ public class ProteusDataSource ...@@ -517,7 +517,10 @@ public class ProteusDataSource
Iterator keySetIterator = this.modifiedRowMap.keySet().iterator(); Iterator keySetIterator = this.modifiedRowMap.keySet().iterator();
while(keySetIterator.hasNext()) while(keySetIterator.hasNext())
{ {
key = (int)keySetIterator.next(); //key = (int)keySetIterator.next();
//Added by arun 1-11-17 start
key = Integer.parseInt((String)keySetIterator.next());
//Added by arun 1-11-17 ended
modifiedColumnList = (ArrayList)this.modifiedRowMap.get(key); modifiedColumnList = (ArrayList)this.modifiedRowMap.get(key);
modifiedColumnCounts = modifiedColumnList.size(); modifiedColumnCounts = modifiedColumnList.size();
if (modifiedColumnCounts > 0) if (modifiedColumnCounts > 0)
......
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