Commit eaa01565 authored by msharma's avatar msharma

Change the position of Hold Flag column


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93223 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fde97e9e
...@@ -386,6 +386,9 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc ...@@ -386,6 +386,9 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc
//CUST_NAME //CUST_NAME
//retTabSepStrBuff.append(rs.getString(2)).append("\t"); //retTabSepStrBuff.append(rs.getString(2)).append("\t");
retTabSepStrBuff.append("<cust_name>").append("<![CDATA[" + rs.getString(2) +"]]>").append("</cust_name>"); retTabSepStrBuff.append("<cust_name>").append("<![CDATA[" + rs.getString(2) +"]]>").append("</cust_name>");
//Hold Flag
//retTabSepStrBuff.append(rs.getString(14) == null?"N":rs.getString(14)).append("\t");// ADDED BY AKHILESH
retTabSepStrBuff.append("<hold_flag>").append("<![CDATA[" + (rs.getString(14) == null? " ":rs.getString(14)) +"]]>").append("</hold_flag>");
//LINE_NO //LINE_NO
//retTabSepStrBuff.append(rs.getString(3)).append("\t"); //retTabSepStrBuff.append(rs.getString(3)).append("\t");
retTabSepStrBuff.append("<line_no>").append("<![CDATA[" + rs.getString(3) +"]]>").append("</line_no>"); retTabSepStrBuff.append("<line_no>").append("<![CDATA[" + rs.getString(3) +"]]>").append("</line_no>");
...@@ -478,9 +481,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc ...@@ -478,9 +481,7 @@ public class StockAllocationPrc extends ProcessEJB implements StockAllocationPrc
//DESCR //DESCR
//retTabSepStrBuff.append(rs.getString(7)).append("\t"); //retTabSepStrBuff.append(rs.getString(7)).append("\t");
retTabSepStrBuff.append("<item_descr>").append("<![CDATA[" + rs.getString(7) +"]]>").append("</item_descr>"); retTabSepStrBuff.append("<item_descr>").append("<![CDATA[" + rs.getString(7) +"]]>").append("</item_descr>");
//Hold Flag
//retTabSepStrBuff.append(rs.getString(14) == null?"N":rs.getString(14)).append("\t");// ADDED BY AKHILESH
retTabSepStrBuff.append("<hold_flag>").append("<![CDATA[" + (rs.getString(14) == null? " ":rs.getString(14)) +"]]>").append("</hold_flag>");
// this line has to be commented later // this line has to be commented later
// as this will be a input from the user // as this will be a input from the user
......
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