複数の定額配送を追加する方法


7

ここでテーブルレートが必要かどうかはわかりませんが、確立する必要があるのは、注文1件あたり3つの送料、英国のみです...

本質的に、

  • £2.95(3-5日)
  • £4.95(1〜3日)
  • 50ポンド以上のご注文で送料無料

無料配送と£2.95の定額料金を利用してますが、2番目の定額料金を追加するにはどうすればよいですか?私はそれをテーブルレートなどとして行う必要がありますか?私のような簡単なショップ構成で、これは多くの人に役立つと確信しています。

回答:


7

顧客に複数のオプションから選択してもらいたい場合は、WebShopAppsマトリックスプラグインの1つを使用することをお勧めします。ここに良いものがあります:

http://www.magentocommerce.com/magento-connect/webshopapps-matrixrate-1-multiple-table-rates-extension-certified-bug-free.html

それ以外の場合、値に基づいて自動計算を行うには、テーブルレートを使用して、探しているものを実現します-テーブルレートCSVの例を取得するには、次のようにします。

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

£50の無料配達オプションについては、送料無料のショッピングカート価格ルールを使用してください。

出典:http : //www.magentocommerce.com/knowledge-base/entry/how-do-i-set-up-table-rate-shipping


あなたは複数の矛盾する/同時に起こるオプションを持つことができますか?IEバイヤーは2種類の送料から選択できますか?
Henry Aspden 2013年

私は衝突します... File has not been imported. See the following list of errors: Duplicate Row #3 (Country "GBR", Region/State "*", Zip "*" and Value "0"). Duplicate Row #4 (Country "GBR", Region/State "*", Zip "*" and Value "0").
Henry Aspden 2013年

あなたが選択できることを私は知りません-それは異なるタイプの配送方法です。テーブルレートは、重量または価格、あるいはその両方に基づく自動計算です
philwinkle 2013年

この場合、WebShopAppsマトリックスプラグインのいずれかを使用することをお勧めします
philwinkle 2013年

私はNeklo.comソリューションがはるかに優れていると思います。Thebod_Shippingratesをご覧ください
アレハンドロ

8

また、モジュールを使用して2番目の定額配送方法を作成することもできます

最初に作成 app/etc/modules/Vendor_Module.xml

<?xml version="1.0"?>
<config>
    <modules>
        <Vendor_Module>
            <active>true</active>
            <codePool>local</codePool>
            <depends>
                <Mage_Core/>
                <Mage_Catalog/>
            </depends>
        </Vendor_Module>
    </modules>
</config>

次に作成しますapp/code/local/Vendor/Module/etc/config.xml

<?xml version="1.0"?>

<config>

    <modules>
        <Vendor_Module>
            <version>0.0.1</version>
        </Vendor_Module>
    </modules>

    <global>
        <models>
            <module>
                <class>Vendor_Module_Model</class>
            </module>
        </models>

        <helpers>
            <module>
                <class>Vendor_Module_Helper</class>
            </module>
        </helpers>

    </global>

    <default>
        <flatrate2>
            <active>1</active>
            <sallowspecific>0</sallowspecific>
            <model>module/carrier_flatrate2</model>
            <title>Flat Rate 2</title>
            <type>I</type>
            <specificerrmsg>This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.</specificerrmsg>
            <handling_type>F</handling_type>
        </flatrate2>
    </default>
</config>

その後に構成フィールドを追加しますapp/code/local/Vendor/Module/etc/system.xml

<?xml version="1.0"?>
<config>
    <sections>
        <carriers>
            <groups>
                <flatrate2 translate="label" module="module">
                    <label>Flat Rate 2</label>
                    <frontend_type>text</frontend_type>
                    <sort_order>21</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>
                    <fields>
                        <active translate="label">
                            <label>Enabled</label>
                            <frontend_type>select</frontend_type>
                            <source_model>adminhtml/system_config_source_yesno</source_model>
                            <sort_order>1</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </active>
                        <name translate="label">
                            <label>Method Name</label>
                            <frontend_type>text</frontend_type>
                            <sort_order>3</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </name>
                        <price translate="label">
                            <label>Price</label>
                            <frontend_type>text</frontend_type>
                            <validate>validate-number validate-zero-or-greater</validate>
                            <sort_order>5</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </price>
                        <handling_type translate="label">
                            <label>Calculate Handling Fee</label>
                            <frontend_type>select</frontend_type>
                            <source_model>shipping/source_handlingType</source_model>
                            <sort_order>7</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </handling_type>
                        <handling_fee translate="label">
                            <label>Handling Fee</label>
                            <frontend_type>text</frontend_type>
                            <validate>validate-number validate-zero-or-greater</validate>
                            <sort_order>8</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </handling_fee>
                        <sort_order translate="label">
                            <label>Sort Order</label>
                            <frontend_type>text</frontend_type>
                            <sort_order>100</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </sort_order>
                        <title translate="label">
                            <label>Title</label>
                            <frontend_type>text</frontend_type>
                            <sort_order>2</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </title>
                        <type translate="label">
                            <label>Type</label>
                            <frontend_type>select</frontend_type>
                            <source_model>adminhtml/system_config_source_shipping_flatrate</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>
                        </type>
                        <sallowspecific translate="label">
                            <label>Ship to Applicable Countries</label>
                            <frontend_type>select</frontend_type>
                            <sort_order>90</sort_order>
                            <frontend_class>shipping-applicable-country</frontend_class>
                            <source_model>adminhtml/system_config_source_shipping_allspecificcountries</source_model>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </sallowspecific>
                        <specificcountry translate="label">
                            <label>Ship to Specific Countries</label>
                            <frontend_type>multiselect</frontend_type>
                            <sort_order>91</sort_order>
                            <source_model>adminhtml/system_config_source_country</source_model>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                            <can_be_empty>1</can_be_empty>
                        </specificcountry>
                        <showmethod translate="label">
                            <label>Show Method if Not Applicable</label>
                            <frontend_type>select</frontend_type>
                            <sort_order>92</sort_order>
                            <source_model>adminhtml/system_config_source_yesno</source_model>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>0</show_in_store>
                        </showmethod>
                        <specificerrmsg translate="label">
                            <label>Displayed Error Message</label>
                            <frontend_type>textarea</frontend_type>
                            <sort_order>80</sort_order>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                        </specificerrmsg>
                    </fields>
                </flatrate2>
            </groups>
        </carriers>
    </sections>
</config>

次に、キャリアモデルを作成する必要があります。コードの重複を避けるため、このモデルは元のフラットレートキャリアを拡張し、変更が必要なフィールドのみを変更します

app/code/local/Vendor/Module/Model/Carrier/Flatrate2.php

<?php

class Vendor_Module_Model_Carrier_Flatrate2
    extends Mage_Shipping_Model_Carrier_Flatrate
    implements Mage_Shipping_Model_Carrier_Interface
{

    protected $_code = 'flatrate2';

    public function getAllowedMethods()
    {
        return array('flatrate2'=>$this->getConfigData('name'));
    }

}

最後に、ヘルパーを作成することを忘れないでください。

app/code/local/Vendor/Module/Helper/Data.php

<?php

class Vendor_Module_Helper_Data extends Mage_Core_Helper_Abstract
{
}

上記のすべての手順を実行しましたが、2番目の定額配送方法はどこにありますか?ありがとうございました。
アリシン

githubリンクを提供できます
matinict 2018

SHOPpingカートの価格設定ルールでWebshopappsマトリックスレートを使用して送料無料を提供する方法を知っている人はいますか?
宝石

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.