Magento的收取运费为小计的百分比(magento charge shipping as per

2019-08-17 01:22发布


想要计算的百分比的基础上运输成本,这也是从管理管理。
对于例如: - 运费[管理员]:10
如果小计= 100。
然后运输成本= 10。
提前致谢。

Answer 1:

唉得到了答案。
> 本地/法师/运输/型号/电信/ Flatrate.php -从应用程序/代码/核心/法师/运输/型号/电信/ Flatrate.php进行文件的复制
关于线96编辑相应:

if ($request->getFreeShipping() === true || $request->getPackageQty() == $this->getFreeBoxes()) {
                $shippingPrice = '0.00';
            }
                    //code starts here
            if ($this->getConfigData('shipper_type') == 'P')
            {
            $session        = Mage::getSingleton('checkout/session');
            $quote_id       = $session->getQuoteId();

            $item_quote     = Mage::getModel('sales/quote')->load($quote_id);

            $shippingPrice  = $item_quote->getSubtotal()*($this->getConfigData('price')/100);
            //code ends here
            }


            $method->setPrice($shippingPrice);
            $method->setCost($shippingPrice);


应用程序/代码/核心/法师/运输/等/的system.xml。 [关于线:181]

                <shipper_type translate="label">
                        <label>Calculate Shipping Fee</label>
                        <frontend_type>select</frontend_type>
                        <source_model>shipping/source_shipperType</source_model>
                        <sort_order>4</sort_order>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>0</show_in_store>
                </shipper_type>

创建应用程序/代码/核心/法师/运输/型号/来源/ ShipperType.php

class Mage_Shipping_Model_Source_ShipperType
{
    public function toOptionArray()
    {
        return array(
            array('value' => Mage_Shipping_Model_Carrier_Abstract::HANDLING_TYPE_FIXED, 'label' => Mage::helper('shipping')->__('Fixed')),
            array('value' => Mage_Shipping_Model_Carrier_Abstract::HANDLING_TYPE_PERCENT, 'label' => Mage::helper('shipping')->__('Percent')),
        );
    }
}

我希望这可以帮助别人。



文章来源: magento charge shipping as percentage of subtotal