Ver código fonte

Correction bug product_order avec une quantité à 0

refactoring
Guillaume Bourgeois 5 anos atrás
pai
commit
a655e71cb3
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      backend/controllers/OrderController.php

+ 1
- 1
backend/controllers/OrderController.php Ver arquivo

@@ -877,7 +877,7 @@ class OrderController extends BackendController

foreach ($products as $key => $quantity) {
$product = Product::findOne($key);
if ($product) {
if ($product && $quantity) {
$productOrder = new ProductOrder;
$productOrder->id_order = $order->id;
$productOrder->id_product = $key;

Carregando…
Cancelar
Salvar