Commit 71d8d9dd authored by cmahajan's avatar cmahajan

Update code for sales person name on title.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@102948 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 62ad6729
...@@ -763,7 +763,7 @@ public class ComplianceDB2 extends ValidatorEJB implements ComplianceDB2Local, C ...@@ -763,7 +763,7 @@ public class ComplianceDB2 extends ValidatorEJB implements ComplianceDB2Local, C
if(rs.next()) if(rs.next())
{ {
dcrId = rs.getString("DCR_ID") == null ? "" : rs.getString("DCR_ID") ; dcrId = rs.getString("DCR_ID") == null ? "" : rs.getString("DCR_ID") ;
spFullName = (rs.getString("EMP_FNAME") == null ? "" : rs.getString("EMP_FNAME")) + " " + (rs.getString("EMP_MNAME") == null ? "" : rs.getString("EMP_MNAME")) + " " + (rs.getString("EMP_MNAME") == null ? "" : rs.getString("EMP_MNAME")) ; spFullName = (rs.getString("EMP_FNAME") == null ? "" : rs.getString("EMP_FNAME")) + " " + (rs.getString("EMP_LNAME") == null ? "" : rs.getString("EMP_LNAME")) ) ;
lastDCRDate = this.getSalesPersLastDCRDate(conn, salesPersCode, dcrId); lastDCRDate = this.getSalesPersLastDCRDate(conn, salesPersCode, dcrId);
......
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