Преглед изворни кода

[Backend] Distributions > édition commande : problème chargement prix #659

prodstable
Guillaume Bourgeois пре 2 година
родитељ
комит
0850651064
1 измењених фајлова са 10 додато и 8 уклоњено
  1. +10
    -8
      backend/controllers/DistributionController.php

+ 10
- 8
backend/controllers/DistributionController.php Прегледај датотеку



$quantity = 0; $quantity = 0;
$invoicePrice = null; $invoicePrice = null;
foreach ($order->productOrder as $productOrder) {
if ($productOrder->id_product == $product['id']) {
if ($productOrder->invoice_price) {
$invoicePrice = number_format($productOrder->invoice_price, 2);
} else {
$invoicePrice = number_format($productOrder->price, 3);
}


$quantity = $productOrder->quantity;
if(isset($order->productOrder)) {
foreach ($order->productOrder as $productOrder) {
if ($productOrder->id_product == $product['id']) {
if ($productOrder->invoice_price) {
$invoicePrice = number_format($productOrder->invoice_price, 2);
} else {
$invoicePrice = number_format($productOrder->price, 3);
}
$quantity = $productOrder->quantity;
}
} }
} }



Loading…
Откажи
Сачувај