• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/classes/general/timeman_report_full.php
  • Класс: CUserReportFull
  • Вызов: CUserReportFull::isSubmitDateReportSameMonth
private function isSubmitDateReportSameMonth(int $lastReportDate, int $submitDay): bool
{
	if ($this->isLastDayOfMonth($lastReportDate))
	{
		return false;
	}

	if ($this->isPreviousReport($lastReportDate, $submitDay))
	{
		return true;
	}
	else
	{
		return false;
	}
}