From: fomichev Date: Tue, 18 Feb 2025 09:17:25 +0000 (+0300) Subject: Полная выгрузка X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=f07f6346fb8a468f75e130aea1c7e0b7c9f891ca;p=erp24_rep%2Fyii-erp24%2F.git Полная выгрузка --- diff --git a/erp24/views/products1c-nomenclature/index.php b/erp24/views/products1c-nomenclature/index.php index b68c2ae1..2e8fbba2 100644 --- a/erp24/views/products1c-nomenclature/index.php +++ b/erp24/views/products1c-nomenclature/index.php @@ -11,7 +11,8 @@ use yii\helpers\Url; /** @var yii\web\View $this */ /** @var yii_app\records\Products1cNomenclatureSearch $searchModel */ /** @var yii\data\ActiveDataProvider $dataProvider */ - +$fullDataProvider = clone $dataProvider; +$fullDataProvider->pagination = false; $this->title = 'Товары с категориями'; $this->params['breadcrumbs'][] = $this->title; ?> @@ -44,47 +45,35 @@ $this->params['breadcrumbs'][] = $this->title; ], ]; $exportMenu = ExportMenu::widget([ - 'dataProvider' => $dataProvider, + 'dataProvider' => $fullDataProvider, 'columns' => $gridColumns, 'exportConfig' => [ ExportMenu::FORMAT_EXCEL => [ 'label' => 'Excel', 'filename' => 'export_' . date('Y-m-d'), + 'options' => ['title' => 'Сохранить в Excel'], ], + ExportMenu::FORMAT_TEXT => false, + ExportMenu::FORMAT_HTML => false, + ExportMenu::FORMAT_CSV => false, + ExportMenu::FORMAT_PDF => false, + ], + 'showColumnSelector' => false, + 'showConfirmAlert' => false, + 'target' => GridView::TARGET_BLANK, 'dropdownOptions' => [ 'label' => 'Экспорт данных', - 'class' => 'btn btn-secondary', ], ]); ?> +

+ +

$dataProvider, 'filterModel' => $searchModel, - 'columns' => $gridColumns, - 'export' => [ - 'label' => 'Экспорт', - 'header' => '', - 'fontAwesome' => false, - 'showConfirmAlert' => false, - 'target' => GridView::TARGET_BLANK, - ], - 'exportConfig' => [ - GridView::EXCEL => [ - 'label' => 'Excel', - 'icon' => 'file-excel', - 'filename' => 'export_' . date('Y-m-d'), - 'options' => ['title' => 'Сохранить в Excel'], - ], - ], - 'toolbar' => [ - '{export}', - ], - 'panel' => [ - 'type' => GridView::TYPE_SECONDARY, - 'heading' => '

Список товаров

', - ], ]); ?>