Commit 5a6911c0 authored by pbhosale's avatar pbhosale

Updated on [19/11/2019]changes done as suggested by Piyush sir

AdmCommon.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@212364 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 56e434aa
...@@ -553,7 +553,10 @@ public class AdmCommon ...@@ -553,7 +553,10 @@ public class AdmCommon
voucherNo = rs.getString("VOUCHER_NO"); voucherNo = rs.getString("VOUCHER_NO");
//Modified by Ahmed on 22/Mar/2017[As instructed by Piyush sir for trimmed value of voucher no as PAYROLL] //Modified by Ahmed on 22/Mar/2017[As instructed by Piyush sir for trimmed value of voucher no as PAYROLL]
if(voucherNo != null && !(voucherNo.trim().equalsIgnoreCase("PAYROLL"))) //Modified by Poonam B[19/11/2019][START][Changes done as suggested by piyush sir]
//if(voucherNo != null && !(voucherNo.trim().equalsIgnoreCase("PAYROLL")))
if(voucherNo != null && (voucherNo.trim().equalsIgnoreCase("PAYROLL")))
//Modified by Poonam B[19/11/2019][END][Changes done as suggested by piyush sir]
{ {
}//Added by Anjali R. on [19/07/2019][To terminate if condition here as per pb code] }//Added by Anjali R. on [19/07/2019][To terminate if condition here as per pb code]
......
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