Browse Source

更新

master
huangjiajun 8 months ago
parent
commit
2344c64c61
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      svc/reward_commission.go

+ 4
- 4
svc/reward_commission.go View File

@@ -108,8 +108,8 @@ func GetRewardCommission(engine *xorm.Engine, rmd *md.CommissionParam, isShare b
Pvd: newProvider,
Uid: zhios_order_relate_utils.IntToStr(uid),
UserLevel: zhios_order_relate_utils.IntToStr(level),
PendingAmount: zhios_order_relate_utils.Float64ToStr(fee),
PendingIntegral: zhios_order_relate_utils.Float64ToStr(integralFee),
PendingAmount: zhios_order_relate_utils.Float64ToStrByPrec(fee, 9),
PendingIntegral: zhios_order_relate_utils.Float64ToStrByPrec(integralFee, 9),
Oid: rmd.Oid,
},
}
@@ -133,8 +133,8 @@ func GetRewardCommission(engine *xorm.Engine, rmd *md.CommissionParam, isShare b
Pvd: newProvider,
Uid: zhios_order_relate_utils.IntToStr(uid),
UserLevel: zhios_order_relate_utils.IntToStr(level),
PendingAmount: zhios_order_relate_utils.Float64ToStr(fee),
PendingIntegral: zhios_order_relate_utils.Float64ToStr(integralFee),
PendingAmount: zhios_order_relate_utils.Float64ToStrByPrec(fee, 9),
PendingIntegral: zhios_order_relate_utils.Float64ToStrByPrec(integralFee, 9),
Oid: rmd.Oid,
},
}


Loading…
Cancel
Save