• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/notify.php
  • Класс: BitrixSaleNotify
  • Вызов: Notify::convertDateFieldToOldFormat
static function convertDateFieldToOldFormat($value)
{
	$setValue = $value;

	if ($value instanceof MainTypeDate)
	{
		$setValue = $value->toString();
	}

	return $setValue;
}