Explorar el Código

OpeningSolver : correctif

packProduct
Guillaume hace 3 años
padre
commit
3b0bd28e3d
Se han modificado 1 ficheros con 5 adiciones y 1 borrados
  1. +5
    -1
      Solver/Section/OpeningSolver.php

+ 5
- 1
Solver/Section/OpeningSolver.php Ver fichero

@@ -49,7 +49,11 @@ class OpeningSolver
if($opening) {
$now = new \DateTime();
if($weekDay == $now->format('N')) {
if($now < $opening->getTimeEnd()) {
$timeEnd = $opening->getTimeEnd();
$timeStart = $opening->getTimeStart();

if((($timeEnd && $now < $timeEnd) || !$timeEnd)
&& (($timeStart && $now > $timeStart) || !$timeStart) ) {
return true;
}
}

Cargando…
Cancelar
Guardar