選択したカスタム配送方法で、1ページのチェックアウト時にカスタム入力テキスト領域を表示する


9

次のようなカスタムの配送方法を追加しました。

app / etc / config.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
    <default>
        <carriers>
            <lime>
                <active>1</active>
                <allowed_methods>delivery</allowed_methods>
                <methods>delivery</methods>
                <type>NAMESPACE</type>
                <sallowspecific>0</sallowspecific>
                <model>Namespace\Module\Model\Carrier</model>
                <name>Namespace_Module custom Shipping</name>
                <title>Namespace_Module custom Shipping</title>
                <handling_type>F</handling_type>
            </lime>
        </carriers>
    </default>
</config>

app / code / Namespace / Module / Model / Carrier.php

public function collectRates(RateRequest $request)
{
    if (!$this->getConfigFlag('active')) {
        return false;
    } 
    $result = $this->_rateResultFactory->create(); 
    $method = $this->_rateMethodFactory->create(); 
    $method->setCarrier('HILO');
    $method->setCarrierTitle('HILO'); 
    $method->setMethod('Fast');
    $method->setMethodTitle('Fast'); 
    $amount = $this->getConfigData('price'); 
    $method->setPrice($amount);
    $method->setCost($amount); 
    $result->append($method);
    return $result;
}

チェックアウトページに表示されますが、ユーザーがカスタムの配送方法を選択したときにカスタムテキスト領域の入力データを表示し、カスタム入力テキスト領域のデータを保存できます。

これが私がそれをどのように見せたいかです:

ここに画像の説明を入力してください


2
こんにちは、このフィールドをどのように追加しましたか?コードを取得するのを手伝ってくれませんか?
ムジャヒド

回答:


2

カスタム配送方法を選択した後にカスタム入力フィールドを表示するには、select methodイベントにサブスクライブするjsブロックを追加する必要があります。

カスタムphtmlをレイアウトcheckout_index_index.xmlに追加します

次に、次のブロックをphtmlに追加します。

<script type="text/javascript">
    require([
        'jquery',
        'Magento_Checkout/js/model/quote',
    ], function (jQuery, quote) {
        jQuery(document).ready(function () {
            quote.shippingMethod.subscribe(function (value) {
                if (quote.shippingMethod() && quote.shippingMethod().carrier_code == 'your_custom_shipping_method_code') {
                    var customBlock = "<div class ='custom-information'><input type="text" id="your_custom_id"></div>";
                    if((!$('.custom-information').length > 0)) {
                        $('#checkout-shipping-method-load').append(customBlock);
                    }
                });
            });
        });
    });
</script>

上記のコードを使用して、カスタムの配送方法の下に必要な入力を追加します。

その後、カスタム値を保存するプラグインを作成する必要があります。

チェック:Magento \ Checkout \ Model \ GuestShippingInformationManagement

お役に立てば幸いです。よろしく、パブロ


1
あなたはより多くの本を少し説明してくださいすることができます
Mujahidh
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.