function helper_orders_grid_build(Grid $grid)
{
    $grid->add_button('Добавить заказ', set_url('*/*/add'), array('rel' => 'add', 'class' => 'addButton'));
    $grid->add_column(array('index' => 'orders_number', 'searchname' => 'orders_number', 'searchtable' => 'A', 'type' => 'number', 'tdwidth' => '13%', 'sortable' => true, 'filter' => true), 'Номер заказа');
    $grid->add_column(array('index' => 'name', 'type' => 'text', 'tdwidth' => '20%', 'filter' => true), 'Имя покупателя');
    $grid->add_column(array('index' => 'total', 'type' => 'text'), 'Сумма');
    $grid->add_column(array('index' => 'create_date', 'type' => 'date', 'tdwidth' => '11%', 'sortable' => true, 'filter' => true), 'Создан');
    $grid->add_column(array('index' => 'update_date', 'type' => 'date', 'tdwidth' => '11%', 'sortable' => true, 'filter' => true), 'Обновлен');
    $grid->add_column(array('index' => 'orders_state', 'type' => 'select', 'options' => array('' => '') + Morders::get_order_state_collection(), 'tdwidth' => '14%', 'filter' => true), 'Состояние');
    $grid->add_column(array('index' => 'action', 'type' => 'action', 'tdwidth' => '10%', 'option_string' => 'align="center"', 'sortable' => false, 'filter' => false, 'actions' => array(array('type' => 'link', 'html' => '', 'href' => set_url(array('*', '*', 'view', 'ord_id', '$1')), 'href_values' => array('ID'), 'options' => array('class' => 'icon_view', 'title' => 'Просмотр')))), 'Actions');
}
Example #2
0
function helper_customer_orders_grid_build($grid)
{
    $grid->add_column(array('index' => 'orders_number', 'searchname' => 'orders_number', 'searchtable' => 'A', 'type' => 'number', 'tdwidth' => '16%', 'sortable' => true, 'filter' => true), 'Номер заказа');
    $grid->add_column(array('index' => 'total', 'type' => 'text'), 'Сумма');
    $grid->add_column(array('index' => 'create_date', 'type' => 'date', 'tdwidth' => '13%', 'sortable' => true, 'filter' => true), 'Создан');
    $grid->add_column(array('index' => 'update_date', 'type' => 'date', 'tdwidth' => '13%', 'sortable' => true, 'filter' => true), 'Обновлен');
    $grid->add_column(array('index' => 'orders_state', 'searchname' => 'orders_state', 'searchtable' => 'A', 'type' => 'select', 'options' => array('' => '') + Morders::get_order_state_collection(), 'tdwidth' => '14%', 'filter' => true), 'Состояние');
    $grid->add_column(array('index' => 'action', 'type' => 'action', 'tdwidth' => '10%', 'option_string' => 'align="center"', 'sortable' => false, 'filter' => false, 'actions' => array(array('type' => 'link', 'html' => '', 'href' => set_url(array('sales', 'orders', 'view', 'ord_id', '$1')), 'href_values' => array('ID'), 'options' => array('class' => 'icon_view', 'title' => 'Просмотр', 'target' => '_blank')))), 'Действия');
}