You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\store\controller\goods;
|
|
|
|
use think\response\Json;
|
|
use app\store\controller\Controller;
|
|
use app\store\model\goods\Import as ImportModel;
|
|
use cores\exception\BaseException;
|
|
|
|
/**
|
|
* 商品批量导入管理
|
|
* Class Import
|
|
* @package app\store\controller\goods
|
|
*/
|
|
class Import extends Controller
|
|
{
|
|
/**
|
|
* 获取列表记录
|
|
* @return Json
|
|
* @throws \think\db\exception\DbException
|
|
*/
|
|
public function list(): Json
|
|
{
|
|
$model = new ImportModel;
|
|
$params = $this->request->param();
|
|
$params['merchant_id'] = $this->merchantId;
|
|
$list = $model->getList($params);
|
|
return $this->renderSuccess(compact('list'));
|
|
}
|
|
|
|
/**
|
|
* 执行批量导入
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \PhpOffice\PhpSpreadsheet\Exception
|
|
* @throws \PhpOffice\PhpSpreadsheet\Reader\Exception
|
|
*/
|
|
public function batch(): Json
|
|
{
|
|
$form = $this->postData();
|
|
$form['store_id'] = $this->storeId;
|
|
$form['merchant_id'] = $this->merchantId;
|
|
// 新增记录
|
|
$model = new ImportModel;
|
|
if ($model->storeBatch($form)) {
|
|
return $this->renderSuccess('已添加到导入任务中,请在历史导入记录中查看结果');
|
|
}
|
|
return $this->renderError($model->getError() ?: '操作失败');
|
|
}
|
|
|
|
/**
|
|
* 删除记录
|
|
* @param int $id
|
|
* @return Json
|
|
*/
|
|
public function delete(int $id): Json
|
|
{
|
|
$model = ImportModel::detail($id);
|
|
if (!$model->setDelete()) {
|
|
return $this->renderError($model->getError() ?: '删除失败');
|
|
}
|
|
return $this->renderSuccess('删除成功');
|
|
}
|
|
}
|
|
|