Magento运输方式表率:重量与目的地

时间:2014-10-18 09:09:54

标签: php magento magento-1.8 shipping

使用重量与目的地的餐桌费率是任何类型商店可用的最佳送货方式。

最近我试图将这个用于拥有4000个邮政编码的国家的商店。所有4000个邮政编码分为5个类别,这5个类别中的每一个都有不同的价格规则。这里的主要问题是每1000克的价格增加一定数量。

For eg, category 1:  if price is $5 for 1000gm for certain postcode, 
if the person buys 2000gm then the price will be $5+$2 = $7 ($2 for each 1000gm)
if the person buys 3000gm then the price will be $5+$2+$2 = $9

For eg, category 2:  if price is $8 for 1000gm for certain postcode, 
if the person buys 2000gm then the price will be $8+$4 = $12 ($4 for each 1000gm)
if the person buys 3000gm then the price will be $8+$4+$4 = $16

Country Region/State    Zip/PostalCode  Weight (and above)  Shipping Price
KKK        *                1009                0                   5
KKK        *                1009               1000                 7
KKK        *                1009               2000                 9
KKK        *                1010                0                   8
KKK        *                1010               1000                 12
KKK        *                1010               2000                 16

有5个类别,人可以购买任何金额。

我正在努力如何使用表格率创建这种类型的计算。有什么帮助吗?

0 个答案:

没有答案