すべての支払い方法がカート価格ルールに含まれていない


回答:


10

ファイルvendor / magento / module-payment / Helper / data.phpを開きます

行番号268でこの行を置きます

$data['active'] = 1;

コアファイルを変更したくない場合は、次のコードに従ってそのファイルをオーバーライドする必要があります。

Vendor / Extension / etc / di.xmlに移動し、以下のコードを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">
    <preference for="Magento\Payment\Helper\Data" type="Vendor\Extension\Helper\Data"/>
</config>

次のステップは、Vendor \ Extension \ Helper \ Data.phpにData.phpファイルを作成することです

<?php
namespace Vendor\Extension\Helper;

use Magento\Payment\Helper\Data as MainHelper;

class Data extends MainHelper
{
    public function getPaymentMethodList($sorted = true, $asLabelValue = false, $withGroups = false, $store = null)
    {
        $methods = [];
        $groups = [];
        $groupRelations = [];


        foreach ($this->getPaymentMethods() as $code => $data) {

            $data['active'] = 1;

            if (!empty($data['active'])) {
                $storedTitle = $this->getMethodInstance($code)->getConfigData('title', $store);
                if (isset($storedTitle)) {
                    $methods[$code] = $storedTitle;
                } elseif (isset($data['title'])) {
                    $methods[$code] = $data['title'];
                }
            }
            if ($asLabelValue && $withGroups && isset($data['group'])) {
                $groupRelations[$code] = $data['group'];
            }
        }
        if ($asLabelValue && $withGroups) {
            $groups = $this->_paymentConfig->getGroups();
            foreach ($groups as $code => $title) {
                $methods[$code] = $title;
            }
        }
        if ($sorted) {
            asort($methods);
        }
        if ($asLabelValue) {
            $labelValues = [];
            foreach ($methods as $code => $title) {
                $labelValues[$code] = [];
            }
            foreach ($methods as $code => $title) {
                if (isset($groups[$code])) {
                    $labelValues[$code]['label'] = $title;
                    if (!isset($labelValues[$code]['value'])) {
                        $labelValues[$code]['value'] = null;
                    }
                } elseif (isset($groupRelations[$code])) {
                    unset($labelValues[$code]);
                    $labelValues[$groupRelations[$code]]['value'][$code] = ['value' => $code, 'label' => $title];
                } else {
                    $labelValues[$code] = ['value' => $code, 'label' => $title];
                }
            }

            return $labelValues;
        }


        return $methods;
    }
}

機能せず、コアファイルを編集できません。
Magecode、

Magento 2.3.1では、支払い方法を使用してルールを作成できますが、条件選択ですべての支払い方法が利用できないのはなぜですか?
Magecode、

コアファイルを変更して変更するよりもコアファイルを編集したくない場合は、正確に配置したスクリーンショットを共有できます
Jigs Parmar



5

以下のリンクを使用できます

/magento//a/128606/70565

お役に立てれば幸いです。


Magento 2.3.1では、支払い方法を使用してルールを作成できますが、条件選択ですべての支払い方法が利用できないのはなぜですか?
Magecode

支払方法の条件が利用できないという点で、magento 231バージョンをチェックインしました。
Sweety Masmiya

拡張機能またはデフォルトのmagento機能を使用していますか?
Sweety Masmiya

デフォルトのMagento機能
Magecode

デフォルトのmagento 231バージョンをチェックインしましたが、支払い方法の条件は利用できません。
Sweety Masmiya
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.