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.
289 lines
9.5 KiB
289 lines
9.5 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
|
// +----------------------------------------------------------------------
|
|
// | Author: 萤火科技 <admin@yiovo.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types=1);
|
|
|
|
namespace app\admin\controller;
|
|
|
|
use think\db\exception\DbException;
|
|
use think\response\Json;
|
|
use cores\exception\BaseException;
|
|
use app\store\model\Goods as GoodsModel;
|
|
use app\store\model\GoodsCategoryRel;
|
|
use app\store\model\GoodsSku;
|
|
|
|
/**
|
|
* 商品管理控制器
|
|
* Class Goods
|
|
* @package app\store\controller
|
|
*/
|
|
class Goods extends Controller
|
|
{
|
|
/**
|
|
* 强制验证当前访问的控制器方法method
|
|
* @var array
|
|
*/
|
|
protected array $allowAllAction = [
|
|
"goods/export",
|
|
];
|
|
/**
|
|
* 商品列表
|
|
* @return Json
|
|
* @throws DbException
|
|
*/
|
|
public function list(): Json
|
|
{
|
|
// 获取列表记录
|
|
$model = new GoodsModel;
|
|
$params = $this->request->param();
|
|
$params['store_id'] = 0;
|
|
$params['role'] = $this->admin['user']['role'];
|
|
$list= $model->getAdminList($params);
|
|
return $this->renderSuccess(compact('list'));
|
|
}
|
|
|
|
/**
|
|
* 根据商品ID集获取列表记录
|
|
* @param array $goodsIds
|
|
* @return Json
|
|
*/
|
|
public function listByIds(array $goodsIds): Json
|
|
{
|
|
// 获取列表记录
|
|
$model = new GoodsModel;
|
|
$list = $model->getListByIds($goodsIds);
|
|
return $this->renderSuccess(compact('list'));
|
|
}
|
|
|
|
/**
|
|
* 商品详情(详细信息)
|
|
* @param int $goodsId
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function detail(int $goodsId): Json
|
|
{
|
|
// 获取商品详情
|
|
$model = new GoodsModel;
|
|
$goodsInfo = $model->getDetail($goodsId);
|
|
return $this->renderSuccess(compact('goodsInfo'));
|
|
}
|
|
|
|
/**
|
|
* 商品详情(基础信息)
|
|
* @param int $goodsId
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function basic(int $goodsId): Json
|
|
{
|
|
// 获取商品详情
|
|
$model = new GoodsModel;
|
|
$detail = $model->getBasic($goodsId);
|
|
return $this->renderSuccess(compact('detail'));
|
|
}
|
|
|
|
/**
|
|
* 添加商品
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function add(): Json
|
|
{
|
|
$model = new GoodsModel;
|
|
if ($model->add($this->postForm())) {
|
|
return $this->renderSuccess('添加成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '添加失败');
|
|
}
|
|
|
|
/**
|
|
* 商品编辑
|
|
* @param int $goodsId
|
|
* @return Json
|
|
* @throws BaseException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function edit(int $goodsId): Json
|
|
{
|
|
// 商品详情
|
|
$model = GoodsModel::detail($goodsId);
|
|
// 更新记录
|
|
if ($model->edit($this->postForm(), $model)) {
|
|
return $this->renderSuccess('更新成功');
|
|
}
|
|
return $this->renderError($model->getError() ?: '更新失败');
|
|
}
|
|
|
|
/**
|
|
* 修改商品状态(上下架)
|
|
* @param array $goodsIds 商品id集
|
|
* @param bool $state 为true表示上架
|
|
* @return Json
|
|
*/
|
|
public function state(array $goodsIds, int $is_pool): Json
|
|
{
|
|
$model = new GoodsModel;
|
|
if (!$model->setIsPool($goodsIds, $is_pool)) {
|
|
return $this->renderError($model->getError() ?: '操作失败');
|
|
}
|
|
return $this->renderSuccess('操作成功');
|
|
}
|
|
/**
|
|
* 修改商品状态(上下架)
|
|
* @param array $goodsIds 商品id集
|
|
* @param bool $state 为true表示上架
|
|
* @return Json
|
|
*/
|
|
public function sale(array $goodsIds, int $is_sale): Json
|
|
{
|
|
$model = new GoodsModel;
|
|
if (!$model->setIsSale($goodsIds, $is_sale)) {
|
|
return $this->renderError($model->getError() ?: '操作失败');
|
|
}
|
|
return $this->renderSuccess('操作成功');
|
|
}
|
|
|
|
/**
|
|
* 修改商品状态(上下架)
|
|
* @param array $goodsIds 商品id集
|
|
* @param bool $state 为true表示上架
|
|
* @return Json
|
|
*/
|
|
public function category(array $goodsIds, array $categoryIds): Json
|
|
{
|
|
$model = new GoodsModel;
|
|
|
|
foreach ($goodsIds as $key => $goodsId) {
|
|
\app\store\model\GoodsCategoryRel::updates($goodsId, $categoryIds);
|
|
}
|
|
|
|
return $this->renderSuccess('操作成功');
|
|
}
|
|
/**
|
|
* 删除商品
|
|
* @param array $goodsIds
|
|
* @return Json
|
|
*/
|
|
public function delete(array $goodsIds): Json
|
|
{
|
|
$model = new GoodsModel;
|
|
if (!$model->setDelete($goodsIds)) {
|
|
return $this->renderError($model->getError() ?: '删除失败');
|
|
}
|
|
return $this->renderSuccess('删除成功');
|
|
}
|
|
|
|
public function export(){
|
|
$model = new GoodsModel;
|
|
$params = $this->request->param();
|
|
$params['store_id'] = 0;
|
|
$list = $model->getAdminListExport($params)->toArray();
|
|
|
|
set_time_limit(0);
|
|
ini_set('memory_limit', '1024M');
|
|
$columns = ['系统编码','标题','型号','价格库存链接','成本价','库存','详细图市场价链接','前台价',"发货区域","商品备注"]; //设置好告诉浏览器要下载excel文件的headers
|
|
header('Content-Encoding: UTF-8');
|
|
header('Content-Type: application/vnd.ms-excel;charset=UTF-8');
|
|
header('Content-Disposition: attachment; filename="导出数据-'.date('Y-m-d', time()).'.csv"');
|
|
|
|
$fp = fopen('php://output', 'a');//打开output流
|
|
//添加BOM头,以UTF8编码导出CSV文件,如果文件头未添加BOM头,打开会出现乱码。
|
|
fwrite($fp, chr(0xEF).chr(0xBB).chr(0xBF));
|
|
|
|
//mb_convert_variables('GBK', 'UTF-8', $columns);
|
|
fputcsv($fp, $columns);//将数据格式化为CSV格式并写入到output流中
|
|
|
|
//获取总数,分页循环处理
|
|
$accessNum = $list['total'];
|
|
|
|
$perSize = 1000;
|
|
$pages = ceil($accessNum / $perSize);
|
|
for($i = 1; $i <= $pages; $i++) {
|
|
$params['page'] = $i;
|
|
$db_data = $list = $model->getAdminListExport($params)->toArray();
|
|
// echo "<pre>";
|
|
// print_r($db_data);
|
|
// exit;
|
|
foreach($db_data['data'] as $key => $value) {
|
|
//$rowData = []; //获取每列数据,转换处理成需要导出的数据
|
|
//需要格式转换,否则会乱码
|
|
//mb_convert_variables('GBK', 'UTF-8', $rowData);
|
|
fputcsv($fp, $value);
|
|
}
|
|
unset($db_data);//刷新输出缓冲到浏览器
|
|
ob_flush();//必须同时使用 ob_flush() 和flush() 函数来刷新输出缓冲。
|
|
flush();
|
|
}
|
|
fclose($fp);
|
|
exit();
|
|
|
|
//return $this->renderSuccess(compact('list'));
|
|
}
|
|
|
|
/**
|
|
* 加价
|
|
* [addPrice description]
|
|
* @param array $categoryIds [description]
|
|
* @param int $rate [description]
|
|
*/
|
|
public function addPrice(array $categoryIds, int $rate){
|
|
$goods = GoodsCategoryRel::whereIn('category_id',$categoryIds)->where('store_id', 0)->select()->toArray();
|
|
if (!$goods) {
|
|
return $this->renderSuccess('没有需要加价的商品');
|
|
}
|
|
$goods = GoodsModel::whereIn('goods_id', array_column($goods, "goods_id"))->where('store_id', 0)->select()->toArray();
|
|
if (!$goods) {
|
|
return $this->renderSuccess('没有需要加价的商品');
|
|
}
|
|
foreach ($goods as $key => $value) {
|
|
$net_price = round($value['goods_price_min'] / (1 - ($rate / 100)), 0);
|
|
$profit = (float)$net_price - (float)$value['cost_price_min'];
|
|
$profit_rate = (float)$net_price > 0 ? bcmul((string)($profit / (float)$net_price) , (string)100, 2) : 0.00;
|
|
$goodsData = [
|
|
'goods_price_min' => $net_price,
|
|
'goods_price_max' => $net_price,
|
|
'line_price_min' => $net_price,
|
|
'line_price_max' => $net_price,
|
|
'profit_rate' => $profit_rate,
|
|
'profit' => $profit,
|
|
'update_time' => time()
|
|
];
|
|
GoodsModel::where('goods_id', $value['goods_id'])->where('store_id', 0)->update($goodsData);
|
|
$goodsSkuData = [
|
|
'goods_price' => $net_price,
|
|
'update_time' => time()
|
|
];
|
|
GoodsSku::where('goods_id', $value['goods_id'])->where('store_id', 0)->update();
|
|
}
|
|
return $this->renderSuccess('加价成功');
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|