diff --git a/business/jxstore/act/act.go b/business/jxstore/act/act.go index 48344d6a4..718180362 100644 --- a/business/jxstore/act/act.go +++ b/business/jxstore/act/act.go @@ -424,6 +424,7 @@ func getActRule(vendorID, actType int) (actRule *tActRuleInfo, err error) { func checkDiscountValidation(vendorIDs []int, actType int, pricePercentage float64) (err error) { pricePercentageMin := int(math.Floor(pricePercentage)) pricePercentageMax := int(math.Ceil(pricePercentage)) + fmt.Println(pricePercentageMin, pricePercentageMax, pricePercentage) errList := errlist.New() for _, vendorID := range vendorIDs { actRule, err2 := getActRule(vendorID, actType)