Преглед изворни кода

OpeningSolver : correctif

packProduct
Guillaume пре 2 година
родитељ
комит
3b0bd28e3d
1 измењених фајлова са 5 додато и 1 уклоњено
  1. +5
    -1
      Solver/Section/OpeningSolver.php

+ 5
- 1
Solver/Section/OpeningSolver.php Прегледај датотеку

@@ -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;
}
}

Loading…
Откажи
Сачувај