Commit f1f03c3a authored by dsawant's avatar dsawant

commited for setting discount %


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96440 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b56e3a84
......@@ -1624,12 +1624,13 @@ public class DistIssWiz extends ValidatorEJB implements DistIssWizLocal, DistIss
if("Y".equalsIgnoreCase(avalyn))
{
setQty = squantity - allQty;
setQty = squantity - (allQty + holdQty);
}
else
{
setQty = squantity - (allQty + holdQty);
setQty = squantity - allQty;
}
valueXmlString.append("<quantity protect=\"0\">").append("<![CDATA[" + setQty + "]]>").append("</quantity>");
......
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