Commit fdc320f3 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@176983 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 26bbb057
......@@ -322,7 +322,9 @@ public class StockTransferIC extends ValidatorEJB implements StockTransferICRemo
break;
}
// nvo_functions_adv.nf_check_period('SAL',mdate1,msite_code)
errCode = nfCheckPeriod("IC", tranDateDt, siteCode);
//errCode = nfCheckPeriod("IC", tranDateDt, siteCode);
//method added & replaced by sarita on 21DEC2017 [New Signature of nfCheckPeriod]
errCode = nfCheckPeriod("IC", tranDateDt, siteCode,conn);
System.out.println("425 Error Code = " + errCode);
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