| Line 276... |
Line 276... |
| 276 |
contentRow.createCell(1).setCellValue(transactionDate);
|
276 |
contentRow.createCell(1).setCellValue(transactionDate);
|
| 277 |
contentRow.getCell(1).setCellStyle(dateCellStyle);
|
277 |
contentRow.getCell(1).setCellStyle(dateCellStyle);
|
| 278 |
contentRow.createCell(2).setCellValue(transactionStatus);
|
278 |
contentRow.createCell(2).setCellValue(transactionStatus);
|
| 279 |
contentRow.createCell(3).setCellValue(order.getId());
|
279 |
contentRow.createCell(3).setCellValue(order.getId());
|
| 280 |
contentRow.createCell(4).setCellValue(order.getInvoice_number());
|
280 |
contentRow.createCell(4).setCellValue(order.getInvoice_number());
|
| 281 |
contentRow.createCell(5).setCellValue(order.getBilling_timestamp());
|
281 |
contentRow.createCell(5).setCellValue(new Date(order.getBilling_timestamp()));
|
| 282 |
contentRow.getCell(5).setCellStyle(dateCellStyle);
|
282 |
contentRow.getCell(5).setCellStyle(dateCellStyle);
|
| 283 |
contentRow.createCell(6).setCellValue(order.getStatusDescription());
|
283 |
contentRow.createCell(6).setCellValue(order.getStatusDescription());
|
| 284 |
|
284 |
|
| 285 |
contentRow.createCell(7).setCellValue(getValueForEmptyString(lineItem.getBrand()));
|
285 |
contentRow.createCell(7).setCellValue(getValueForEmptyString(lineItem.getBrand()));
|
| 286 |
contentRow.createCell(8).setCellValue(getValueForEmptyString(lineItem.getModel_name()));
|
286 |
contentRow.createCell(8).setCellValue(getValueForEmptyString(lineItem.getModel_name()));
|
| Line 302... |
Line 302... |
| 302 |
|
302 |
|
| 303 |
contentRow.createCell(23).setCellValue(order.getAirwaybill_no());
|
303 |
contentRow.createCell(23).setCellValue(order.getAirwaybill_no());
|
| 304 |
contentRow.createCell(24).setCellValue(order.getBilled_by());
|
304 |
contentRow.createCell(24).setCellValue(order.getBilled_by());
|
| 305 |
contentRow.createCell(25).setCellValue(order.getReceiver());
|
305 |
contentRow.createCell(25).setCellValue(order.getReceiver());
|
| 306 |
contentRow.createCell(26).setCellValue(order.getTracking_id());
|
306 |
contentRow.createCell(26).setCellValue(order.getTracking_id());
|
| 307 |
contentRow.createCell(27).setCellValue(order.getAccepted_timestamp());
|
307 |
contentRow.createCell(27).setCellValue(new Date(order.getAccepted_timestamp()));
|
| 308 |
contentRow.getCell(27).setCellStyle(dateCellStyle);
|
308 |
contentRow.getCell(27).setCellStyle(dateCellStyle);
|
| 309 |
contentRow.createCell(28).setCellValue(order.getDelivery_timestamp());
|
309 |
contentRow.createCell(28).setCellValue(new Date(order.getDelivery_timestamp()));
|
| 310 |
contentRow.getCell(28).setCellStyle(dateCellStyle);
|
310 |
contentRow.getCell(28).setCellStyle(dateCellStyle);
|
| 311 |
contentRow.createCell(29).setCellValue(order.getExpected_delivery_time());
|
311 |
contentRow.createCell(29).setCellValue(new Date(order.getExpected_delivery_time()));
|
| 312 |
contentRow.getCell(29).setCellStyle(dateCellStyle);
|
312 |
contentRow.getCell(29).setCellStyle(dateCellStyle);
|
| 313 |
|
313 |
|
| 314 |
if (payment != null) {
|
314 |
if (payment != null) {
|
| 315 |
contentRow.createCell(30).setCellValue(payment.getPaymentId());
|
315 |
contentRow.createCell(30).setCellValue(payment.getPaymentId());
|
| 316 |
contentRow.createCell(31).setCellValue(payment.getStatus().name());
|
316 |
contentRow.createCell(31).setCellValue(payment.getStatus().name());
|
| Line 466... |
Line 466... |
| 466 |
userContentRow.createCell(0).setCellValue(userComm.getOrderId());
|
466 |
userContentRow.createCell(0).setCellValue(userComm.getOrderId());
|
| 467 |
if (userComm.getCommunicationType() != null) {
|
467 |
if (userComm.getCommunicationType() != null) {
|
| 468 |
userContentRow.createCell(1).setCellValue(userComm.getCommunicationType().name());
|
468 |
userContentRow.createCell(1).setCellValue(userComm.getCommunicationType().name());
|
| 469 |
}
|
469 |
}
|
| 470 |
userContentRow.createCell(2).setCellValue(userComm.getAirwaybillNo());
|
470 |
userContentRow.createCell(2).setCellValue(userComm.getAirwaybillNo());
|
| 471 |
userContentRow.createCell(3).setCellValue(userComm.getCommunication_timestamp());
|
471 |
userContentRow.createCell(3).setCellValue(new Date(userComm.getCommunication_timestamp()));
|
| 472 |
userContentRow.createCell(3).setCellStyle(dateCellStyle);
|
472 |
userContentRow.getCell(3).setCellStyle(dateCellStyle);
|
| 473 |
userContentRow.createCell(4).setCellValue(userComm.getProductName());
|
473 |
userContentRow.createCell(4).setCellValue(userComm.getProductName());
|
| 474 |
userContentRow.createCell(5).setCellValue(userComm.getReplyTo());
|
474 |
userContentRow.createCell(5).setCellValue(userComm.getReplyTo());
|
| 475 |
userContentRow.createCell(6).setCellValue(userComm.getSubject());
|
475 |
userContentRow.createCell(6).setCellValue(userComm.getSubject());
|
| 476 |
userContentRow.createCell(7).setCellValue(userComm.getMessage());
|
476 |
userContentRow.createCell(7).setCellValue(userComm.getMessage());
|
| 477 |
}
|
477 |
}
|