瀏覽代碼

Merge branch 'dev'

prodstable
Guillaume Bourgeois 4 年之前
父節點
當前提交
5a4c9cbc14
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      backend/controllers/DistributionController.php

+ 2
- 2
backend/controllers/DistributionController.php 查看文件

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

Loading…
取消
儲存