Commit c23ed558 authored by prane's avatar prane

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@178468 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 14d727a2
......@@ -2017,11 +2017,16 @@ public class PostOrdInvoiceGen extends ActionHandlerEJB
{
invoiceDetBean=(InvoiceDetBean) invDetBeanMap.get(beanMapKey);
mTotDespQty=mTotDespQty+invoiceDetBean.getmTotDespQty();
mTotStdQty=mTotStdQty+invoiceDetBean.getmTotStdQty();
mNoArt=mNoArt+invoiceDetBean.getmNoArt();
mRealQty=mRealQty+invoiceDetBean.getmRealQty();
mTotDespQty=Double.parseDouble(quantity==null?"0.00":quantity)+invoiceDetBean.getmTotDespQty();
mTotStdQty=Double.parseDouble(desp_quantity__stduom==null?"0.00":desp_quantity__stduom)+invoiceDetBean.getmTotStdQty();
mNoArt=Integer.parseInt(no_art==null?"0":no_art)+invoiceDetBean.getmNoArt();
mRealQty=(Double.parseDouble(quantity_real==null?"0.00":quantity_real)+invoiceDetBean.getmRealQty());
invoiceDetBean.setmTotDespQty(mTotDespQty);//==null?"0.00":mTotDespQty);
invoiceDetBean.setmTotStdQty(mTotStdQty);
invoiceDetBean.setmNoArt(mNoArt);
invoiceDetBean.setmRealQty(mRealQty);
invDetBeanMap.put(beanMapKey, invoiceDetBean);
}
}// DESP_DET while loop END
......
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