Commit ced932d0 authored by caluka's avatar caluka

Purchase Order Amendment Detail Screen set Item change for item code.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94628 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d7638e12
...@@ -2897,7 +2897,10 @@ public class POrderAmdIC extends ValidatorEJB implements POrderAmdICLocal, POrde ...@@ -2897,7 +2897,10 @@ public class POrderAmdIC extends ValidatorEJB implements POrderAmdICLocal, POrde
rs = null; rs = null;
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
//Added by chandrashekar on 22-04-2014
descr = setDescription("descr","item","item_code",itemCode,conn);
valueXmlString.append("<item_descr>").append("<![CDATA["+descr+"]]>").append("</item_descr>");
//End by chandrashekar
valueXmlString.append("<status >").append("<![CDATA["+status+"]]>").append("</status>"); valueXmlString.append("<status >").append("<![CDATA["+status+"]]>").append("</status>");
valueXmlString.append("<site_code >").append("<![CDATA["+siteCode+"]]>").append("</site_code>"); valueXmlString.append("<site_code >").append("<![CDATA["+siteCode+"]]>").append("</site_code>");
...@@ -2962,7 +2965,7 @@ public class POrderAmdIC extends ValidatorEJB implements POrderAmdICLocal, POrde ...@@ -2962,7 +2965,7 @@ public class POrderAmdIC extends ValidatorEJB implements POrderAmdICLocal, POrde
valueXmlString.append("<duty_paid >").append("<![CDATA["+dutyPaid+"]]>").append("</duty_paid>"); valueXmlString.append("<duty_paid >").append("<![CDATA["+dutyPaid+"]]>").append("</duty_paid>");
valueXmlString.append("<duty_paid__o >").append("<![CDATA["+dutyPaid+"]]>").append("</duty_paid__o>"); valueXmlString.append("<duty_paid__o >").append("<![CDATA["+dutyPaid+"]]>").append("</duty_paid__o>");
valueXmlString.append("<dept_code >").append("<![CDATA["+deptCode+"]]>").append("</dept_code>"); valueXmlString.append("<dept_code >").append("<![CDATA["+deptCode+"]]>").append("</dept_code>");
sql = " select emp_code__qcaprv from porddet where purc_order = ? and line_no = ? " ; sql = " select emp_code__qcaprv from porddet where purc_order = ? and line_no = ? " ;
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,purcOrder); pstmt.setString(1,purcOrder);
......
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