Subversion Repositories SmartDukaan

Rev

Rev 642 | Rev 685 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 642 Rev 669
Line 39... Line 39...
39
    t_order.customer_id = order.customer_id
39
    t_order.customer_id = order.customer_id
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_city = order.customer_city
-
 
45
    t_order.customer_state = order.customer_state
44
    t_order.customer_email = order.customer_email    
46
    t_order.customer_email = order.customer_email    
45
    t_order.status = OrderStatus.get_t_status(order.status) 
47
    t_order.status = OrderStatus.get_t_status(order.status) 
46
    t_order.statusDescription = order.statusDescription
48
    t_order.statusDescription = order.statusDescription
47
    t_order.total_amount = order.total_amount
49
    t_order.total_amount = order.total_amount
48
    t_order.total_weight = order.total_weight
50
    t_order.total_weight = order.total_weight
Line 67... Line 69...
67
    t_lineitem.sku_id = lineitem.sku_id
69
    t_lineitem.sku_id = lineitem.sku_id
68
    t_lineitem.unit_weight = lineitem.unit_weight
70
    t_lineitem.unit_weight = lineitem.unit_weight
69
    t_lineitem.unit_price = lineitem.unit_price
71
    t_lineitem.unit_price = lineitem.unit_price
70
    t_lineitem.total_price = lineitem.total_price
72
    t_lineitem.total_price = lineitem.total_price
71
    t_lineitem.total_weight = lineitem.total_weight 
73
    t_lineitem.total_weight = lineitem.total_weight 
72
    t_lineitem.quantity = lineitem.quantity  
74
    t_lineitem.quantity = lineitem.quantity
-
 
75
    t_lineitem.color = lineitem.color
73
    t_lineitem.model_number = lineitem.model_number
76
    t_lineitem.model_number = lineitem.model_number
74
    t_lineitem.model_name = lineitem.model_name 
77
    t_lineitem.model_name = lineitem.model_name 
75
    t_lineitem.extra_info = lineitem.extra_info
78
    t_lineitem.extra_info = lineitem.extra_info
76
    t_lineitem.brand = lineitem.brand
79
    t_lineitem.brand = lineitem.brand
77
    return t_lineitem
80
    return t_lineitem