我使用的是magento 1.8.1 我正在使用邮政编码检查交货详情,比如检查客户区是否有送货服务,这是一般性的。
这很好。
但是现在我想做这个产品具体就像某些产品有些不同的交付细节,例如,xxx产品可在6天内获得111111邮政编码,2天内可获得222222邮政编码,33333不能发货可用等。
我想要这样的产品特定交付细节检查。
任何人都可以帮我知道这种扩展是否可用。
或任何具体的编码。
答案 0 :(得分:1)
您需要创建自己的运输模块,以告知产品是否可供交付。
检查如何创建自定义送货模块http://excellencemagentoblog.com/magento-create-custom-shipping-method
然后在功能
public function collectRates(Mage_Shipping_Model_Rate_Request $request)
{
//check your product shipping availability based on your conditions.
// set all the shipping parameter if product shipping is available.
// or set error message to display user
}
任何查询回复。 谢谢