Commit 7f2c73b3 authored by agaikwad's avatar agaikwad

set Supp bill Amt in Misc Voucher through Process.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103692 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 864b4af3
...@@ -3160,6 +3160,7 @@ public class PayVoucherComPrc extends ProcessEJB implements PayVoucherComPrcLoca ...@@ -3160,6 +3160,7 @@ public class PayVoucherComPrc extends ProcessEJB implements PayVoucherComPrcLoca
Timestamp ldtrandt=null, ldeffdt=null, ldbilldt=null, ldchgdt=null, ldtaxdt=null,ld_duedate=null; Timestamp ldtrandt=null, ldeffdt=null, ldbilldt=null, ldchgdt=null, ldtaxdt=null,ld_duedate=null;
double lcadvamt=0, lcbillamt=0, lctotamt=0, lc_amthdr=0, lcamt=0, lctaxdet=0, lcnetamtbc=0, lcnetamt=0, lctottax=0, lcamount=0; double lcadvamt=0, lcbillamt=0, lctotamt=0, lc_amthdr=0, lcamt=0, lctaxdet=0, lcnetamtbc=0, lcnetamt=0, lctottax=0, lcamount=0;
double lcexchrate=0,lcamthdr=0; double lcexchrate=0,lcamthdr=0;
double suppBillAmt=0;
UtilMethods utlMtds = new UtilMethods(); UtilMethods utlMtds = new UtilMethods();
int licrdays=0,lldetrows=0, llcnt=0, lltaxrc=0, llcc=0, llrndto=0,updCnt=0; int licrdays=0,lldetrows=0, llcnt=0, lltaxrc=0, llcc=0, llrndto=0,updCnt=0;
String loginUser = GenericUtility.getInstance().getValueFromXTRA_PARAMS(xtraParams,"loginCode"); String loginUser = GenericUtility.getInstance().getValueFromXTRA_PARAMS(xtraParams,"loginCode");
...@@ -3452,6 +3453,8 @@ public class PayVoucherComPrc extends ProcessEJB implements PayVoucherComPrcLoca ...@@ -3452,6 +3453,8 @@ public class PayVoucherComPrc extends ProcessEJB implements PayVoucherComPrcLoca
xmlBuff.append("<net_amt><![CDATA[" + lcnetamt + "]]></net_amt>"); xmlBuff.append("<net_amt><![CDATA[" + lcnetamt + "]]></net_amt>");
xmlBuff.append("<bill_amt><![CDATA[" + lcbillamt + "]]></bill_amt>"); xmlBuff.append("<bill_amt><![CDATA[" + lcbillamt + "]]></bill_amt>");
xmlBuff.append("<tax_amt><![CDATA[" + lctottax + "]]></tax_amt>"); xmlBuff.append("<tax_amt><![CDATA[" + lctottax + "]]></tax_amt>");
System.out.println("supp_bill_amt["+suppBillAmt+"]");
xmlBuff.append("<supp_bill_amt><![CDATA[" + suppBillAmt + "]]></supp_bill_amt>");
xmlBuff.append("<tot_amt><![CDATA[" + lctotamt + "]]></tot_amt>"); xmlBuff.append("<tot_amt><![CDATA[" + lctotamt + "]]></tot_amt>");
xmlBuff.append("<tax_class><![CDATA[" + lstaxclass + "]]></tax_class>"); xmlBuff.append("<tax_class><![CDATA[" + lstaxclass + "]]></tax_class>");
xmlBuff.append("<tax_chap><![CDATA[" + lstaxchap + "]]></tax_chap>"); xmlBuff.append("<tax_chap><![CDATA[" + lstaxchap + "]]></tax_chap>");
......
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