Browse Source

Correctif commande montant positif

feature/export_comptable
Guillaume 4 years ago
parent
commit
8d5b8dda60
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ShopBundle/Services/Order/OrderUtils.php

+ 1
- 1
ShopBundle/Services/Order/OrderUtils.php View File



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


public function eventOrderShopChangeQuantity(OrderShopInterface $orderShop) public function eventOrderShopChangeQuantity(OrderShopInterface $orderShop)

Loading…
Cancel
Save