• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/form/schedule/violationform.php
  • Класс: BitrixTimemanFormScheduleViolationForm
  • Вызов: ViolationForm::convertToSecondsIfNoErrors
private function convertToSecondsIfNoErrors($fieldName, $saveToName)
{
	if ($this->issetValue($this->$saveToName))
	{
		return;
	}
	if (!$this->hasErrors($fieldName))
	{
		$this->$saveToName = $this->convertFormattedTimeToSeconds($this->$fieldName);
	}
	else
	{
		$this->$saveToName = -1;
	}
}