Explorar el Código

[backend] Tiller : adaptation au système de TVA

dev
Guillaume Bourgeois hace 4 años
padre
commit
bca8a151fe
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      backend/controllers/DistributionController.php

+ 2
- 2
backend/controllers/DistributionController.php Ver fichero

@@ -942,8 +942,8 @@ class DistributionController extends BackendController
foreach ($order->productOrder as $productOrder) {
$lines[] = [
'name' => $productOrder->product->name,
'price' => $productOrder->price * 100 * $productOrder->quantity,
'tax' => 5.5,
'price' => $productOrder->getPriceWithTax() * 100 * $productOrder->quantity,
'tax' => $productOrder->taxRate->value * 100,
'date' => $strDate,
'quantity' => $productOrder->quantity
];

Cargando…
Cancelar
Guardar