回调判断

This commit is contained in:
Rzy 2024-08-08 17:00:22 +08:00
parent 0755b14aa2
commit 9b7f904108
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ func (o *OrderNotify) checkOrder() {
cond := builder.NewCond()
cond = cond.And(builder.Eq{"id": o.OrderId})
o.order, o.Code = services.OrderFindOne(&ordersmodel.Orders{}, cond)
if o.Code != errorcode.Success {
if o.Code != errorcode.OrdersExist {
return
}