浏览代码

Correctif commande montant positif

feature/export_comptable
Guillaume 4 年前
父节点
当前提交
8d5b8dda60
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      ShopBundle/Services/Order/OrderUtils.php

+ 1
- 1
ShopBundle/Services/Order/OrderUtils.php 查看文件

@@ -356,7 +356,7 @@ class OrderUtils

public function isOrderShopPositiveAmount(OrderShopInterface $orderShop)
{
return $this->priceUtils->getTotalWithTax($orderShop) > 0 ;
return $this->priceUtils->getTotalWithTax($orderShop) >= 0 ;
}

public function eventOrderShopChangeQuantity(OrderShopInterface $orderShop)

正在加载...
取消
保存