使选定的自定义送货方式在一页结帐时显示自定义输入文本区域


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>

应用程序/代码/命名空间/模块/模型/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
嗨,您是如何添加此字段的?您能帮我获取代码吗?
Mujahidh '18

Answers:


2

为了在选择自定义运输方式后显示自定义输入字段,您必须添加一个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

希望对您有帮助。问候,巴勃罗


2
能否请您解释这一点
Mujahidh
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.