Commit ab70052f authored by kshinde's avatar kshinde

updated ejb component to trim siteCode1(invoice site code) while comparing


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104486 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1ca65d9d
...@@ -225,7 +225,7 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment ...@@ -225,7 +225,7 @@ public class InvoiceAmendmentIC extends ValidatorEJB implements InvoiceAmendment
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
if(! siteCode.trim().equals(siteCode1)) if(! siteCode.trim().equals(siteCode1.trim()))
{ {
errList.add( "VTDIFFST" ); errList.add( "VTDIFFST" );
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
......
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