Commit 4782e7f9 authored by manohar's avatar manohar

other site related changes and bug fixing for cr/dr mismatch checking


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92496 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9232c781
......@@ -526,7 +526,7 @@ public class JvConfirm extends ActionHandlerEJB implements JvConfirmLocal,JvCon
{
// 08/01/13 manoharan wrong condition
//if (errString != null && errString.indexOf("Error") != -1 )
if (errString == null || errString.indexOf("Error") != -1 )
if (errString == null || errString.indexOf("Error") == -1 )
{
errString = Fcommon.checkGlTranDrCr("JOUR",tranId,conn);
if(errString != null && errString.trim().length() > 0)
......@@ -1303,7 +1303,7 @@ public class JvConfirm extends ActionHandlerEJB implements JvConfirmLocal,JvCon
{
// 08/01/13 manoharan wrong condition
//if (errString != null && errString.indexOf("Error") != -1 )
if (errString == null || errString.indexOf("Error") != -1 )
if (errString == null || errString.indexOf("Error") == -1 )
{
errString = Fcommon.checkGlTranDrCr("JOUR",tranId,conn);
if(errString != null && errString.trim().length() > 0)
......
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