• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/helpers/admin/correction.php
  • Класс: BitrixSaleHelpersAdminCorrection
  • Вызов: Correction::getFilterFields
static function getFilterFields(): array
{
	return [
		[
			'id' => 'PAID',
			'name' => Loc::getMessage('SALE_F_CORRECTION_PAID'),
			'type' => 'checkbox',
			'default' => true
		],
		[
			'id' => 'DATE_BILL',
			'name' => Loc::getMessage('SALE_F_CORRECTION_DATE_BILL'),
			'type' => 'date',
		],
		[
			'id' => 'ORDER_ID',
			'name' => Loc::getMessage('SALE_F_CORRECTION_ORDER_ID'),
			'type' => 'number',
			'filterable' => '',
			'quickSearch' => ''
		],
		[
			'id' => 'CHECK_PRINTED',
			'name' => Loc::getMessage('SALE_F_CORRECTION_CHECK_PRINTED'),
			'type' => 'checkbox',
			'filterable' => '',
			'quickSearch' => '',
			'default' => true
		],
	];
}