function helper_catalogue_mass_edit_price_categorie_products_grid_build(Nosql_grid $grid, $cat_id)
{
    $grid->set_checkbox_actions('ID', 'products_checkbox[]', array('options' => NULL, 'name' => NULL));
    $grid->add_column(array('index' => 'sku', 'type' => 'text', 'tdwidth' => '9%', 'filter' => true), 'Артикул');
    $grid->add_column(array('index' => 'name', 'type' => 'text', 'filter' => true), 'Название');
    $grid->add_column(array('index' => 'price', 'type' => 'text', 'tdwidth' => '8%'), 'Цена');
    $grid->add_column(array('index' => 'special_price', 'type' => 'text', 'tdwidth' => '9%'), 'Спец. цена');
    $grid->add_column(array('index' => 'special_price_from', 'type' => 'date', 'tdwidth' => '9%'), 'С.Ц. от');
    $grid->add_column(array('index' => 'special_price_to', 'type' => 'date', 'tdwidth' => '9%'), 'С.Ц. до');
    $grid->add_column(array('index' => 'status', 'type' => 'select', 'options' => array('' => '', '0' => 'Нет', '1' => 'Да'), 'tdwidth' => '9%', 'filter' => TRUE), 'В поиске');
    $grid->add_column(array('index' => 'in_stock', 'type' => 'select', 'options' => array('' => '', '0' => 'Нет', '1' => 'Да'), 'tdwidth' => '9%', 'filter' => TRUE), 'В наличии');
    $grid->add_column(array('index' => 'sale', 'type' => 'select', 'options' => array('' => '', '0' => 'Нет', '1' => 'Да'), 'tdwidth' => '7%', 'filter' => TRUE), 'Акция');
    $grid->add_column(array('index' => 'action', 'type' => 'action', 'tdwidth' => '8%', 'option_string' => 'align="center"', 'sortable' => false, 'filter' => false, 'actions' => array(array('type' => 'link', 'html' => '', 'href' => set_url(array('catalogue', 'products', 'view', 'id', '$1')), 'href_values' => array('ID'), 'options' => array('class' => 'icon_view products_view', 'title' => 'Просмотр продукта')))), 'Действие');
}