| Line 295... |
Line 295... |
| 295 |
if(o.isCod()) {
|
295 |
if(o.isCod()) {
|
| 296 |
row.createCell(i++).setCellValue("COD");
|
296 |
row.createCell(i++).setCellValue("COD");
|
| 297 |
} else {
|
297 |
} else {
|
| 298 |
row.createCell(i++).setCellValue("PREPAID");
|
298 |
row.createCell(i++).setCellValue("PREPAID");
|
| 299 |
}
|
299 |
}
|
| 300 |
row.createCell(i++).setCellValue(o.getStatus().getValue());
|
300 |
row.createCell(i++).setCellValue(o.getStatus().getDescription());
|
| 301 |
row.createCell(i++).setCellValue(o.getCustomer_id());
|
301 |
row.createCell(i++).setCellValue(o.getCustomer_id());
|
| 302 |
row.createCell(i++).setCellValue(o.getCustomer_name());
|
302 |
row.createCell(i++).setCellValue(o.getCustomer_name());
|
| 303 |
row.createCell(i++).setCellValue(o.getCustomer_city());
|
303 |
row.createCell(i++).setCellValue(o.getCustomer_city());
|
| 304 |
row.createCell(i++).setCellValue(o.getLineitems().get(0).getItem_id());
|
304 |
row.createCell(i++).setCellValue(o.getLineitems().get(0).getItem_id());
|
| 305 |
row.createCell(i++).setCellValue((o.getLineitems().get(0).getBrand() + " " + getValidName(o.getLineitems().get(0).getModel_name()) +" " + getValidName(o.getLineitems().get(0).getModel_number()).replaceAll(" ", " ")));
|
305 |
row.createCell(i++).setCellValue((o.getLineitems().get(0).getBrand() + " " + getValidName(o.getLineitems().get(0).getModel_name()) +" " + getValidName(o.getLineitems().get(0).getModel_number()).replaceAll(" ", " ")));
|