huangjiajun 3 个月前
父节点
当前提交
0e00aea525
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. +3
    -0
      svc/reward_commission.go

+ 3
- 0
svc/reward_commission.go 查看文件

@@ -776,6 +776,9 @@ func getCommission(d *md.CommissionParam, provider string) (string, string) {
return zhios_order_relate_utils.Float64ToStr(com), currentPrice
default:
if zhios_order_relate_utils.StrToFloat64(d.GoodsPrice) == 0 {
if zhios_order_relate_utils.StrToFloat64(d.PaidPrice) > 0 {
return d.Commission, d.PaidPrice
}
//如果价格没有直接返回佣金
return d.Commission, d.Commission
}


正在加载...
取消
保存