Commit 1ceb3536 authored by sanashaikh's avatar sanashaikh

Sana S: Modified on 24/12/19

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213995 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 42367e86
......@@ -547,15 +547,15 @@ public class HolChangeIC extends ValidatorEJB implements HolChangeICRemote, HolC
System.out.println("line --509");
empCode =checkNull(genericUtility.getColumnValue("emp_code", dom));
holDateFor = checkNull(genericUtility.getColumnValue("hol_date_for", dom));
//dateFor = Timestamp.valueOf(genericUtility.getValidDateString(holDateFor, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");////Modified by Sana S on 19/11/19
dateFor = Timestamp.valueOf(genericUtility.getValidDateString(holDateFor, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");////Modified by Sana S on 19/11/19
System.out.println("holDateFor::::"+holDateFor);
sql = "select fn_get_holtblno(?,?) as ls_hol from dual";
pstmt = connectionObject.prepareStatement(sql);
pstmt.setString(1, empCode);
//pstmt.setTimestamp(2, dateFor);
pstmt.setString(2, holDateFor);//Modified by Sana S on 19/11/19
pstmt.setTimestamp(2, dateFor);
resultSet = pstmt.executeQuery();
if(resultSet.next())
......
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