Subversion Repositories SmartDukaan

Rev

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

Rev 7139 Rev 7169
Line 210... Line 210...
210
        t_recharge.storeId = rechargeTransaction.storeId
210
        t_recharge.storeId = rechargeTransaction.storeId
211
        t_recharge.alternateNum = rechargeTransaction.alternateNumber
211
        t_recharge.alternateNum = rechargeTransaction.alternateNumber
212
        t_recharge.transactionTime = to_java_date(rechargeTransaction.transactionTime)
212
        t_recharge.transactionTime = to_java_date(rechargeTransaction.transactionTime)
213
        t_recharge.description = rechargeTransaction.description
213
        t_recharge.description = rechargeTransaction.description
214
        t_recharge.payMethod = rechargeTransaction.payMethod
214
        t_recharge.payMethod = rechargeTransaction.payMethod
-
 
215
        t_recharge.paymentAmount = rechargeTransaction.paymentAmount
215
    return t_recharge
216
    return t_recharge
216
 
217
 
217
def to_t_frc(frc):
218
def to_t_frc(frc):
218
    t_frc = T_FRC()
219
    t_frc = T_FRC()
219
    if frc:
220
    if frc:
Line 237... Line 238...
237
        t_hotspot.creditLimit = hotspot.creditLimit
238
        t_hotspot.creditLimit = hotspot.creditLimit
238
        t_hotspot.salt = hotspot.salt
239
        t_hotspot.salt = hotspot.salt
239
        t_hotspot.password = hotspot.password
240
        t_hotspot.password = hotspot.password
240
        t_hotspot.isActive = hotspot.isActive
241
        t_hotspot.isActive = hotspot.isActive
241
        t_hotspot.circleId = hotspot.circleId
242
        t_hotspot.circleId = hotspot.circleId
-
 
243
        t_hotspot.email = hotspot.email
242
    return t_hotspot
244
    return t_hotspot
243
245