最高运费prestashop 1.7

时间:2018-07-11 09:46:04

标签: max prestashop shipping

如何在PrestaShop 1.7中设置每199个的最大发货量 可能更小,但不能超过199 在哪个文件中查找与货运量相对应的变量?

1 个答案:

答案 0 :(得分:0)

覆盖getPackageShippingCost()类中的函数Cart

class Cart extends CartCore 
{
    public function getPackageShippingCost($id_carrier = null, $use_tax = true, Country $default_country = null, $product_list = null, $id_zone = null)
    {
        $shipping_cost = parent::getPackageShippingCost($id_carrier, $use_tax, $default_country, $product_list, $id_zone);

        if ($shipping_cost > 199) {
            return 199;
        }
    }
}

记住要删除class_index.php并清除缓存。