문제

When I try place order, it show "Please choose a valid discount amount." 2.3.4

도움이 되었습니까?

해결책

Section responsible for that error looks like

        // Check if discount amount not negative
        if ($this->hasDiscountAmount()) {
            if ((int)$this->getDiscountAmount() < 0) {
                throw new \Magento\Framework\Exception\LocalizedException(__('Please choose a valid discount amount.'));
            }
        }

Check your cart rules after migration cause this error is thrown when applied discount amount is less than 0.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top