Selaa lähdekoodia

Correction bug product_order avec une quantité à 0

dev
Guillaume Bourgeois 6 vuotta sitten
vanhempi
commit
a655e71cb3
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. +1
    -1
      backend/controllers/OrderController.php

+ 1
- 1
backend/controllers/OrderController.php Näytä tiedosto

@@ -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;

Loading…
Peruuta
Tallenna