Magento 2 में कुल योगों के शुल्क को कैसे जोड़ा जाए


39

निम्नलिखित लिंक का वर्णन करेगा

http://excellencemagentoblog.com/blog/2012/01/27/magento-add-fee-discount-order-total/

Magento 1 में कुल योग के लिए शुल्क जोड़ने के लिए।

अब यह कार्यक्षमता Magento 2 में उद्धरण मॉड्यूल में ले जाया गया है ।

मुझे लगता है कि अभी भी वैसा ही कॉन्सेप्ट है जैसे कलेक्ट और लाने के तरीके। किसी Magento 2 में यह कोशिश की है?


मैग्नेटो 2 में शुरुआत से लेकर ऑर्डर तक हटा दिया गया है या काम नहीं कर रहा है, लेकिन मुझे कुल योग के बारे में निश्चित नहीं है
प्रदीप कुमार

2
यह प्रश्न बहुत व्यापक है, कृपया अधिक विशिष्ट होने का प्रयास करें। अब तक तुमने क्या प्रयास किये हैं?
Sander Mangel

magecomp.com/magento-2-extra-fee.html मुफ़्त एक्सटेंशन
गौरव जैन

1
मैंने कुल ऑर्डर करने के लिए अतिरिक्त शुल्क जोड़ने के लिए मॉड्यूल विकसित किया। यह अतिरिक्त शुल्क ऑर्डर, चालान और क्रेडिटमेमो में प्रदर्शित होगा। आप GitHub से डाउनलोड कर सकते हैं: github.com/mageprince/magento2-extrafee
प्रिंस पटेल

निम्नलिखित मॉड्यूल का उपयोग कर सकता है जो सभी भुगतान विधियों और शिपिंग देश के साथ काम करता है - scommerce-mage.com/magento2-surcharge-or-additional-fee.html
user2804

जवाबों:


102

नीचे दिए गए चरणों का पालन करें इससे आपको मदद मिलेगी, मेरे मॉड्यूल में मैंने केवल शुल्क कॉलम जोड़ा है
यह कार्ट कुल शुल्क में एक पंक्ति जोड़ देगा और चेकआउट पृष्ठ में साइड बार
भी होगा और इसमें कुल राशि के लिए शुल्क राशि भी जोड़ी गई (शुल्क स्थैतिक मूल्य जिसे मैंने 100 के रूप में रखा है ) एक बार ऑर्डर देने पर कुल शुल्क के साथ होगा और यदि आप क्रम दृश्य में लॉग इन हैं, तो आप कुल ब्लॉक में शुल्क की नई पंक्ति देख सकते हैं, लेकिन व्यवस्थापक पक्ष अभी तक लागू नहीं हुआ है यदि कोई लागू करता है, तो आप उस उत्तर को पोस्ट कर सकते हैं

आप मॉड्यूल आदि फ़ोल्डर में sales.xml बनाएँ

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Sales:etc/sales.xsd">
    <section name="quote">
        <group name="totals">

            <item name="fee" instance="Sugarcode\Test\Model\Total\Fee" sort_order="150"/>

        </group>  
    </section>
</config>

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ वेब \ js \ दृश्य \ चेकआउट \ गाड़ी \ योग \ fee.js

/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
define(
    [
        'Sugarcode_Test/js/view/checkout/summary/fee'
    ],
    function (Component) {
        'use strict';

        return Component.extend({

            /**
             * @override
             */
            isDisplayed: function () {
                return true;
            }
        });
    }
);

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ वेब \ js \ दृश्य \ चेकआउट \ सारांश \ fee.js

/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
/*jshint browser:true jquery:true*/
/*global alert*/
define(
    [
        'Magento_Checkout/js/view/summary/abstract-total',
        'Magento_Checkout/js/model/quote',
        'Magento_Catalog/js/price-utils',
        'Magento_Checkout/js/model/totals'
    ],
    function (Component, quote, priceUtils, totals) {
        "use strict";
        return Component.extend({
            defaults: {
                isFullTaxSummaryDisplayed: window.checkoutConfig.isFullTaxSummaryDisplayed || false,
                template: 'Sugarcode_Test/checkout/summary/fee'
            },
            totals: quote.getTotals(),
            isTaxDisplayedInGrandTotal: window.checkoutConfig.includeTaxInGrandTotal || false,
            isDisplayed: function() {
                return this.isFullMode();
            },
            getValue: function() {
                var price = 0;
                if (this.totals()) {
                    price = totals.getSegment('fee').value;
                }
                return this.getFormattedPrice(price);
            },
            getBaseValue: function() {
                var price = 0;
                if (this.totals()) {
                    price = this.totals().base_fee;
                }
                return priceUtils.formatPrice(price, quote.getBasePriceFormat());
            }
        });
    }
);

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ वेब \ टेम्पलेट \ चेकआउट \ सारांश \ fee.html

<!--
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<!-- ko -->

  <tr class="totals fee excl">
        <th class="mark" scope="row">
            <span class="label" data-bind="text: title"></span>
            <span class="value" data-bind="text: getValue()"></span>
        </th>
        <td class="amount">

            <span class="price"
                  data-bind="text: getValue(), attr: {'data-th': title}"></span>


        </td>
    </tr>   

<!-- /ko -->

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ वेब \ टेम्पलेट \ चेकआउट \ गाड़ी \ योग \ fee.html

<!--
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<!-- ko -->
<tr class="totals fee excl">
    <th class="mark" colspan="1" scope="row" data-bind="text: title"></th>
    <td class="amount">
        <span class="price" data-bind="text: getValue()"></span>
    </td>
</tr>
<!-- /ko -->

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ मॉडल \ कुल \ Fee.php

<?php
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Sugarcode\Test\Model\Total;


class Fee extends \Magento\Quote\Model\Quote\Address\Total\AbstractTotal
{
   /**
     * Collect grand total address amount
     *
     * @param \Magento\Quote\Model\Quote $quote
     * @param \Magento\Quote\Api\Data\ShippingAssignmentInterface $shippingAssignment
     * @param \Magento\Quote\Model\Quote\Address\Total $total
     * @return $this
     */
    protected $quoteValidator = null; 

    public function __construct(\Magento\Quote\Model\QuoteValidator $quoteValidator)
    {
        $this->quoteValidator = $quoteValidator;
    }
  public function collect(
        \Magento\Quote\Model\Quote $quote,
        \Magento\Quote\Api\Data\ShippingAssignmentInterface $shippingAssignment,
        \Magento\Quote\Model\Quote\Address\Total $total
    ) {
        parent::collect($quote, $shippingAssignment, $total);


        $exist_amount = 0; //$quote->getFee(); 
        $fee = 100; //Excellence_Fee_Model_Fee::getFee();
        $balance = $fee - $exist_amount;

        $total->setTotalAmount('fee', $balance);
        $total->setBaseTotalAmount('fee', $balance);

        $total->setFee($balance);
        $total->setBaseFee($balance);

        $total->setGrandTotal($total->getGrandTotal() + $balance);
        $total->setBaseGrandTotal($total->getBaseGrandTotal() + $balance);


        return $this;
    } 

    protected function clearValues(Address\Total $total)
    {
        $total->setTotalAmount('subtotal', 0);
        $total->setBaseTotalAmount('subtotal', 0);
        $total->setTotalAmount('tax', 0);
        $total->setBaseTotalAmount('tax', 0);
        $total->setTotalAmount('discount_tax_compensation', 0);
        $total->setBaseTotalAmount('discount_tax_compensation', 0);
        $total->setTotalAmount('shipping_discount_tax_compensation', 0);
        $total->setBaseTotalAmount('shipping_discount_tax_compensation', 0);
        $total->setSubtotalInclTax(0);
        $total->setBaseSubtotalInclTax(0);
    }
    /**
     * @param \Magento\Quote\Model\Quote $quote
     * @param Address\Total $total
     * @return array|null
     */
    /**
     * Assign subtotal amount and label to address object
     *
     * @param \Magento\Quote\Model\Quote $quote
     * @param Address\Total $total
     * @return array
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function fetch(\Magento\Quote\Model\Quote $quote, \Magento\Quote\Model\Quote\Address\Total $total)
    {
        return [
            'code' => 'fee',
            'title' => 'Fee',
            'value' => 100
        ];
    }

    /**
     * Get Subtotal label
     *
     * @return \Magento\Framework\Phrase
     */
    public function getLabel()
    {
        return __('Fee');
    }
}

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ आदि \ module.xml

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../lib/internal/Magento/Framework/Module/etc/module.xsd">
    <module name="Sugarcode_Test" setup_version="2.0.6" schema_version="2.0.6">
        <sequence>
            <module name="Magento_Sales"/>
            <module name="Magento_Quote"/>
            <module name="Magento_Checkout"/>
        </sequence>
    </module>
</config>

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ लेआउट \ checkout_cart_index.xml

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<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.cart.totals">
            <arguments>
                <argument name="jsLayout" xsi:type="array">
                    <item name="components" xsi:type="array">
                        <item name="block-totals" xsi:type="array">
                            <item name="children" xsi:type="array">


                                <item name="fee" xsi:type="array">
                                    <item name="component"  xsi:type="string">Sugarcode_Test/js/view/checkout/cart/totals/fee</item>
                                    <item name="sortOrder" xsi:type="string">20</item>
                                    <item name="config" xsi:type="array">
                                         <item name="template" xsi:type="string">Sugarcode_Test/checkout/cart/totals/fee</item>
                                        <item name="title" xsi:type="string" translate="true">Fee</item>
                                    </item>
                                </item>

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

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ लेआउट \ checkout_index_index.xml

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" 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="summary" xsi:type="array">
                                            <item name="children" xsi:type="array">
                                                <item name="totals" xsi:type="array">
                                                    <item name="children" xsi:type="array">
                                                       <item name="fee" xsi:type="array">
                                                            <item name="component"  xsi:type="string">Sugarcode_Test/js/view/checkout/cart/totals/fee</item>
                                                            <item name="sortOrder" xsi:type="string">20</item>
                                                            <item name="config" xsi:type="array">
                                                                 <item name="template" xsi:type="string">Sugarcode_Test/checkout/cart/totals/fee</item>
                                                                <item name="title" xsi:type="string" translate="true">Fee</item>
                                                            </item>
                                                        </item>
                                                    </item>
                                                </item>
                                                <item name="cart_items" xsi:type="array">
                                                    <item name="children" xsi:type="array">
                                                        <item name="details" xsi:type="array">
                                                            <item name="children" xsi:type="array">
                                                                <item name="subtotal" xsi:type="array">
                                                                    <item name="component" xsi:type="string">Magento_Tax/js/view/checkout/summary/item/details/subtotal</item>
                                                                </item>
                                                            </item>
                                                        </item>
                                                    </item>
                                                </item>
                                            </item>
                                        </item>
                                    </item>
                                </item>
                            </item>
                        </item>
                    </item>
                </argument>
            </arguments>
        </referenceBlock>
    </body>
</page>

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ दृश्य \ दृश्यपटल \ लेआउट \ sales_order_view.xml

<?xml version="1.0"?>
<!--
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */
-->
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">

    <body>        
        <referenceContainer name="order_totals">
            <block class="Sugarcode\Test\Block\Sales\Order\Fee" name="fee"/>
        </referenceContainer>
    </body>
</page>

एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ ब्लॉक \ बिक्री \ आदेश \ Fee.php

<?php
/**
 * Copyright © 2015 Magento. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Tax totals modification block. Can be used just as subblock of \Magento\Sales\Block\Order\Totals
 */
namespace Sugarcode\Test\Block\Sales\Order;



class Fee extends \Magento\Framework\View\Element\Template
{
    /**
     * Tax configuration model
     *
     * @var \Magento\Tax\Model\Config
     */
    protected $_config;

    /**
     * @var Order
     */
    protected $_order;

    /**
     * @var \Magento\Framework\DataObject
     */
    protected $_source;

    /**
     * @param \Magento\Framework\View\Element\Template\Context $context
     * @param \Magento\Tax\Model\Config $taxConfig
     * @param array $data
     */
    public function __construct(
        \Magento\Framework\View\Element\Template\Context $context,
        \Magento\Tax\Model\Config $taxConfig,
        array $data = []
    ) {
        $this->_config = $taxConfig;
        parent::__construct($context, $data);
    }

    /**
     * Check if we nedd display full tax total info
     *
     * @return bool
     */
    public function displayFullSummary()
    {
        return true;
    }

    /**
     * Get data (totals) source model
     *
     * @return \Magento\Framework\DataObject
     */
    public function getSource()
    {
        return $this->_source;
    } 
    public function getStore()
    {
        return $this->_order->getStore();
    }

      /**
     * @return Order
     */
    public function getOrder()
    {
        return $this->_order;
    }

    /**
     * @return array
     */
    public function getLabelProperties()
    {
        return $this->getParentBlock()->getLabelProperties();
    }

    /**
     * @return array
     */
    public function getValueProperties()
    {
        return $this->getParentBlock()->getValueProperties();
    }

    /**
     * Initialize all order totals relates with tax
     *
     * @return \Magento\Tax\Block\Sales\Order\Tax
     */
     public function initTotals()
    {

        $parent = $this->getParentBlock();
        $this->_order = $parent->getOrder();
        $this->_source = $parent->getSource();

        $store = $this->getStore();

        $fee = new \Magento\Framework\DataObject(
                [
                    'code' => 'fee',
                    'strong' => false,
                    'value' => 100,
                    //'value' => $this->_source->getFee(),
                    'label' => __('Fee'),
                ]
            );

            $parent->addTotal($fee, 'fee');
           // $this->_addTax('grand_total');
            $parent->addTotal($fee, 'fee');


            return $this;
    }

}

एक बार ऊपर चरण कमांड के नीचे चलाए जाने के बाद यह महत्वपूर्ण है कि आपके js और html फाइलें पब / स्टेटिक फ़ोल्डर से गायब हो जाएंगी। तो नीचे कमांड चलाएं जो पब / स्टैटिक फोल्डर में js और html फाइल बनाएगा

बिन \ magento सेटअप: स्थिर-सामग्री: परिनियोजित

अगर काम मेरे जवाब को स्वीकार करता है जो दूसरों की मदद करता है


16
आपने मॉड्यूल को लिखा ... प्रभावशाली! उस के लिए +1
Sander Mangel

4
अच्छी तरह से किया praseep
अमित बेरा

4
हैलो प्रदीप कुमार, महान लेख, लेकिन उस कोड के साथ एक समस्या है, शुल्क कुल में दो गुना जोड़ते हैं, क्या इसके लिए कोई समाधान है?
सुनील पटेल 15

3
क्या किसी ने उपरोक्त कोड में दो बार शुल्क लागू बग तय किया है?
पल्लवी

4
मुझे खेद है, मुझे माफी मांगनी पड़ी। "दो टाइम्स शुल्क" -Bug संभवत: तथ्य यह है कि एप्लिकेशन \ कोड \ Sugarcode \ टेस्ट \ मॉडल \ कुल \ Fee.php फैली की वजह से है \ Magento \ उद्धरण \ मॉडल \ उद्धरण \ पता \ कुल \ AbstractTotal। जैसा कि आपके पास चेकआउट (बिलिंग और शिपिंग) में आम तौर पर दो पते होते हैं, उद्धरण बचत दो बार कहा जाता है। M1 में एक समान व्यवहार था, दुर्भाग्य से M1-Fix यहाँ लागू नहीं है ...
mybinaryromance

7

मैंने ऑर्डर करने के लिए अतिरिक्त शुल्क जोड़ने के लिए एक कस्टम मॉड्यूल विकसित किया।

अतिरिक्त शुल्क कार्ट पेज, चेकआउट पेज, चालान और क्रेडिटमेमो पर प्रदर्शित होगा । आप निश्चित प्रकार का मूल्य भी चुन सकते हैं और व्यवस्थापक कॉन्फ़िगरेशन से प्रतिशत कर सकते हैं ।

https://github.com/mageprince/magento2-extrafee/


टेक्स्ट बॉक्स से शुल्क कैसे जोड़ें prnt.sc/hfsni5
nagendra

क्या यह एक्सटेंशन केवल किसी विशेष भुगतान पद्धति के लिए शुल्क जोड़ने का काम करेगा?
पीयूष

अभी भी इस कार्यक्षमता को इस मॉड्यूल में शामिल नहीं किया गया है। मैं मॉड्यूल के अगले संस्करण में इस कार्यक्षमता को जोड़ूंगा।
प्रिंस पटेल

क्या यह एक्सटेंशन केवल किसी विशेष भुगतान पद्धति के लिए शुल्क जोड़ने के लिए काम करेगा .....
मानो M

यदि शुल्क मूल्य में परिवर्तन होता है, तो अतिरिक्त शुल्क चेकआउट पृष्ठ में प्रतिबिंबित नहीं होता है।
मनो एम

3

प्रदीप का जवाब बहुत मददगार है, लेकिन एक महत्वपूर्ण बात याद आती है।

फ़ंक्शन सुगरकोड \ टेस्ट \ मॉडल \ टोटल: कलेक्ट () को दो बार मैगेंटो के मैगेंटो \ _ \ _ \ _ मॉडल / उद्धरण से कहा जाता है: एकत्रित करें (), प्रत्येक पते के लिए एक बार। उस बिंदु पर यह एक संयुक्त कुल बनाता है जिसे उद्धरण तालिका में संग्रहीत किया जाता है। यह न तो आदेश में दिखाई देता है, न ही चेकआउट में वेबसाइट पर।

इस कारण से केवल एक बार शुल्क जमा करना महत्वपूर्ण है जिसे इकट्ठा किया जाता है () कहा जाता है। यह जाँच करके किया जा सकता है कि क्या कोई भेज दी गई वस्तु उपलब्ध है:

    $items = $shippingAssignment->getItems();
    if (!count($items)) {
        return $this;
    }

अपने कोड की शुरुआत में इस कोड को Sugarcode \ Test \ Model \ Total :: एकत्रित () में जोड़ें


2
अभी भी दो बार जोड़ रहे हैं
nagendra

इस पर किसी भी अद्यतन? यह अभी भी दो बार शुल्क जोड़ रहा है। दुर्भाग्य से काम करने के लिए इसे प्राप्त नहीं कर सकते।
हॉलरन


1

कृपया टिप्पणी करें

        $total->setGrandTotal($total->getGrandTotal() + $balance);

प्रपत्र अनुप्रयोग \ कोड \ Sugarcode \ टेस्ट \ मॉडल \ कुल \ Fee.php डबल कस्टम शुल्क जारी करने के लिए

आशा है इससे आपकी मदद होगी!!

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.