Commit 8ee5ba42 authored by kpandey's avatar kpandey

Added loginCode in order to fetch HCP Call Dasboard Result on basis of Login Code

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@201728 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f623e4ab
......@@ -47,6 +47,8 @@ public class DashboardUtil
private String userTranDB = "DEFAULT";
private UserInfoBean userInfo = null;
public String loginCode;
public UserInfoBean getUserInfo()
{
......@@ -849,6 +851,12 @@ public class DashboardUtil
fil.put("default_value",checkNull(empCode).trim()+",");
System.out.println("toget user emp_code => "+fil);
}
else if(defaultValue !=null && "LOGIN_CODE".equalsIgnoreCase(defaultValue.toString()))
{
System.out.println("LOGIN_CODE for column value in hcp Cals => "+this.loginCode);
fil.put("default_value",this.loginCode.trim() +",");
System.out.println("toget user login code in hcp calls ["+ fil +"]");
}
System.out.println("default value "+fil);
System.out.println("Inside type processDashboardFilter>>>>>>"+type);
......
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