Commit f8389028 authored by msharma's avatar msharma

Added Finance charges in Header total amount


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94025 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cd8457a7
......@@ -639,7 +639,8 @@ public class ReceiptAdvConf extends ActionHandlerEJB implements ReceiptAdvConfLo
//total = total + (Double)RcpDetMap.get("rcp_amt");
total = total + ( (double) Double.parseDouble( "" + RcpDetMap.get("rcp_amt")) * (double) Double.parseDouble( "" + RcpDetMap.get("exch_rate")) / (double) Double.parseDouble( "" + RcpHdrMap.get("exch_rate")) );
finTotal = finTotal + (double) Double.parseDouble( "" + RcpDetMap.get("fin_chg"));
//finTotal = finTotal + (double) Double.parseDouble( "" + RcpDetMap.get("fin_chg"));
tFin = tFin + (double) Double.parseDouble( "" + RcpDetMap.get("fin_chg"));
//System.out.println("LINE NO 541"+total);
......
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