nk-lihaink-cn/app/api/controller/StoreProduct.php
2023-02-21 17:03:11 +08:00

121 lines
4.3 KiB
PHP

<?php
namespace app\api\controller;
use app\api\BaseController;
use app\api\middleware\Auth;
use think\exception\ValidateException;
use think\facade\Db;
/**
* 商品接口
*/
class StoreProduct extends BaseController
{
/**
* 控制器中间件 [不需要鉴权]
* @var array
*/
protected $middleware = [
Auth::class => ['except' => ['list','add'] ]
];
/**
* 商品列表
*/
public function list($page=0,$limit=10){
$post = get_params();
$where[] = ['status','=',1];
$where[] = ['is_del','=',0];
$where[] = ['is_show','=',1];
if(empty($post['mer_id'])){
$this->apiError('缺少参数');
}
$log = Db::table('cms_store_add_log')->where('mer_id',$post['mer_id'])->column('product_id');
if($log){
$where[] = ['product_id','not in',$log];
}
$res = Db::table('cms_store_product')
->where($where)
->page($page,$limit)
->order('sort desc id desc')
->select();
$this->apiSuccess('OK',$res);
}
/**
* 一键导入商品
*/
public function add(){
$post = get_params();
if(empty($post['mer_id']) || empty($post['product_ids'])){
$this->apiError('缺少参数');
}
Db::startTrans();
try {
$where[] = ['product_id','in',$post['product_ids']];
$data = Db::table('cms_store_product')->where($where)->select()->toArray();
if($data){
$day = date('Y-m-d H:i:s');
$log['mer_id'] = $post['mer_id'];
$log['create_time'] = $day;
foreach ($data as $k =>$v){
//写入导入记录
$log['product_id'] = $v['product_id'];
Db::table('cms_store_add_log')->insert($log);
$old_product_id = $v['product_id'];
unset($v['product_id']);
//导入商品表
$v['mer_id'] = $post['mer_id'];
$product_id = Db::connect('shop')->table('eb_store_product')->insertGetId($v);
// 写入商品搜索信息表
$store_spu['mer_id'] = $post['mer_id'];
$store_spu['product_id'] = $product_id;
$store_spu['status'] = 1;
$store_spu['store_name'] = $v['store_name'];
$store_spu['keyword'] = $v['mer_id'];
$store_spu['price'] = $v['price'];
$store_spu['rank'] = $v['sort'];
$store_spu['create_time'] = $day;
$store_spu['temp_id'] = $v['temp_id'];
Db::connect('shop')->table('eb_store_spu')->insert($store_spu);
// 写入商品详情表
$ccc = Db::table('cms_store_product_content')->where('product_id',$old_product_id)->value('content');
$content['content'] = $ccc ??'';
$content['product_id'] = $product_id;
Db::connect('shop')->table('eb_store_product_content')->insert($content);
// 写入SKU表
$attr['product_id'] = $product_id;
$attr['sku'] = ' '; //库存
$attr['stock'] = $v['stock']; //库存
$attr['image'] = $v['image'];
$attr['cost'] = $v['cost'];//成本价
$attr['ot_price'] = $v['ot_price'];//原价
$attr['price'] = $v['price'];//价格
$attr['unique'] = set_salt(12);//唯一值
$attr['svip_price'] = $v['svip_price'];//会员价
Db::connect('shop')->table('eb_store_product_attr_value')->insert($attr);
// 写入商品商户分类关联表
$cate['product_id'] = $product_id;
$cate['mer_cate_id'] = $v['cate_id'];
$cate['mer_id'] = $post['mer_id'];
Db::connect('shop')->table('eb_store_product_cate')->insert($cate);
}
}
Db::commit();
$this->apiSuccess('操作成功');
} catch (ValidateException $e) {
Db::rollback();
$this->apiError($e->getMessage());
}
}
}