Commit 2c1db2cd authored by manohar's avatar manohar

eff_date validation always done the condition for status = B commented as per instruction from KB


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94076 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 521b6272
...@@ -315,8 +315,8 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment ...@@ -315,8 +315,8 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment
else if ( childNodeName.equalsIgnoreCase("eff_date") ) else if ( childNodeName.equalsIgnoreCase("eff_date") )
{ {
columnValue1 = genericUtility.getColumnValue("status", dom); columnValue1 = genericUtility.getColumnValue("status", dom);
if(columnValue1.equals("B")) //if(columnValue1.equals("B")) // 31/12/13 manoharan - commented this condition as per instruction from KB (UAT issue tracker)
{ //{
if(genericUtility.getColumnValue("eff_date", dom) != null) if(genericUtility.getColumnValue("eff_date", dom) != null)
{ {
...@@ -341,7 +341,7 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment ...@@ -341,7 +341,7 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment
errList.add( "VTEFF01" ); errList.add( "VTEFF01" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
} //}
} }
else if ( childNodeName.equalsIgnoreCase("rd_permit_no") ) else if ( childNodeName.equalsIgnoreCase("rd_permit_no") )
......
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