Commit a84f882c authored by arawankar's avatar arawankar

Changes made in FinCommon.java

1. if user id is null in xtra params then take login code from xtra params
2. if login code is null then added chg user as "system"

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@182319 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 629d5649
......@@ -12448,6 +12448,16 @@ public class FinCommon
try
{
String chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams,"userId");
//Modified by Anjali R. on[20/03/2018][To take login code from xtra params if user id is null][Start]
if(chgUser == null || chgUser.trim().length() == 0 )
{
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
if(chgUser == null || chgUser.trim().length() == 0)
{
chgUser = "system";
}
}
//Modified by Anjali R. on[20/03/2018][To take login code from xtra params if user id is null][End]
java.sql.Timestamp tranDate = java.sql.Timestamp.valueOf((hMapBankTranLog.get("tran_date").toString()));
String tranSer = (String)hMapBankTranLog.get("tran_ser");
......
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