Commit 4b51daa7 authored by pshinde's avatar pshinde

Source Code OF BANK GAURANTEE AMENDMENT Itemchange and validation


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98543 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 14f58ea8
......@@ -468,10 +468,11 @@ String siteCodlogin="";
currDt = java.sql.Timestamp.valueOf(sdf.format(currentDate).toString() + " 00:00:00.0");
if(currDt!=null && effdt!=null)
{
if(currDt.before(effdt))
//if(currDt.before(effdt))
if(effdt.before(currDt))
{
System.out.println("eff date > Current Date : "+effdt+" > "+currDt);
errCode = "VTSUBDT1L";//Submission Date should be less than today Date
errCode = "VTSUBDT1";//Submission Date should be less than today Date
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
......@@ -759,7 +760,7 @@ String siteCodlogin="";
tranIdLc = genericUtility.getColumnValue("tran_id__lc", dom);
System.out.println("tranIdLc========"+tranIdLc);
//sql = "SELECT purc_order,curr_code,exch_rate,bank_address,due_date,eff_date,lc_amt,no_days,tran_type FROM lc_voucher WHERE tran_id=?";
String blankDt="";
if(tranIdLc!=null && tranIdLc.trim().length()>0)
{
......
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