瀏覽代碼

[Administration] Export commandes PDF : correctif problème caractère "<" dans le nom des produits

feature/souke
Guillaume Bourgeois 11 月之前
父節點
當前提交
1c8705375c
共有 1 個檔案被更改,包括 5 行新增1 行删除
  1. +5
    -1
      common/logic/Product/Product/Service/ProductSolver.php

+ 5
- 1
common/logic/Product/Product/Service/ProductSolver.php 查看文件

@@ -188,7 +188,11 @@ class ProductSolver extends AbstractService implements SolverInterface
return $product->reference;
}

return $product->name;
$productName = $product->name;
// le caractère "<" crée un problème dans le récapitulatif PDF des commandes
$productName = str_replace('<', '', $productName);

return $productName;
}

public function isProductActiveByDay(Product $product, string $day): bool

Loading…
取消
儲存