Commit d40c3164 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@42707 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 14ca485c
...@@ -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