Commit ba5f1a84 authored by asant's avatar asant

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@198311 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bdde4901
...@@ -739,6 +739,18 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal ...@@ -739,6 +739,18 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal
break; break;
} }
} }
else if(childNodeName.equalsIgnoreCase("item_ser"))
{
String itemSeries = E12GenericUtility.checkNull(genericUtility.getColumnValue("item_ser", dom));
System.out.println("##### itemSeries "+itemSeries);
if( itemSeries.length() == 0)
{
errCode = "VMINVITMSR";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
break;
}
}
} }
} }
......
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