Magento 2 - วิธีเพิ่มขั้นตอนการชำระเงินแบบพิเศษหลังจากส่วนการตรวจสอบและการชำระเงินด้วยปุ่มสั่งซื้อ


12

ฉันกำลังพยายามเพิ่มขั้นตอนการชำระเงินเพิ่มเติมหลังจากส่วน "ตรวจสอบและชำระเงิน" ข้อกำหนดคือการแยกการชำระเงินและการตรวจสอบเป็นขั้นตอนแยกต่างหาก เมื่อเลือกวิธีการชำระเงินหลังจากนั้นแล้วควรไปยังขั้นตอนสุดท้าย "ตรวจสอบ" ซึ่งจะต้องแสดงข้อมูลการสั่งซื้อทั้งหมดด้วยปุ่ม "สั่งซื้อ"

จนถึงตอนนี้ฉันได้เพิ่มขั้นตอนที่กำหนดเองหลังจากขั้นตอนการชำระเงินโดยไปที่ลิงก์ด้านล่าง http://devdocs.magento.com/guides/v2.0/howdoi/checkout/checkout_new_step.html

แต่ปัญหาที่นี่คือปุ่ม "สั่งซื้อสถานที่" ถูกผูกไว้กับขั้นตอนการชำระเงินฉันจำเป็นต้องย้ายปุ่มคำสั่งซื้อไปที่ขั้นตอนสุดท้าย

ความช่วยเหลือใด ๆ ที่นิยมมากที่สุด !!


คุณสามารถเพิ่มขั้นตอนหลังจากชำระเงินได้หรือไม่
Ravi Bhalodia

@rameshpushparaj คุณทำสิ่งนี้แล้วหรือยัง
Arshad Hussain

ปัญหาเดียวกันที่นี่วิธีแก้ปัญหา?
Diego Queiroz

อีกทางเลือกหนึ่งคือการเพิ่มสรุปการสั่งซื้อไปยังขั้นตอนความสำเร็จ ปุ่มคำสั่งซื้อจะถูกผูกไว้กับขั้นตอนการชำระเงินเพราะมันจะเป็นปัญหาหากลูกค้าชำระเงินและจากนั้นไม่เสร็จสิ้นการสั่งซื้อจากนั้นการชำระเงินจะไม่เป็นของการสั่งซื้อใด ๆ
Sanne

คำตอบ:


0

ด้านล่างฉันมีขั้นตอนเพิ่ม โปรดทำตามขั้นตอน

1. สร้างไฟล์ checkout_index_index.xml ของคุณในโฟลเดอร์เลย์เอาต์

app / รหัส / VendorName / PlaceOrder / view / ส่วนหน้า / รูปแบบ

<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="checkout" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
    <head>
        <css src="VendorName_PlaceOrder::css/place_order_button.css"/>
    </head>
    <body>
        <referenceBlock name="checkout.root">
            <arguments>
                <argument name="jsLayout" xsi:type="array">
                    <item name="components" xsi:type="array">
                        <item name="checkout" xsi:type="array">
                            <item name="children" xsi:type="array">
                                <item name="sidebar" xsi:type="array">
                                    <item name="children" xsi:type="array">
                                        <item name="newstep" xsi:type="array">
                                            <item name="component" xsi:type="string">VendorName_PlaceOrder/js/view/newstep</item>
                                            <item name="config" xsi:type="array">
                                                <item name="template" xsi:type="string">VendorName_PlaceOrder/newstep</item>
                                            </item>
                                        </item>
                                    </item>
                                </item>
                            </item>
                        </item>
                    </item>
                </argument>
            </arguments>
        </referenceBlock>
    </body>
</page>

2. สร้างไฟล์ newstep.html ในเทมเพลต

app / รหัส / VendorName / PlaceOrder / view / ส่วนหน้า / เว็บ / แม่แบบ

<div class="opc-block-newstep" data-bind="blockLoader: isLoading">
    <span data-bind="i18n: 'Order newstep'" class="title"></span>
    <!-- ko foreach: elems() -->
        <!-- ko template: getTemplate() --><!-- /ko -->
    <!-- /ko -->
</div>
<!-- ko if: (isVisible()) -->
<div class="actions-toolbar-trigger" id="place-order-trigger-wrapper">
    <button type="button" class="button action primary" id="place-order-trigger" value="Place Order" >
        <span>Place Order</span>
    </button>
</div>
<!-- /ko -->
  1. สร้างไฟล์ newstep.js ในพา ธ

app / รหัส / VendorName / PlaceOrder / view / ส่วนหน้า / เว็บ / js / มุมมอง

define(
    [
        'jquery',
        'ko',
        'Magento_Checkout/js/view/newstep',
        'Magento_Checkout/js/model/step-navigator',
    ],
    function(
        $,
        ko,
        Component,
        stepNavigator
    ) {
        'use strict';

        return Component.extend({

            isVisible: function () {
                return stepNavigator.isProcessed('shipping');
            },
            initialize: function () {
                $(function() {
                    $('body').on("click", '#place-order-trigger', function () {
                        $(".payment-method._active").find('.action.primary.checkout').trigger( 'click' );
                    });
                });
                var self = this;
                this._super();
            }

        });
    }
);

4. สำหรับเพิ่มช่องข้อกำหนดและเงื่อนไขใน checkout_index_index.xml:

<?xml version="1.0"?>

    <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

        <body>
            <referenceBlock name="checkout.root">
                <arguments>
                    <argument name="jsLayout" xsi:type="array">
                        <item name="components" xsi:type="array">
                            <item name="checkout" xsi:type="array">
                                <item name="children" xsi:type="array">
                                    <item name="sidebar" xsi:type="array">
                                        <item name="children" xsi:type="array">

                                            <item name="newstep" xsi:type="array">
                                                <item name="children" xsi:type="array">

                                                    <item name="agreements" xsi:type="array">
                                                        <item name="component" xsi:type="string">Magento_CheckoutAgreements/js/view/checkout-agreements</item>
                                                        <item name="sortOrder" xsi:type="string">100</item>
                                                        <item name="displayArea" xsi:type="string">before-place-order</item>
                                                        <item name="dataScope" xsi:type="string">checkoutAgreements</item>
                                                        <item name="provider" xsi:type="string">checkoutProvider</item>
                                                    </item>

                                                    <item name="agreements-validator" xsi:type="array">
                                                        <item name="component" xsi:type="string">Magento_CheckoutAgreements/js/view/agreement-validation</item>
                                                    </item>

                                                </item>
                                            </item>
                                        </item>
                                    </item>
                                </item>
                            </item>
                        </item>
                    </argument>
                </arguments>
            </referenceBlock>
        </body>
    </page>

ไฟล์ place_order_button.css ขาดหายไปในคำตอบนี้
Vignesh Bala

วิธีนี้เป็นวิธีแก้ปัญหาของคุณหรือไม่ จริง ๆ แล้วฉันต้องทำงานแบบเดียวกันแน่นอน
Akash Agrawal
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.