Commit 2d038d0d authored by mmhatre's avatar mmhatre

added condition for allow less than or equal to decimal places

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@214702 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 748db34f
...@@ -11085,7 +11085,7 @@ public class DistCommon { ...@@ -11085,7 +11085,7 @@ public class DistCommon {
{ {
if(decPlaces > 0) if(decPlaces > 0)
{ {
if (decimalLength != decPlaces) if (decimalLength > decPlaces)
{ {
errCode="VTUOMDEC3"; errCode="VTUOMDEC3";
} }
......
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