Subversion Repositories SmartDukaan

Rev

Rev 701 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 701 Rev 2309
Line 45... Line 45...
45
    t_pgateway.id = pg.id
45
    t_pgateway.id = pg.id
46
    t_pgateway.name = pg.name
46
    t_pgateway.name = pg.name
47
    t_pgateway.url = pg.url
47
    t_pgateway.url = pg.url
48
    t_pgateway.responseUrl = pg.responseUrl
48
    t_pgateway.responseUrl = pg.responseUrl
49
    t_pgateway.errorUrl = pg.errorUrl
49
    t_pgateway.errorUrl = pg.errorUrl
50
    t_pgateway.status = PaymentGatewayStatus._VALUES_TO_NAMES(pg.status)
50
    t_pgateway.status = pg.status
51
    t_pgateway.aliasName = pg.aliasName
51
    t_pgateway.aliasName = pg.aliasName
52
    t_pgateway.addedOn = to_java_date(pg.addedOn)
52
    t_pgateway.addedOn = to_java_date(pg.addedOn)
53
    t_pgateway.attributes = [Attribute(name=attr.name, value=attr.value) for attr in pg.attributes]
53
    t_pgateway.attributes = [Attribute(name=attr.name, value=attr.value) for attr in pg.attributes]
54
    return t_pgateway
54
    return t_pgateway
55
55