| Line 407... |
Line 407... |
| 407 |
}
|
407 |
}
|
| 408 |
|
408 |
|
| 409 |
document.add(new DottedLineSeparator());
|
409 |
document.add(new DottedLineSeparator());
|
| 410 |
document.add(orderItemsDetailTable);
|
410 |
document.add(orderItemsDetailTable);
|
| 411 |
}
|
411 |
}
|
| 412 |
PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, false);
|
412 |
PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, true);
|
| 413 |
if(billingAddress!=null){
|
413 |
if(billingAddress!=null){
|
| 414 |
billingAddressTable.setWidthPercentage(90.0f);
|
414 |
billingAddressTable.setWidthPercentage(90.0f);
|
| 415 |
billingAddressTable.setSpacingBefore(5.0f);
|
415 |
billingAddressTable.setSpacingBefore(5.0f);
|
| 416 |
billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
|
416 |
billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
|
| 417 |
billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
|
417 |
billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
|
| Line 595... |
Line 595... |
| 595 |
}
|
595 |
}
|
| 596 |
|
596 |
|
| 597 |
document.add(new DottedLineSeparator());
|
597 |
document.add(new DottedLineSeparator());
|
| 598 |
document.add(orderItemsDetailTable);
|
598 |
document.add(orderItemsDetailTable);
|
| 599 |
}
|
599 |
}
|
| 600 |
PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, false);
|
600 |
PdfPTable billingAddressTable = getCustomerAddressTable(order, null, true, helvetica8, true, true);
|
| 601 |
if(billingAddress!=null){
|
601 |
if(billingAddress!=null){
|
| 602 |
billingAddressTable.setWidthPercentage(90.0f);
|
602 |
billingAddressTable.setWidthPercentage(90.0f);
|
| 603 |
billingAddressTable.setSpacingBefore(5.0f);
|
603 |
billingAddressTable.setSpacingBefore(5.0f);
|
| 604 |
billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
|
604 |
billingAddressTable.addCell(new Phrase("Billing Address :", helveticaBold8));
|
| 605 |
billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
|
605 |
billingAddressTable.addCell(new Phrase(billingAddress.getName() +" "+billingAddress.getLine1()
|