Commit b80befd5 authored by ssalve's avatar ssalve

Sarita : Done changes to change signature of method nfCheckPeriod("IC",...

Sarita : Done changes to change signature of method nfCheckPeriod("IC", tranDate, siteCode)  to nfCheckPeriod("IC", tranDate, siteCode,conn) on 21DEC2017;

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@176975 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 30083fc8
...@@ -209,7 +209,9 @@ public class PhyItemVerifyIC extends ValidatorEJB implements PhyItemVerifyICLoca ...@@ -209,7 +209,9 @@ public class PhyItemVerifyIC extends ValidatorEJB implements PhyItemVerifyICLoca
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
// nvo_functions_adv.nf_check_period('SAL',mdate1,msite_code) // nvo_functions_adv.nf_check_period('SAL',mdate1,msite_code)
errCode = nfCheckPeriod("IC", tranDate, siteCode); //errCode = nfCheckPeriod("IC", tranDate, siteCode);
//method added & replaced by sarita on 21DEC2017 [New Signature of nfCheckPeriod]
errCode = nfCheckPeriod("IC", tranDate, siteCode,conn);
System.out.println("425 Error Code = " + errCode); System.out.println("425 Error Code = " + errCode);
if (errCode != null && errCode.trim().length() > 0) if (errCode != null && errCode.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