Subversion Repositories SmartDukaan

Rev

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

Rev 1220 Rev 1976
Line 42... Line 42...
42
    t_order.customer_state = order.customer_state
42
    t_order.customer_state = order.customer_state
43
    t_order.customer_email = order.customer_email    
43
    t_order.customer_email = order.customer_email    
44
    t_order.status = order.status 
44
    t_order.status = order.status 
45
    t_order.statusDescription = order.statusDescription
45
    t_order.statusDescription = order.statusDescription
46
    t_order.total_amount = order.total_amount
46
    t_order.total_amount = order.total_amount
-
 
47
    t_order.discounted_amount = order.discounted_amount
47
    t_order.total_weight = order.total_weight
48
    t_order.total_weight = order.total_weight
48
    t_order.created_timestamp = to_java_date(order.created_timestamp)
49
    t_order.created_timestamp = to_java_date(order.created_timestamp)
49
    t_order.invoice_number = order.invoice_number
50
    t_order.invoice_number = order.invoice_number
50
    t_order.billed_by = order.billed_by
51
    t_order.billed_by = order.billed_by
51
    t_order.accepted_timestamp = to_java_date(order.accepted_timestamp)
52
    t_order.accepted_timestamp = to_java_date(order.accepted_timestamp)
Line 75... Line 76...
75
    t_lineitem.model_name = lineitem.model_name
76
    t_lineitem.model_name = lineitem.model_name
76
    t_lineitem.extra_info = lineitem.extra_info
77
    t_lineitem.extra_info = lineitem.extra_info
77
    t_lineitem.unit_weight = lineitem.unit_weight
78
    t_lineitem.unit_weight = lineitem.unit_weight
78
    t_lineitem.unit_price = lineitem.unit_price
79
    t_lineitem.unit_price = lineitem.unit_price
79
    t_lineitem.total_price = lineitem.total_price
80
    t_lineitem.total_price = lineitem.total_price
-
 
81
    t_lineitem.discounted_price = lineitem.discounted_price
80
    t_lineitem.transfer_price = lineitem.transfer_price
82
    t_lineitem.transfer_price = lineitem.transfer_price
81
    t_lineitem.total_weight = lineitem.total_weight 
83
    t_lineitem.total_weight = lineitem.total_weight 
82
    t_lineitem.quantity = lineitem.quantity
84
    t_lineitem.quantity = lineitem.quantity
83
    return t_lineitem
85
    return t_lineitem
84
 
86