Commit 58b83ef7 authored by vvengurlekar's avatar vvengurlekar

SalesOrderIC.java - For resolving Koye issue 7[bom description was not setting in item description]


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@190543 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9973d422
......@@ -9716,7 +9716,7 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
System.out.println("descr[" + descr + "]");
}
lsItemFlg = checkNull(genericUtility.getColumnValue("item_flg", dom));
System.out.println("descr for bom ::["+descr+"] lsItemFlg :::["+lsItemFlg+"]");
if ("B".equalsIgnoreCase(lsItemFlg)) {
lsItemDesc = mDescr + " " + descr;
} else {
......@@ -9812,12 +9812,16 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
rs = null;
pstmt.close();
pstmt = null;
//Added by Varsha V on 07-09-18 for resolving Koye issue 7[bom description was not setting in item description]
lsItemFlg = checkNull(genericUtility.getColumnValue("item_flg", dom));
System.out.println("descr for bom ::["+descr+"] lsItemFlg :::["+lsItemFlg+"]");
//Ended by Varsha V on 07-09-18 for resolving Koye issue 7[bom description was not setting in item description
if ("B".equalsIgnoreCase(lsItemFlg)) {
lsItemDesc = mDescr1 + " " + descr;
} else {
lsItemDesc = mDescr1;
}
System.out.println("lsItemDesc ::["+lsItemDesc+"] ");
////////////// added by aru pal 13-12-17
String schAttr = checkNull(genericUtility.getColumnValue("sch_attr", dom));
......
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