Commit 5aeb36ca authored by kshinde's avatar kshinde

bug fix grp code validation in pricelist wizard

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@180013 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 84e78af3
...@@ -673,9 +673,12 @@ public class PricelistGenWizEJB extends ValidatorEJB implements PricelistGenWizE ...@@ -673,9 +673,12 @@ public class PricelistGenWizEJB extends ValidatorEJB implements PricelistGenWizE
errFields.add( childNodeName.toLowerCase() ); errFields.add( childNodeName.toLowerCase() );
} }
}
if(childNodeName.equalsIgnoreCase("grp_code")) if(childNodeName.equalsIgnoreCase("grp_code"))
{ {
grpCode=e12genericUtility.getColumnValue("grp_code", currFormDataDom); grpCode=e12genericUtility.getColumnValue("grp_code", currFormDataDom);
productCode=e12genericUtility.getColumnValue("product_code", currFormDataDom);
if(grpCode!=null || grpCode.trim().length()>0 ) if(grpCode!=null || grpCode.trim().length()>0 )
{ {
...@@ -704,7 +707,6 @@ public class PricelistGenWizEJB extends ValidatorEJB implements PricelistGenWizE ...@@ -704,7 +707,6 @@ public class PricelistGenWizEJB extends ValidatorEJB implements PricelistGenWizE
} }
} }
}
System.out.println("errString["+errString+"]"); System.out.println("errString["+errString+"]");
......
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