Commit 28d16aa7 authored by pgole's avatar pgole

Updated ejb component for debit note generation if net_amt< 0


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104347 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 211738fc
......@@ -1473,7 +1473,7 @@ public class ChrgBckLocConf extends ActionHandlerEJB implements ChrgBckLocConfLo
//pstmtDtl.setDouble( 5, drcrAmt );
//pstmtDtl.setDouble( 6, drcrAmt );
//CHANGED BY POONAM
if(claimAmt < netAmt)
if(claimAmt > 0 && claimAmt < netAmt)
{
xmlBuffDet.append("<amount><![CDATA["+ drcrAmt +"]]></amount>");
xmlBuffDet.append("<net_amt><![CDATA["+ drcrAmt +"]]></net_amt>");
......
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