diff --git a/business/jxstore/tempop/tempop.go b/business/jxstore/tempop/tempop.go index 6f8850629..bb1f341db 100644 --- a/business/jxstore/tempop/tempop.go +++ b/business/jxstore/tempop/tempop.go @@ -1660,10 +1660,9 @@ func RefreshJXPriceChange(ctx *jxcontext.Context, storeID int) (hint string, err sql := ` SELECT * FROM store - WHERE deleted_at = ? AND status <> ? - AND id <> 100118 AND id <> 100274 AND id <> 100205 + WHERE deleted_at = ? AND pay_percentage > 50 ` - sqlParams := []interface{}{utils.DefaultTimeValue, model.StoreStatusDisabled} + sqlParams := []interface{}{utils.DefaultTimeValue} if storeID != 0 { sql += " AND id = ?" sqlParams = append(sqlParams, storeID)