Magento 2 - sadece belirli gönderim yöntemi için teslimatta nakit sağlayın


9

Örneğin, yalnızca müşteri sabit oranlı gönderim yöntemini seçtiğinde teslimat ödemesinde nakit nasıl etkinleştirilir?

Bunu gönderi / ödeme yapılandırmasında veya alışveriş sepeti kurallarında yapmanın bir yolunu bulamıyorum.

Yanıtlar:


9

Özel bir modülde, "flatrate_flatrate" gönderim yöntemi seçildiğinde CashOnDelivery için isAvailable işlevini false olarak ayarlamak için bir Plugin kullanıyorum.

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;
          }
    }

ve

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>

Umarım bu size yardımcı olur! Soru sormaktan çekinmeyin


1
Arka uçta nasıl yapılır
Mahi M

eklentisi eklentisi ile özel bir modül yapmalısınız. Bunu arka uçta stock-magento ile
yapamazsınız

Bu benim durumum ... bunu arka uçta nasıl yapılır
Mahi M

belki daha fazla bilgi verebileceğiniz yeni bir soru
açmalısınız

@Juhanix çok teşekkür ederim ben bir akış bulmak için 2 saatten fazla harcamak. çözümün bana çok yardımcı oluyor. kodlama tutmak :)
divya sekar
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.