| Line 40... |
Line 40... |
| 40 |
t_order.customer_name = order.customer_name
|
40 |
t_order.customer_name = order.customer_name
|
| 41 |
t_order.customer_mobilenumber = order.customer_mobilenumber
|
41 |
t_order.customer_mobilenumber = order.customer_mobilenumber
|
| 42 |
t_order.customer_pincode = order.customer_pincode
|
42 |
t_order.customer_pincode = order.customer_pincode
|
| 43 |
t_order.customer_address = order.customer_address
|
43 |
t_order.customer_address = order.customer_address
|
| 44 |
t_order.customer_email = order.customer_email
|
44 |
t_order.customer_email = order.customer_email
|
| 45 |
t_order.status = order.status
|
45 |
t_order.status = OrderStatus.get_t_status(order.status)
|
| 46 |
t_order.statusDescription = order.statusDescription
|
46 |
t_order.statusDescription = order.statusDescription
|
| 47 |
t_order.total_amount = order.total_amount
|
47 |
t_order.total_amount = order.total_amount
|
| 48 |
t_order.total_weight = order.total_weight
|
48 |
t_order.total_weight = order.total_weight
|
| 49 |
t_order.created_timestamp = to_java_date(order.created_timestamp)
|
49 |
t_order.created_timestamp = to_java_date(order.created_timestamp)
|
| 50 |
t_order.invoice_number = order.invoice_number
|
50 |
t_order.invoice_number = order.invoice_number
|