Magento - 创建最低运费

发布于 2024-09-26 09:17:18 字数 124 浏览 3 评论 0原文

我们使用 USPS API 进行国际运输。 API 返回运费,我们添加 % 手续费。我们想要设置最低费用,例如,如果运费+手续费低于 5 美元,我们想要将运费设置为 ​​5 美元。这是否需要编写完整的运输模块或仅调整 USPS 模块?

We use USPS API for international shipping. The API returns a shipping cost and we add % Handling charge. We want to set a minimum charge, e.g., if shipping + handling is less than $5 we want to set the shipping price to $5. Would this require writing a full shipping module or just adapt the USPS module?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一直在等你来 2024-10-03 09:17:18

您可以通过仅覆盖 USPS 模块的一部分来实现此目的。应用处理的方法位于 Mage_Shipping_Model_Carrier_Abstract 中:

public function getFinalPriceWithHandlingFee($cost) 

要为美国覆盖此方法,请在 Mage_Usa_Model_Shipping_Carrier_Usps 上创建一个新的模型覆盖(请参阅其他地方以了解如何设置此覆盖)

class Namespace_Module_Model_Shipping_Carrier_Usps extends Mage_Usa_Model_Shipping_Carrier_Usps {

    function getFinalPriceWithHandlingFee($cost) {
        $parentValue = parent::getFinalPriceWithHandlingFee($cost);
        return max($parentValue,5);
    }
}

:将实行运费“下限”。请记住,在某些情况下,这可能会导致用户注意到奇怪的结果。举个人为的例子:

  • 头等舱 - $5.00
  • 媒体邮件 - $5.00
  • 优先邮件 - $5.33

保持光明正大,让他们知道你正在这样做。

希望有帮助!

谢谢,

You can accomplish this by overriding just a portion of the USPS module. The method that applies handling is in Mage_Shipping_Model_Carrier_Abstract:

public function getFinalPriceWithHandlingFee($cost) 

To override this method for US, create a new model override on Mage_Usa_Model_Shipping_Carrier_Usps (see elsewhere for how to set up this override):

class Namespace_Module_Model_Shipping_Carrier_Usps extends Mage_Usa_Model_Shipping_Carrier_Usps {

    function getFinalPriceWithHandlingFee($cost) {
        $parentValue = parent::getFinalPriceWithHandlingFee($cost);
        return max($parentValue,5);
    }
}

This will implement a "floor" for shipping prices. Keep in mind that this may in some cases lead to results that users notice as being odd. For contrived example:

  • First Class - $5.00
  • Media Mail - $5.00
  • Priority Mail - $5.33

Keep it aboveboard and let them know that you're doing this.

Hope that helps!

Thanks,
Joe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文