浏览代码

[Backend] Export Evoliz : intégration code classification vente

feature/souke
Guillaume Bourgeois 1年前
父节点
当前提交
25cf867ad6
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. +5
    -2
      backend/controllers/DocumentController.php

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

@@ -38,6 +38,7 @@

namespace backend\controllers;

use common\helpers\CSV;
use common\helpers\Price;
use common\models\DeliveryNote;
use common\models\Invoice;
@@ -242,7 +243,8 @@ class DocumentController extends BackendController
'TVA',
'Total TVA',
'Total HT',
'Créateur',
'Classification vente',
'Code Classification vente',
];

foreach($document->getProductsOrders() as $productOrderArray) {
@@ -297,7 +299,8 @@ class DocumentController extends BackendController
$productOrder->taxRate->value * 100, // TVA
$tva, // Total TVA
$priceTotal, // Total HT
'', // Créateur
'', // Classification vente
'01', // Code Classification vente
];
}
}

正在加载...
取消
保存