Commit 5f66bf61 authored by kshinde's avatar kshinde

Corrected accounting effect

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@186334 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6d0e8472
......@@ -521,7 +521,7 @@ public String confirm(String tranId,String xtraParams,String forcedFlag) throws
glTraceUpd.put("curr_code", currCodeDet);
glTraceUpd.put("exch_rate", exchRateDet);
glTraceUpd.put("dr_amt", amountPaid);
glTraceUpd.put("cr_amt", 0);
glTraceUpd.put("cr_amt", 0.0);
glTraceUpd.put( "ref_ser","LN-VCH");
//glTraceUpd.put("ref_type", "D");
glTraceUpd.put( "ref_id",tranId);
......@@ -542,8 +542,8 @@ public String confirm(String tranId,String xtraParams,String forcedFlag) throws
sundryBalUpd.put("cctr_code", cctrCodeDet);
sundryBalUpd.put("curr_code", currCodeDet);
sundryBalUpd.put("exch_rate", exchRateDet);
sundryBalUpd.put("dr_amt", 0.0);
sundryBalUpd.put("cr_amt", amountPaid);
sundryBalUpd.put("dr_amt", amountPaid);
sundryBalUpd.put("cr_amt", 0.0);
sundryBalUpd.put("adv_amt", 0.0);
errString=Fcommon.gbf_sundrybal_upd(sundryBalUpd, conn);
......@@ -592,8 +592,8 @@ public String confirm(String tranId,String xtraParams,String forcedFlag) throws
glTraceUpd.put("cctr_code", cctrCodePay);
glTraceUpd.put("curr_code", currCode);
glTraceUpd.put("exch_rate", exchRate);
glTraceUpd.put("dr_amt", amountPaid);
glTraceUpd.put("cr_amt", 0.0);
glTraceUpd.put("dr_amt", 0.0);
glTraceUpd.put("cr_amt", amountPaid);
//glTraceUpd.put("ref_type", "D");
glTraceUpd.put( "ref_id",tranId);
glTraceUpd.put( "ref_ser","LN-VCH");
......
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