Commit e56e28ac authored by smanohar's avatar smanohar

Bug fix curr_code taken from header in case of hold tax insead of detail map

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@212748 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7977e1f0
...@@ -2926,7 +2926,7 @@ public class VoucherConf extends ActionHandlerEJB //implements ReceiptAdvConfLoc ...@@ -2926,7 +2926,7 @@ public class VoucherConf extends ActionHandlerEJB //implements ReceiptAdvConfLoc
sundryBalMap.put("sundry_code", (String) VchHdrMap.get("supp_code")); sundryBalMap.put("sundry_code", (String) VchHdrMap.get("supp_code"));
sundryBalMap.put("acct_code", (String) VchHdrMap.get("acct_code")); sundryBalMap.put("acct_code", (String) VchHdrMap.get("acct_code"));
sundryBalMap.put("cctr_code", (String) VchHdrMap.get("cctr_code")); sundryBalMap.put("cctr_code", (String) VchHdrMap.get("cctr_code"));
sundryBalMap.put("curr_code", (String) detListMap.get("curr_code")); sundryBalMap.put("curr_code", (String) VchHdrMap.get("curr_code"));
sundryBalMap.put("exch_rate", (double) Double.parseDouble( "" + VchHdrMap.get("exch_rate"))); sundryBalMap.put("exch_rate", (double) Double.parseDouble( "" + VchHdrMap.get("exch_rate")));
if (holdTax > 0 ) if (holdTax > 0 )
{ {
......
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