diff --git a/business/jxstore/tempop/tempop.go b/business/jxstore/tempop/tempop.go index de1d6492f..ca0367f77 100644 --- a/business/jxstore/tempop/tempop.go +++ b/business/jxstore/tempop/tempop.go @@ -1533,9 +1533,9 @@ func UploadJdsImage(ctx *jxcontext.Context) (err error) { store := stores[0] if store.Status != model.StoreStatusDisabled && !strings.Contains(store.Name, "不做") { pricePercentagePack := "" - if store.PayPercentage > 90 { + if store.PayPercentage >= 90 { pricePercentagePack = "京西100" - } else if store.PayPercentage > 80 { + } else if store.PayPercentage >= 80 { pricePercentagePack = "京西80" } else { pricePercentagePack = "京西70"