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

[backend] Abonnements : correction correspondance avec les dates de distribution futures

dev
Guillaume Bourgeois пре 5 година
родитељ
комит
c54d7688a8
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      common/models/Subscription.php

+ 1
- 1
common/models/Subscription.php Прегледај датотеку

@@ -321,7 +321,7 @@ class Subscription extends ActiveRecordCommon
] ;
$nbDays = (strtotime($date) - strtotime($this->date_begin)) / (24 * 60 * 60);
if ($nbDays % ($this->week_frequency * 7) < 7) {
if (round($nbDays) % ($this->week_frequency * 7) < 7) {
$numDay = date('N', strtotime($date));
$day = $arrayDays[$numDay] ;
if ($this->$day) {

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