Commit 9d1013f3 authored by mjadhav's avatar mjadhav

added 2 char space for blank value


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98317 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e4421ebe
......@@ -1694,13 +1694,18 @@ public class GenInvoiceSchedule implements Schedule {
System.out.println("purchaseOrd :"+purchaseOrd);
System.out.println("despId :"+despId);
System.out.println("custCodeBillReg5 before :"+custCodeBillReg5);
System.out.println("custCodeUdfStr :"+custCodeUdfStr);
Element invoiceLine = doc.createElement("InvoiceLine");
if(custCodeUdfStr.equalsIgnoreCase("SIGLO"))
{
invoiceLine.appendChild(getElementValue(doc, invoiceParent, "IssuerTransactionReference"," "));
invoiceLine.appendChild(getElementValue(doc, invoiceParent, "IssuerTransactionReference"," "));
}
if(custCodeBillReg5 != null && custCodeBillReg5.equals(""))
{
custCodeBillReg5 = " ";
}
System.out.println("custCodeBillReg5 :"+custCodeBillReg5);
invoiceLine.appendChild(getElementValue(doc, invoiceParent, "ReceiverContractReference",custCodeBillReg5));
invoiceLine.appendChild(getElementValue(doc, invoiceParent, "ReceiverTransactionReference",purchaseOrd));
Element deliveryNotesReferences = doc.createElement("DeliveryNotesReferences");
......
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