Magento 2-特定の発送方法でのみ代金引換を有効にします


9

たとえば、顧客が定額配送方法を選択した場合にのみ代金支払いを有効にする方法は?

発送/支払いの設定やカートのルールでこれを行う方法が見つかりません。

回答:


9

配送方法「flatrate_flatrate」が選択されている場合、カスタムモジュールのプラグインを使用して、CashOnDeliveryのisAvailable関数をfalseに設定します。

file: <magento-root>/app/code/MyCompany/MyModule/Plugin/CashonDeliveryPlug.php

<?php
    namespace MyCompany\MyModule\Plugin;
    use Magento\Payment\Model\Method\AbstractMethod;
    use Magento\Quote\Model\Quote;
    class CashondeliveryPlug
    {

      /**
       * @var \Magento\Checkout\Model\Session
       */
       protected $_checkoutSession;

      /**
       * Constructor
       *
       * @param \Magento\Checkout\Model\Session $checkoutSession
       */
        public function __construct
        (
            \Psr\Log\LoggerInterface $logger,
            \Magento\Checkout\Model\Session $checkoutSession
         ) {
            $this->logger = $logger;
            $this->_checkoutSession = $checkoutSession;
            return;
        }

        public function aroundIsAvailable(\Magento\Payment\Model\Method\AbstractMethod $subject, callable $proceed)
        {
            $shippingMethod = $this->_checkoutSession->getQuote()->getShippingAddress()->getShippingMethod();
            #$this->logger->debug($shippingMethod);
            if ($shippingMethod == 'flatrate_flatrate') {
                return false;
            }
            $result = $proceed();
            return $result;
          }
    }

そして

file: <magento-root>/app/code/MyCompany/MyModule/etc/di.xml

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <type name="Magento\OfflinePayments\Model\Cashondelivery">
        <plugin name="cashondeliveryplug" type="MyCompany\MyModule\Plugin\CashondeliveryPlug" disabled="false" sortOrder="10"/>
    </type>
</config>

これがお役に立てば幸いです。気軽に質問してください


1
バックエンドでこれを行う方法
Mahi M

プラグインのaroundIsAvailable関数でカスタムモジュールを作成する必要があります。stock-magentoを使用してバックエンドでこれを行うことはできません
juhanix '20

これは私の状態です...バックエンドでこれを行う方法
Mahi M

多分あなたはあなたがより
多くの

@juhanixどうもありがとうございました。フローを見つけるのに2時間以上かかります。あなたの解決策は私を大いに助けます。コーディングを続ける:)
divya sekar
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.