Commit fe92bfd7 authored by msalla's avatar msalla

At Gimatex, in purchase voucher if advance is adjusted then on confirmation of...

At Gimatex, in purchase voucher if advance is adjusted then on confirmation of purchase voucher additional records of MRA account is inserting in sundrybal table.
though this MRA account is of other type of account and sundry type in account master

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217762 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5e5814c8
......@@ -3543,7 +3543,11 @@ public class VoucherConf extends ActionHandlerEJB //implements ReceiptAdvConfLoc
// if advance type and sundry_type <> O then do sundry posting
// shiri 06/04/04 changed from > 0 to <> 0
if (advAmt != 0 && !"O".equals((String)glTraceMap.get("sundry_code")))
// if (advAmt != 0 && !"O".equals((String)glTraceMap.get("sundry_code")))
//commented by monika salla on 12 march 2020-
/* if advance is adjusted then on confirmation of purchase voucher additional records of MRA account is inserting in sundrybal table.
though this MRA account is of other type of account and sundry type in account master*/
if(advAmt != 0 && !"O".equals((String)glTraceMap.get("sundry_type")))//end
{
sundryBalMap = null;
sundryBalMap = new HashMap();
......
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