Explorar el Código

更新

tags/v4.3.1
huangjiajun hace 1 año
padre
commit
275fe4e1e1
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. +4
    -1
      rule/regional_sub_agent.go

+ 4
- 1
rule/regional_sub_agent.go Ver fichero

@@ -188,9 +188,12 @@ func makeSubSystemData(engine *xorm.Engine, args *md.RegionalAgentSystemArgs, re
"key": "id",
"value": value,
})
if regionalAgentRegionData == nil {
return nil, amount, 0, nil
}
//查询代理地区用户
agentUser, err := db.RegionalSubAgentUserFindByValid(engine, value)
if err != nil {
if err != nil || agentUser == nil {
return nil, amount, 0, err
}
var divideAmount float64 = 0


Cargando…
Cancelar
Guardar