3

私が問題を抱えている価格ルールについて誰かが私を助けてくれることを願っています。特定のクレジットカードでお支払いの場合は、一定額割引したいのですが。

たとえば、Visaクレジットカードに一定の割引を適用したいとします。つまり、顧客がVisaクレジットカードを使用して支払いを行う場合、{xy}の金額で割引を受ける必要があります。

私はたくさんのことを試しました。Mage_SalesRule_Model_Rule_Condition_Addressクラスを拡張し、新しい属性を追加しました。管理サイトでルールを作成するオプションを取得しました。

しかし、問題は、クレジットカードビザを使用して支払いを行い、再び支払いモードに戻ってモードを変更し、他の支払いカードに適用すると、前のものの情報を取得し、不特定のクレジットカードに割引を与えることです。私の拡張クラスは:

class Alw_ManageProduct_Model_Condition_Address extends Mage_SalesRule_Model_Rule_Condition_Address
{
    public function loadAttributeOptions()
    {
        $attributes = array(
            'base_subtotal' => Mage::helper('salesrule')->__('Subtotal'),
            'total_qty' => Mage::helper('salesrule')->__('Total Items Quantity'),
            'weight' => Mage::helper('salesrule')->__('Total Weight'),
            'payment_method' => Mage::helper('salesrule')->__('Payment Method'),
            'shipping_method' => Mage::helper('salesrule')->__('Shipping Method'),
            'postcode' => Mage::helper('salesrule')->__('Shipping Postcode'),
            'region' => Mage::helper('salesrule')->__('Shipping Region'),
            'region_id' => Mage::helper('salesrule')->__('Shipping State/Province'),
            'country_id' => Mage::helper('salesrule')->__('Shipping Country'),
            'cc_type' => Mage::helper('salesrule')->__('Credit Card Type'),
        );

        $this->setAttributeOption($attributes);

        return $this;
    }

    public function getAttributeElement()
    {
        $element = parent::getAttributeElement();
        $element->setShowAsText(true);
        return $element;
    }

    public function getInputType()
    {
        switch ($this->getAttribute()) {
            case 'base_subtotal': case 'weight': case 'total_qty':
                return 'numeric';

            case 'shipping_method': case 'payment_method': case 'country_id': case 'cc_type': case 'region_id':
                return 'select';
        }
        return 'string';
    }

    public function getValueElementType()
    {
        switch ($this->getAttribute()) {
            case 'shipping_method': 
            case 'payment_method': 
            case 'country_id': 
            case 'region_id': 
            case 'cc_type' :
                return 'select';
        }
        return 'text';
    }

    public function getValueSelectOptions()
    {
        if (!$this->hasData('value_select_options')) {
            switch ($this->getAttribute()) {
                case 'country_id':
                    $options = Mage::getModel('adminhtml/system_config_source_country')
                        ->toOptionArray();
                    break;

                case 'region_id':
                    $options = Mage::getModel('adminhtml/system_config_source_allregion')
                        ->toOptionArray();
                    break;

                case 'shipping_method':
                    $options = Mage::getModel('adminhtml/system_config_source_shipping_allmethods')
                        ->toOptionArray();
                    break;

                case 'payment_method':
                    $options = Mage::getModel('adminhtml/system_config_source_payment_allmethods')
                        ->toOptionArray();
                    break;

                case 'cc_type':
                    $options = Mage::getModel('adminhtml/system_config_source_payment_cctype')
                        ->toOptionArray();
                    break;

                default:
                    $options = array();
            }
            $this->setData('value_select_options', $options);
        }
        return $this->getData('value_select_options');
    }

    /**
     * Validate Address Rule Condition
     *
     * @param Varien_Object $object
     * @return bool
     */
    public function validate(Varien_Object $object)
    {
        $address = $object;
        if (!$address instanceof Mage_Sales_Model_Quote_Address) {
            if ($object->getQuote()->isVirtual()) {
                $address = $object->getQuote()->getBillingAddress();
            }
            else {
                $address = $object->getQuote()->getShippingAddress();
            }
        }

        if ('payment_method' == $this->getAttribute() && ! $address->hasPaymentMethod()) {
            $address->setPaymentMethod($object->getQuote()->getPayment()->getMethod());
        }

        if('cc_type' == $this->getAttribute() && ! $address->hasCcType()) {
            $address->setCcType($object->getQuote()->getPayment()->getCcType());

            // validation cc type

            //echo $cct = $object->getQuote()->getPayment()->getCcType();
            //die;

            // if ($this->validateAttribute($cct)) {
            //    return true;
            //} else {
            //    return false;
            //}              

        }

        return parent::validate($address);
    }
}

誰かができるなら、私を助けてください....

4

0 に答える 0