From 80b5fcec179b2b32c71ac86610014b77c8b3d186 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Tue, 9 Jul 2024 10:07:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/admin/svc/order/svc_order_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/admin/svc/order/svc_order_list.go b/app/admin/svc/order/svc_order_list.go index 90e7eb1..6d185d5 100644 --- a/app/admin/svc/order/svc_order_list.go +++ b/app/admin/svc/order/svc_order_list.go @@ -780,7 +780,7 @@ func OrderUpdateState(c *gin.Context) { return } sess2 := sess - sess2.Where("state!=5") + sess2.Where("state!=5 and state!=4") if args["ids"] != "" { sess2.In("oid", strings.Split(args["ids"], ",")) }