Commit 9e271165 authored by mnair's avatar mnair

Commented in wfvaldata inside the column emp_code__ord1

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@185316 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 374dfebf
...@@ -976,7 +976,9 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal ...@@ -976,7 +976,9 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
} else if (childNodeName.equalsIgnoreCase("emp_code__ord1")) { } else if (childNodeName.equalsIgnoreCase("emp_code__ord1")) {
String empCodeOrd = ""; String empCodeOrd = "";
empCodeOrd = checkNull(genericUtility.getColumnValue("emp_code__ord1", dom)); empCodeOrd = checkNull(genericUtility.getColumnValue("emp_code__ord1", dom));
System.out.println("Inside wfvaldata 982"+empCodeOrd);
if (empCodeOrd != null && empCodeOrd.trim().length() > 0) { if (empCodeOrd != null && empCodeOrd.trim().length() > 0) {
System.out.println("Inside if condition 982 "+empCodeOrd);
if (!(isExist(conn, "employee", "emp_code", empCodeOrd))) { if (!(isExist(conn, "employee", "emp_code", empCodeOrd))) {
errCode = "VMEMPORD2"; errCode = "VMEMPORD2";
errList.add(errCode); errList.add(errCode);
...@@ -5633,8 +5635,8 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal ...@@ -5633,8 +5635,8 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
} else { } else {
System.out.println("mayur nair654"+lsEmpCodeOrd1); System.out.println("mayur nair654"+lsEmpCodeOrd1);
//added by mayur on 23-May-18 --start //added by mayur on 23-May-18 --start
valueXmlString.append("<emp_code__ord>").append("<![CDATA[" + lsEmpCodeOrd1 + "]]>") valueXmlString.append("<emp_code__ord1>").append("<![CDATA[" + lsEmpCodeOrd1 + "]]>")
.append("</emp_code__ord>"); .append("</emp_code__ord1>");
//added by mayur on 23-May-18 --end //added by mayur on 23-May-18 --end
sql = "select emp_fname, emp_lname from employee where emp_code =?"; sql = "select emp_fname, emp_lname from employee where emp_code =?";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
......
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