瀏覽代碼

[backend] Bug point de vente invisible dans report si horaire non défini pour ce jour

dev
Guillaume Bourgeois 5 年之前
父節點
當前提交
429fcbf686
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      backend/views/distribution/report.php

+ 2
- 2
backend/views/distribution/report.php 查看文件

@@ -46,7 +46,7 @@ $html = '' ;

// par point de vente
foreach ($pointsSaleArray as $pointSale) {
if (count($pointSale->orders) && strlen($pointSale->$fieldInfosPointSale)) {
if (count($pointSale->orders)) {
$html .= '<h3>'.$pointSale->name.'</h3>' ;
$colCredit = ($pointSale->credit) ? '<th>Rappel crédit</th>' : '' ;
@@ -167,7 +167,7 @@ $html .= '<table class="table table-bordered">'
$revenues = 0 ;
foreach ($pointsSaleArray as $pointSale)
{
if (count($pointSale->orders) && strlen($pointSale->$fieldInfosPointSale))
if (count($pointSale->orders))
{
$html .= '<tr><td>'.$pointSale->name.'</td><td>' ;
foreach ($productsArray as $product) {

Loading…
取消
儲存