Commit f0e51910 authored by arawankar's avatar arawankar

PayablesOpeningConf.java

-Take loginCode from xtraParams

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@191056 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8b899e01
......@@ -83,7 +83,10 @@ public class PayablesOpeningConf extends ActionHandlerEJB implements PayablesO
// GenericUtility genericUtility = GenericUtility.getInstance();
ConnDriver connDriver = new ConnDriver();
String empCode = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginEmpCode");
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"userId");
//Modified by Anjali R. on[21/09/2018][Start]
//userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"userId");
userId = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"loginCode");
//Modified by Anjali R. on[21/09/2018][End]
System.out.println("userId ::>"+userId);
try
{
......@@ -911,7 +914,7 @@ public class PayablesOpeningConf extends ActionHandlerEJB implements PayablesO
return retString;
}//confirm()
//Modified by Anjali R. on[20/09/2018][Added new method to check null][Start]
private static String checkNull(String input)
private String checkNull(String input)
{
if (input == null)
{
......
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