Commit 26ed2318 authored by msaggam's avatar msaggam

discount amount is not getting calculated

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@204101 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 58a08188
......@@ -1087,7 +1087,8 @@ public class CreatePoRcpVoucher
}
rcpAmount = (rcpQtyStd * rcpRateStd * rcpDiscount)/100;
System.out.println("rcpAmount+++++"+rcpAmount +" rcpQtyStd+++"+rcpQtyStd+" rcpRateStd+++"+rcpRateStd+" rcpDiscount++++"+rcpDiscount);
rcpDiscAmt = (rcpQtyStd * rcpRateStd * rcpDiscount)/100; // added by Mahesh Saggam on 25 jul 2019 discount amount is not getting calculated
System.out.println("rcpAmount+++++"+rcpAmount +" rcpQtyStd+++"+rcpQtyStd+" rcpRateStd+++"+rcpRateStd+" rcpDiscount++++"+rcpDiscount+" rcpDiscAmt++++"+rcpDiscAmt);
rcpAmount = ((rcpQtyStd * rcpRateStd) - rcpDiscAmt);
System.out.println("rcpAmount**********"+rcpAmount);
......
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