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 ...@@ -481,7 +481,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
pstmt = null; pstmt = null;
if(cnt==0) 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; return errString;
} }
...@@ -505,7 +505,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor ...@@ -505,7 +505,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
//check if total commision exceeds Order Amount. //check if total commision exceeds Order Amount.
if(totalCommAmt > ordAmount) 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; return errString;
} }
} }
...@@ -543,7 +543,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor ...@@ -543,7 +543,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
//check if total commision exceeds Order Amount. //check if total commision exceeds Order Amount.
if(totalCommAmt > ordAmount) 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; return errString;
} }
...@@ -560,7 +560,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor ...@@ -560,7 +560,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
pstmt1 = null; pstmt1 = null;
if(updCnt <= 0) 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; return errString;
} }
} }
...@@ -1002,7 +1002,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor ...@@ -1002,7 +1002,7 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
} }
else 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; 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