diff --git a/module/Plafond/src/View/Helper/PlafondsViewHelper.php b/module/Plafond/src/View/Helper/PlafondsViewHelper.php index 430d8a33612bd1d1969a6a705f8686463b355e6b..cd1cfacb25d9746cf3fb7ea0606b68de78a9d8e8 100755 --- a/module/Plafond/src/View/Helper/PlafondsViewHelper.php +++ b/module/Plafond/src/View/Helper/PlafondsViewHelper.php @@ -91,7 +91,9 @@ class PlafondsViewHelper extends AbstractHtmlElement $html = $this->getView()->tag('h4')->text('Plafonds'); foreach ($this->plafonds as $plafond) { - $html .= $this->affichagePlafond($plafond); + if ($plafond->getHeures() > 0) { + $html .= $this->affichagePlafond($plafond); + } } return $html;