修改错误提示

This commit is contained in:
qiyunfanbo126.com 2024-07-17 14:42:32 +08:00
parent 42eb05c210
commit d43949a246
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ func CreateOrderService(userId int, productId int) (code int, data front.InsertO
var product productsmodel.Products
has, err := productsmodel.GetInstance().GetDb().Where("id = ? and status = 1", productId).Get(&product)
if !has {
return errorcode.SystemError, data
return errorcode.ProdcutDiscard, data
}
if err != nil {
return errorcode.SystemError, data