1. 程式人生 > >magento 為支付方式新增一個 最大金額和最小金額的限制

magento 為支付方式新增一個 最大金額和最小金額的限制

在相應支付方式的etc/system.xml檔案裡新增如下程式碼即可(不填數字即不限制)
<min_order_total>
    <label>Minimum Order Total</label>
    <frontend_type>text</frontend_type>
    <sort_order>71</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</min_order_total>
<max_order_total>
    <label>Maximum Order Total</label>
    <frontend_type>text</frontend_type>
    <sort_order>72</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</max_order_total>