Commit e8a02929 authored by pchavan's avatar pchavan

PriyankaC: Update SQL to get acceptCriteria value.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177696 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e619b605
......@@ -509,7 +509,8 @@ public class PostOrderActivity {
}
sql="select pord_type ,curr_code "
sql= //"select pord_type ,curr_code "
"select pord_type ,curr_code, accept_criteria "//Changed By PriyankaC on 05JAN18.
+ " from porder where purc_order = ? ";
pstmt=connCP.prepareStatement(sql);
pstmt.setString(1,custPord);
......@@ -518,6 +519,7 @@ public class PostOrderActivity {
{
pordType=rs.getString(1);
poCurrCode=rs.getString(2);
acceptCriteria = rs.getString(3);//Added By PriyankaC on 05JAN18.
}
rs.close();
rs=null;
......
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