Commit a84f6f3e authored by mjadhav's avatar mjadhav

taxable total amount tag set in header


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97081 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 05630f26
...@@ -1088,7 +1088,7 @@ public class GenInvoiceSchedule implements Schedule { ...@@ -1088,7 +1088,7 @@ public class GenInvoiceSchedule implements Schedule {
taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxTypeCode","01" )); taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxTypeCode","01" ));
taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxRate","0.00" )); taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxRate","0.00" ));
Element TaxableBaseHD = doc.createElement("TaxableBase"); Element TaxableBaseHD = doc.createElement("TaxableBase");
TaxableBaseHD.appendChild(getElementValue(doc, invoiceParent, "TaxAmount","0.00")); TaxableBaseHD.appendChild(getElementValue(doc, invoiceParent, "TotalAmount","0.00"));
taxHeld.appendChild(TaxableBaseHD); taxHeld.appendChild(TaxableBaseHD);
//taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxableBase", "0.00" )); //taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxableBase", "0.00" ));
taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxAmount","0.00")); taxHeld.appendChild(getElementValue(doc, invoiceParent, "TaxAmount","0.00"));
......
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