Commit 0fb0b6f7 authored by prane's avatar prane

bug fixed for VTPOINDT

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@188789 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3a932913
......@@ -1032,7 +1032,8 @@ public class POrderIC extends ValidatorEJB implements POrderICRemote,
errcode = "VTINDCL";
errList.add(errcode);
errFields.add(childNodeName.toLowerCase());
} else if (ordDateTm.after(indDate)) {
} //else if (ordDateTm.after(indDate)) {
else if (ordDateTm.before(indDate)) {
errcode = "VTPOINDT";
errList.add(errcode);
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