Nopcommerce 更改运输规则代码
我正在使用 nopcommerce 一个开源购物车系统。我想更改运输规则,即如果有人购买低于 1000 美元的产品,则他必须支付 10 卢比的运费,否则不收取运费。我想通过代码来做到这一点。请帮我。
I am using nopcommerce a open source shopping cart system. I want to change the shipping rules i.e. if any one buy a product of less than $1000 then he must pay a shipping charges of rupee $10 otherwise no shipping charges will apply. i want to do this through code. please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该创建一个新的运费计算方法插件。请查看 IShippingRateComputationMethod 接口。将所有必需的逻辑放入“GetShippingOptions”方法中。
You should create a new shipping rate computation method plugin. Please have a look at IShippingRateComputationMethod interface. Put all required logic into 'GetShippingOptions' method.
Nopcommerce 为运输规则“Shipping.Director”提供了一个新插件,您可以在其中编写自己的运输表达式,您应该尝试一个参考链接
http://www.noptools.com/
Nopcommerce has provide a new plugin for shipping rule "Shipping.Director" where you can write your own Expression for shipping you should try that one reference link
http://www.noptools.com/