Procházet zdrojové kódy

Correction bug product_order avec une quantité à 0

refactoring
Guillaume Bourgeois před 5 roky
rodič
revize
a655e71cb3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      backend/controllers/OrderController.php

+ 1
- 1
backend/controllers/OrderController.php Zobrazit soubor

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

Načítá se…
Zrušit
Uložit