|
@@ -4,19 +4,14 @@ namespace App\Distributor\Controllers;
|
|
|
|
|
|
|
|
|
use App\Distributor\Actions\Extensions\DistProductImportForm;
|
|
|
+use App\Distributor\Repositories\RpcAlbum;
|
|
|
+use App\Distributor\Repositories\RpcAlbumFolder;
|
|
|
use App\Distributor\Repositories\BaseProduct;
|
|
|
-use App\Admin\Repositories\BaseProductCategory;
|
|
|
-use App\Distributor\Actions\BatchCopy;
|
|
|
-use App\Distributor\Repositories\DistProductCategory;
|
|
|
use App\Libraries\CommonHelper;
|
|
|
-use Dcat\Admin\Form;
|
|
|
use Dcat\Admin\Grid;
|
|
|
use Dcat\Admin\Show;
|
|
|
-use Dcat\Admin\Http\Controllers\AdminController;
|
|
|
use Dcat\Admin\Layout\Content;
|
|
|
|
|
|
-use Dcat\Admin\Admin;
|
|
|
-
|
|
|
class ImportProductController extends AdminDistController
|
|
|
{
|
|
|
/**
|
|
@@ -59,34 +54,46 @@ class ImportProductController extends AdminDistController
|
|
|
*/
|
|
|
protected function grid()
|
|
|
{
|
|
|
- return Grid::make(BaseProduct::with(['baseProductCategory','images']), function (Grid $grid) {
|
|
|
+ return Grid::make(new RpcAlbum(), function (Grid $grid) {
|
|
|
+ $lang = config('app.locale');//当前语言
|
|
|
$grid->view('admin.grid.table');
|
|
|
$grid->column('id')->display(function () {
|
|
|
return $this->_index+1;
|
|
|
})->width('8%');
|
|
|
- $grid->column('title')->width('20%');
|
|
|
- $grid->column('sku')->width('10%');
|
|
|
- $grid->column('images')->display(function ($images) {
|
|
|
- $images = $images->toArray();
|
|
|
- $dataImages = array_column($images, 'image_url');
|
|
|
+ $grid->column('cover')->display(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
// 限制最多显示2个缩略图
|
|
|
- $dataImages = array_slice($dataImages, 0, 1);
|
|
|
- return CommonHelper::displayImage($dataImages,100);
|
|
|
+ $dataImages = array_slice($images, 0, 1);
|
|
|
+ return CommonHelper::displayImage($dataImages,100,1024,2);
|
|
|
+ });
|
|
|
+ if ($lang == 'en') {
|
|
|
+ $grid->column('title_en');
|
|
|
+ } else {
|
|
|
+ $grid->column('title');
|
|
|
+ }
|
|
|
+ $grid->column('model');
|
|
|
+ $grid->column('missing_content')->display(function ($missing_content) {
|
|
|
+ $missing_content = [];
|
|
|
+ if ($this->cover == '[]') {$missing_content[] = '主图';}
|
|
|
+ if ($this->en_detail == '[]') {$missing_content[] = '英文详情';}
|
|
|
+ if ($this->cn_detail == '[]') {$missing_content[] = '中文详情';}
|
|
|
+ if ($this->video == '[]') {$missing_content[] = '视频';}
|
|
|
+ if ($this->poster == '[]') {$missing_content[] = '海报';}
|
|
|
+ if ($this->cert == '[]') {$missing_content[] = '证书';}
|
|
|
+ if ($this->pdf == '[]') {$missing_content[] = 'PDF';}
|
|
|
+ return implode(' / ', $missing_content);
|
|
|
});
|
|
|
- $grid->column('base_product_category.name',admin_trans_label('category_name'));
|
|
|
|
|
|
- // $grid->column('keywords');
|
|
|
- // $grid->column('description');
|
|
|
- //$grid->column('created_at')->sortable();
|
|
|
- //$grid->column('issuance_date');
|
|
|
+ $grid->column('created_at')->sortable();
|
|
|
+ $grid->column('updated_at')->sortable();
|
|
|
+
|
|
|
// 筛选
|
|
|
$grid->filter(function (Grid\Filter $filter) {
|
|
|
$filter->panel();
|
|
|
$filter->expand();
|
|
|
- $filter->equal('sku')->width(2);
|
|
|
- $filter->like('title')->width(2);
|
|
|
- $filter->equal('category_id',admin_trans_label('category'))->select(BaseProductCategory::selectOptions())->width(2);
|
|
|
- //$filter->equal('enabled', admin_trans_label('enabled'))->select(admin_trans_array( config('dictionary.enabled')))->width(2);
|
|
|
+ $filter->equal('model')->width(2);
|
|
|
+ $lang = config('app.locale');//当前语言
|
|
|
+ $filter->equal('folder_id',admin_trans_label('product_category'))->select(RpcAlbumFolder::selectOptions($lang))->width(3);
|
|
|
});
|
|
|
// 删除新增按钮
|
|
|
$grid->disableCreateButton();
|
|
@@ -107,29 +114,25 @@ class ImportProductController extends AdminDistController
|
|
|
});
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * Make a show builder.
|
|
|
- *
|
|
|
- * @param mixed $id
|
|
|
- *
|
|
|
- * @return Show
|
|
|
- */
|
|
|
protected function detail($id)
|
|
|
{
|
|
|
- return Show::make($id, BaseProduct::with(['baseProductCategory','images']), function (Show $show) {
|
|
|
- // $show->field('id');
|
|
|
- $show->field('title');
|
|
|
- $show->field('sku');
|
|
|
- $show->field('base_product_category.name',admin_trans_label('category_name'));
|
|
|
- $show->field('keywords');
|
|
|
- $show->field('description');
|
|
|
- $show->field('issuance_date');
|
|
|
+ return Show::make($id, new \App\Admin\Repositories\RpcAlbum(), function (Show $show) {
|
|
|
+ $lang = config('app.locale');//当前语言
|
|
|
+ if ($lang == 'en') {
|
|
|
+ $show->field('title_en');
|
|
|
+ } else {
|
|
|
+ $show->field('title');
|
|
|
+ }
|
|
|
+
|
|
|
+ $show->field('model');
|
|
|
$show->field('parameters',admin_trans_label('attribute'))->as(function ($items) {
|
|
|
+ $items = json_decode($items);
|
|
|
if (is_array($items)) {
|
|
|
// 创建表格的表头
|
|
|
$table = '<table class="table table-bordered table-condensed">';
|
|
|
// 遍历数组并将数据填充到表格中
|
|
|
foreach ($items as $item) {
|
|
|
+ $item = (array)$item;
|
|
|
$table .= '<tr>';
|
|
|
$table .= '<td style="vertical-align: middle !important;width: 20%">' . $item['key'] . '</td>'; // 商品名称
|
|
|
$table .= '<td style="vertical-align: middle !important;">' . $item['value'] . '</td>'; // 数量
|
|
@@ -140,20 +143,76 @@ class ImportProductController extends AdminDistController
|
|
|
}
|
|
|
return ''; // 当没有数组数据时
|
|
|
})->unescape();
|
|
|
- $show->field('images')->as(function ($images) {
|
|
|
- // 开始生成 HTML
|
|
|
- $dataImages = array_column($images, 'image_url');
|
|
|
- return CommonHelper::displayImage($dataImages,150);
|
|
|
+ $show->field('cover')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ return CommonHelper::displayImage($images,150,1024,2);
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('en_detail')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ $html = '<div style="text-align: center">';
|
|
|
+ foreach ($images as $key => $image) {
|
|
|
+ $url = CommonHelper::albumUrl($image);
|
|
|
+ $html .= '<img src="' . $url . '" style="max-width:90%;margin-bottom:10px">';
|
|
|
+ }
|
|
|
+ $html .= '</div>';
|
|
|
+ return $html;
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('cn_detail')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ $html = '<div style="text-align: center">';
|
|
|
+ foreach ($images as $key => $image) {
|
|
|
+ $url = CommonHelper::albumUrl($image);
|
|
|
+ $html .= '<img src="' . $url . '" style="max-width:90%;margin-bottom:10px">';
|
|
|
+ }
|
|
|
+ $html .= '</div>';
|
|
|
+ return $html;
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('video')->as(function ($items) {
|
|
|
+ $items = json_decode($items);
|
|
|
+ return CommonHelper::displayVideo($items,'cover','video_src','150',2);
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('poster')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ return CommonHelper::displayImage($images,150,1024,2);
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('cert')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ return CommonHelper::displayImage($images,150,1024,2);
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
+ $show->field('cert')->as(function ($images) {
|
|
|
+ $images = json_decode($images);
|
|
|
+ return CommonHelper::displayImage($images,150,1024,2);
|
|
|
})->unescape();
|
|
|
- $show->field('content')->unescape();
|
|
|
- $show->field('seo_title');
|
|
|
- $show->field('seo_keywords');
|
|
|
- $show->field('seo_description');
|
|
|
- $show->field('created_at');
|
|
|
- //$show->field('updated_at');
|
|
|
+
|
|
|
+ $show->field('pdf')->as(function ($items) {
|
|
|
+ $items = json_decode($items);
|
|
|
+ if (is_array($items)) {
|
|
|
+ // 创建表格的表头
|
|
|
+ $table = '<table class="table table-bordered table-condensed">';
|
|
|
+ // 遍历数组并将数据填充到表格中
|
|
|
+ foreach ($items as $item) {
|
|
|
+ $table .= '<tr>';
|
|
|
+ $table .= '<td style="vertical-align: middle !important;width: 20%">' . $item->pdf_title . '</td>'; // 商品名称
|
|
|
+ $table .= '<td style="vertical-align: middle !important;"><a target="_blank" href="' . CommonHelper::albumUrl($item->pdf_src). '">查看</a></td>'; // 数量
|
|
|
+ $table .= '</tr>';
|
|
|
+ }
|
|
|
+ $table .= '</table>';
|
|
|
+ return $table;
|
|
|
+ }
|
|
|
+ return ''; // 当没有数组数据时
|
|
|
+ })->unescape();
|
|
|
+
|
|
|
// 禁用操作
|
|
|
$show->disableEditButton();
|
|
|
$show->disableDeleteButton();
|
|
|
+
|
|
|
+
|
|
|
});
|
|
|
}
|
|
|
|