Subversion Repositories SmartDukaan

Rev

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

Rev 6571 Rev 6903
Line 85... Line 85...
85
        t_line.discountedPrice = line.discounted_price
85
        t_line.discountedPrice = line.discounted_price
86
        t_line.discounts = [to_t_discount(discount) for discount in line.discounts]
86
        t_line.discounts = [to_t_discount(discount) for discount in line.discounts]
87
        t_line.createdOn = to_java_date(line.created_on)
87
        t_line.createdOn = to_java_date(line.created_on)
88
        t_line.updatedOn = to_java_date(line.updated_on)
88
        t_line.updatedOn = to_java_date(line.updated_on)
89
        t_line.lineStatus = line.line_status
89
        t_line.lineStatus = line.line_status
90
        
90
        t_line.insurer = line.insurer
-
 
91
        t_line.insuranceAmount = line.insuranceAmount
91
    return t_line
92
    return t_line
92
 
93
 
93
def to_t_discount(discount):
94
def to_t_discount(discount):
94
    t_discount = TDiscount()
95
    t_discount = TDiscount()
95
    
96