Commit c6c415cc authored by ngadkari's avatar ngadkari

removed single quotes from msg_no

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@196623 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 70d18e7c
......@@ -481,7 +481,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
pstmt = null;
if(cnt==0)
{
errString = itmDBAccessLocal.getErrorString("","''VTNODET1''","","",conn);
errString = itmDBAccessLocal.getErrorString("","VTNODET1","","",conn);//removed single quotes from msg_no by nandkumar gadkari on 2/02/19
return errString;
}
......@@ -505,7 +505,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
//check if total commision exceeds Order Amount.
if(totalCommAmt > ordAmount)
{
errString = itmDBAccessLocal.getErrorString("","''VTCOMMERR''","","",conn);
errString = itmDBAccessLocal.getErrorString("","VTCOMMERR","","",conn);//removed single quotes from msg_no by nandkumar gadkari on 2/02/19
return errString;
}
}
......@@ -543,7 +543,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
//check if total commision exceeds Order Amount.
if(totalCommAmt > ordAmount)
{
errString = itmDBAccessLocal.getErrorString("","''VTCOMMERR''","","",conn);
errString = itmDBAccessLocal.getErrorString("","VTCOMMERR","","",conn);//removed single quotes from msg_no by nandkumar gadkari on 2/02/19
return errString;
}
......@@ -560,7 +560,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
pstmt1 = null;
if(updCnt <= 0)
{
errString = itmDBAccessLocal.getErrorString("","''VTNCONFT''","","",conn);
errString = itmDBAccessLocal.getErrorString("","VTNCONFT","","",conn);//removed single quotes from msg_no by nandkumar gadkari on 2/02/19
return errString;
}
}
......@@ -1002,7 +1002,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
}
else
{
errString = itmDBAccessLocal.getErrorString("","''VTNCONFT''","","",conn);
errString = itmDBAccessLocal.getErrorString("","VTNCONFT","","",conn);//removed single quotes from msg_no by nandkumar gadkari on 2/02/19
return errString;
}
}
......
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