@ -16,6 +16,8 @@ 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;
/**
* 商品管理控制器
@ -151,7 +153,7 @@ class Goods extends Controller
}
return $this->renderSuccess('操作成功');
}
/**
* 修改商品状态(上下架)
* @param array $goodsIds 商品id集
@ -186,10 +188,84 @@ class Goods extends Controller
$model = new GoodsModel;
$params = $this->request->param();
$params['store_id'] = 0;
$list= $model->getAdminList($params);
return $this->renderSuccess(compact('list'));
$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('加价成功');
}