• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/report/dashboard/sales/salesplanboard.php
  • Класс: Bitrix\Crm\Integration\Report\Dashboard\Sales\SalesPlanBoard
  • Вызов: SalesPlanBoard::get
static function get()
{
	$board = new Dashboard();
	$board->setVersion(self::VERSION);
	$board->setBoardKey(self::BOARD_KEY);
	$board->setGId(Util::generateUserUniqueId());
	$board->setUserId(0);

	$firstRow = DashboardRow::factoryWithHorizontalCells(1);
	$firstRow->setWeight(1);
	$salesTarget = self::buildSalesPlan();
	$salesTarget->setWeight($firstRow->getLayoutMap()['elements'][0]['id']);
	$firstRow->addWidgets($salesTarget);

	$board->addRows($firstRow);

	return $board;
}