Commit f4ac4a1e authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Correction AgentQuotite::isEnCours probleme de logique

parent 1eccc9dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -105,7 +105,7 @@ class AgentQuotite
    {
        $date = $date ? : $this->getDateTime();
        if ($date < $this->getDebut()) return false;
        if ($this->getFin() !== null and $date < $this->getFin()) return false;
        if ($this->getFin() !== null and $date > $this->getFin()) return false;
        return true;
    }
}
 No newline at end of file