Browse Source

fix:详情修改

duxin 1 month ago
parent
commit
80e4586799
1 changed files with 1 additions and 1 deletions
  1. 1 1
      internal/logic/order/examine.go

+ 1 - 1
internal/logic/order/examine.go

@@ -296,7 +296,7 @@ func CheckAutoAudit(ctx context.Context, orderData map[string]interface{}, produ
 			afterPrice += gconv.Float64(m["final_price"])
 		}
 
-		if common.Float64All(m["original_price"]) < 0 {
+		if common.Float64All(m["original_price"]) <= 0 {
 			log.Println("产品价格为0", common.Float64All(m["original_price"]))
 			return false
 		}