Commit a31c4680 authored by ssalve's avatar ssalve

Sarita : Done changes to set issuelocation and requesterlocation on 23/12/2019

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213914 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a43078ec
......@@ -124,8 +124,14 @@ public class DistIssueSync extends ActionHandlerEJB implements DistIssueSyncLoca
{
isConfirmed = checkNull(rs.getString("confirmed"));
syncStatus = checkNull(rs.getString("sync_status"));
//Commented and added by sarita because data of requesterLocation & issueLocation is setting wrong[START]
/*Om Mail Dtd : 23/12/19 IssueLocation should be set as loc_group__from instead of loc_group__to.
Issue location is location from where stock is transferred to other location.
requesterLocation = checkNull(rs.getString("loc_group__from"));
issueLocation = checkNull(rs.getString("loc_group__to"));
issueLocation = checkNull(rs.getString("loc_group__to"));*/
issueLocation = checkNull(rs.getString("loc_group__from"));
requesterLocation = checkNull(rs.getString("loc_group__to"));
//Commented and added by sarita because data of requesterLocation & issueLocation is setting wrong[END]
System.out.println("isConfirmed ["+isConfirmed+"]\t syncStatus ["+syncStatus+"] \t locGroupFrom ["+requesterLocation+"] \t locGroupTo ["+issueLocation+"]");
}
if(rs != 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