Commit 143e5d9b authored by smanohar's avatar smanohar

Changes in accounting of service charge GRN

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@211318 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e5d9929b
...@@ -2161,7 +2161,13 @@ public class CreatePoRcpVoucher ...@@ -2161,7 +2161,13 @@ public class CreatePoRcpVoucher
{ {
VoucherConf voucherConf = new VoucherConf(); VoucherConf voucherConf = new VoucherConf();
retString = voucherConf.confirm( tranIdVoucher, xtraParams, "N", conn); retString = voucherConf.confirm( tranIdVoucher, xtraParams, "N", conn);
System.out.println("retString from VoucherConf is :"+retString);
voucherConf = null; voucherConf = null;
if (retString != null && retString.length() > 0 && (retString.indexOf("<error>") > -1 ||retString.indexOf("VTCICONF3") < 0) )
{
errString = retString;
return retString;
}
} }
} }
else else
...@@ -3154,6 +3160,8 @@ public class CreatePoRcpVoucher ...@@ -3154,6 +3160,8 @@ public class CreatePoRcpVoucher
retString = createPoRcpVoucher(transactionId , xtraParams , conn); retString = createPoRcpVoucher(transactionId , xtraParams , conn);
System.out.println("retString [from createPoRcpVoucher] is ==\n" +retString); System.out.println("retString [from createPoRcpVoucher] is ==\n" +retString);
}//rowCount if block end }//rowCount if block end
else else
{ {
......
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