Commit 5633eba2 authored by msingh's avatar msingh

Changed by Manish on 09/09/16 for removing extra semicolon


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103305 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 70c11653
......@@ -798,7 +798,10 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
}
if(minShelfLife==0)
{
sql="SELECT min_shelf_life FROM item WHERE item_code = ?;";
//Changed by Manish on 09/09/16 for removing extra semicolon[start]
//sql="SELECT min_shelf_life FROM item WHERE item_code = ?;";
sql="SELECT min_shelf_life FROM item WHERE item_code = ?";
//Changed by Manish on 09/09/16 for removing extra semicolon[end]
pstmt1 = conn.prepareStatement(sql);
pstmt1.setString(1, itemCode);
rs1 = pstmt1.executeQuery();
......
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