Magento table 运费 - 从运费中排除某些地区

Magento table rate shipping - exclude some regions from shipping

我在 Magento 1.9 中设置了 table 运费。我需要将某些地区排除在运输范围之外。

例如,在 CSV 中有 2 行,格式如下:

Country code - Region - postal - thrashhold - shipping cost
1. FR     - Corsica -   * -         0   -            18
2. *      -  *      -   * -         0   -            50

目前,如果我 select 法国 - 科西嘉岛的运费计算器,那么 returns 运费为 18,这是正确的。如果我 select 法国 - 任何其他地区然后它显示运费 50,这不是要求。是否可以限制其他地区,如果我 select 法国 - 任何其他地区?

根据您的 CSV 格式条件,第 2 行适用于除 FR-Corsica.You 之外的所有位置,需要删除第二行然后它必须按预期工作。

我想,我明白了。我需要从表中删除区域:directory_country_region 和 directory_country_region_name,然后它不会为 select 法国其他地区提供选项。那么这些地区可以限制发货。

仅更改行的顺序

示例:

   Country code - Region - postal - thrashhold - shipping cost
1. *       -      *          -         * -         0 -     50
2. FR      -      Corsica    -         * -         0 -     18