343 lines
12 KiB
PHP
343 lines
12 KiB
PHP
<?php
|
||
/**
|
||
* @copyright Copyright (c) 2021 勾股工作室
|
||
* @license https://opensource.org/licenses/Apache-2.0
|
||
* @link https://www.gougucms.com
|
||
*/
|
||
|
||
declare (strict_types = 1);
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use app\admin\BaseController;
|
||
use app\admin\model\StoreProduct as StoreProductModel;
|
||
use app\admin\validate\StoreProductValidate;
|
||
use EasyWeChat\Factory;
|
||
use think\exception\ValidateException;
|
||
use think\facade\Db;
|
||
use think\facade\Request;
|
||
use think\facade\View;
|
||
|
||
class StoreProduct extends BaseController
|
||
|
||
{
|
||
/**
|
||
* 构造函数
|
||
*/
|
||
public function __construct()
|
||
{
|
||
$this->model = new StoreProductModel();
|
||
$this->uid = get_login_admin('id');
|
||
}
|
||
/**
|
||
* 数据列表
|
||
*/
|
||
public function datalist()
|
||
{
|
||
if (request()->isAjax()) {
|
||
$param = get_params();
|
||
$where[] = ['admin_id','=',$this->uid];
|
||
if (isset($param['keywords']) && !empty($param['keywords'])){
|
||
$where[]=['store_name','like','%'.$param['keywords'].'%'];
|
||
}
|
||
$list = $this->model->getStoreProductList($where,$param);
|
||
foreach ($list as $k=>$v){
|
||
$www['brand_id'] = $v['brand_id'];
|
||
$list[$k]['brand_id'] = Db::connect('shop')->table('eb_store_brand')->where($www)->value('brand_name');
|
||
$www2['store_category_id'] = $v['cate_id'];
|
||
$list[$k]['cate_id'] = Db::connect('shop')->table('eb_store_category')->where($www2)->value('cate_name');
|
||
}
|
||
return table_assign(0, '', $list);
|
||
}
|
||
else{
|
||
return view();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 添加
|
||
*/
|
||
public function add()
|
||
{
|
||
if (request()->isAjax()) {
|
||
$param = get_params();
|
||
// 检验完整性
|
||
try {
|
||
validate(StoreProductValidate::class)->check($param);
|
||
} catch (ValidateException $e) {
|
||
// 验证失败 输出错误信息
|
||
return to_assign(1, $e->getError());
|
||
}
|
||
$param['admin_id'] = $this->uid;
|
||
$this->model->addStoreProduct($param);
|
||
}else{
|
||
|
||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||
->select();
|
||
View::assign('store_brand', $store_brand);
|
||
return view();
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* 编辑
|
||
*/
|
||
public function edit()
|
||
{
|
||
$param = get_params();
|
||
|
||
if (request()->isAjax()) {
|
||
// 检验完整性
|
||
try {
|
||
validate(StoreProductValidate::class)->check($param);
|
||
} catch (ValidateException $e) {
|
||
// 验证失败 输出错误信息
|
||
return to_assign(1, $e->getError());
|
||
}
|
||
|
||
$this->model->editStoreProduct($param);
|
||
}else{
|
||
$product_id = isset($param['product_id']) ? $param['product_id'] : 0;
|
||
$detail = $this->model->getStoreProductById($product_id);
|
||
if (!empty($detail)) {
|
||
$detail['content'] = Db::table('cms_store_product_content')->where('product_id',$detail['product_id'])->value('content');
|
||
$detail['slider_image_arr'] = explode(',',$detail['slider_image']);
|
||
// halt($detail['slider_image_arr']);
|
||
View::assign('detail', $detail);
|
||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||
->select();
|
||
View::assign('store_brand', $store_brand);
|
||
return view();
|
||
}
|
||
else{
|
||
throw new \think\exception\HttpException(404, '找不到页面');
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* 查看信息
|
||
*/
|
||
public function read()
|
||
{
|
||
$param = get_params();
|
||
$product_id = isset($param['product_id']) ? $param['product_id'] : 0;
|
||
$detail = $this->model->getStoreProductById($product_id);
|
||
if (!empty($detail)) {
|
||
$detail['content'] = Db::table('cms_store_product_content')->where('product_id',$detail['product_id'])->value('content');
|
||
$detail['slider_image_arr'] = explode(',',$detail['slider_image']);
|
||
View::assign('detail', $detail);
|
||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||
->select();
|
||
View::assign('store_brand', $store_brand);
|
||
return view();
|
||
}
|
||
else{
|
||
throw new \think\exception\HttpException(404, '找不到页面');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 删除
|
||
* type=0,逻辑删除,默认
|
||
* type=1,物理删除
|
||
*/
|
||
public function del()
|
||
{
|
||
$param = get_params();
|
||
$product_id = isset($param['product_id']) ? $param['product_id'] : 0;
|
||
$type = isset($param['type']) ? $param['type'] : 0;
|
||
|
||
$this->model->delStoreProductById($product_id,1);
|
||
}
|
||
|
||
|
||
|
||
/**
|
||
* 商品列表
|
||
*/
|
||
public function index()
|
||
{
|
||
if (request()->isAjax()) {
|
||
$param = get_params();
|
||
$where = [];
|
||
if (isset($param['keywords']) && !empty($param['keywords'])){
|
||
$where[]=['store_name','like','%'.$param['keywords'].'%'];
|
||
}
|
||
if (isset($param['store_cate']) && !empty($param['store_cate'])){
|
||
$where[]=['cate_id','=',$param['store_cate']];
|
||
}
|
||
$list = $this->model->getStoreProductList($where,$param);
|
||
foreach ($list as $k=>$v){
|
||
$www['brand_id'] = $v['brand_id'];
|
||
$list[$k]['brand_id'] = Db::connect('shop')->table('eb_store_brand')->where($www)->value('brand_name');
|
||
$www2['store_category_id'] = $v['cate_id'];
|
||
$list[$k]['cate_id'] = Db::connect('shop')->table('eb_store_category')->where($www2)->value('cate_name');
|
||
}
|
||
return table_assign(0, '', $list);
|
||
}
|
||
else{
|
||
return view();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 购买下单页面
|
||
*/
|
||
public function buy()
|
||
{
|
||
$param = get_params();
|
||
$product_id = isset($param['product_id']) ? $param['product_id'] : 0;
|
||
$detail = $this->model->getStoreProductById($product_id);
|
||
if (!empty($detail)) {
|
||
$detail['content'] = Db::table('cms_store_product_content')->where('product_id',$detail['product_id'])->value('content');
|
||
$detail['slider_image_arr'] = explode(',',$detail['slider_image']);
|
||
View::assign('detail', $detail);
|
||
$store_brand= Db::connect('shop')->table('eb_store_brand')->where(['is_show' => 1])
|
||
->select();
|
||
View::assign('store_brand', $store_brand);
|
||
return view();
|
||
}
|
||
else{
|
||
throw new \think\exception\HttpException(404, '找不到页面');
|
||
}
|
||
}
|
||
|
||
// 请求微信接口的公用配置, 所以单独提出来
|
||
private function payment()
|
||
{
|
||
// 配置信息
|
||
$config = [
|
||
'app_id' => 'wx0b3defb62f0f910b',//注意这个APPID只能是公众号的id,没有的话要去申请,并且在微信支付平台里绑定
|
||
'mch_id' => '1635725673',//商户号
|
||
'key' => '95d195Dcf6ec66156dfeeb4E7435faef',//支付秘钥
|
||
'secret' => 'c02aa7ad9e4a5c423862e068b6cb4ad4',
|
||
'notify_url' => Request::instance()->domain().'/api/PayNotify/notify',//异步回调通知地址
|
||
];
|
||
// 这个就是 easywechat 封装的了, 一行代码搞定, 照着写就行了
|
||
$app = Factory::payment($config);
|
||
|
||
return $app;
|
||
}
|
||
// 向微信请求统一下单接口, 创建预支付订单
|
||
public function place_order()
|
||
{
|
||
$post = get_params();
|
||
$id = $post['product_id'];
|
||
$number = $post['number'];
|
||
// 因为没有先创建订单, 所以这里先生成一个随机的订单号, 存在 pay_log 里, 用来标识订单, 支付成功后再把这个订单号存到 order 表里
|
||
$order_sn = date('ymd').substr((string)time(),-5).substr(microtime(),2,5);
|
||
// 根据 id 查出价格
|
||
$where['product_id'] = $id;
|
||
Db::startTrans();//开启事务
|
||
$store_product = Db::table('cms_store_product')->where($where)->lock(true)->find();
|
||
if (empty($store_product)) {
|
||
return to_assign(0,'查询的数据不存在');
|
||
}
|
||
// 判断库存
|
||
if($store_product['stock'] < $number){
|
||
return to_assign(0,'超过库存数量');
|
||
}
|
||
|
||
$post_price = bcmul(bcmul($store_product['price'],$number),'100');
|
||
$admin_id = get_login_admin('id');
|
||
// 创建 Paylog 记录
|
||
$param =[
|
||
'appid' => 'wx0b3defb62f0f910b',
|
||
'mch_id' => '1635725673',
|
||
'out_trade_no' => $order_sn,
|
||
'product_id' => $id,
|
||
'number' => $number,
|
||
'admin_id' =>$admin_id,
|
||
];
|
||
Db::table('cms_store_product_paylog')->strict(false)->field(true)->insert($param);
|
||
add_log('buy', $id, $param);
|
||
$app = $this->payment();
|
||
|
||
$total_fee = env('APP_DEBUG') ? 1 : $post_price;
|
||
// 用 easywechat 封装的方法请求微信的统一下单接口
|
||
$result = $app->order->unify([
|
||
'trade_type' => 'NATIVE', // 原生支付即扫码支付,商户根据微信支付协议格式生成的二维码,用户通过微信“扫一扫”扫描二维码后即进入付款确认界面,输入密码即完成支付。
|
||
'body' => '采购商品-订单支付', // 这个就是会展示在用户手机上巨款界面的一句话, 随便写的
|
||
'out_trade_no' => $order_sn,
|
||
'total_fee' => $total_fee,
|
||
'spbill_create_ip' => request()->ip(), // 可选,如不传该参数,SDK 将会自动获取相应 IP 地址
|
||
]);
|
||
if ($result['result_code'] == 'SUCCESS') {
|
||
// 如果请求成功, 微信会返回一个 'code_url' 用于生成二维码
|
||
$code_url = $result['code_url'];
|
||
// 生成二维码
|
||
// 引用二维码生成方法
|
||
require '../vendor/phpqrcode/phpqrcode.php';
|
||
|
||
$errorCorrectionLevel = 'L'; //容错级别
|
||
$matrixPointSize = 5; //生成图片大小
|
||
//生成二维码图片
|
||
// 判断是否有这个文件夹 没有的话就创建一个
|
||
if(!is_dir("static/qrcode")){
|
||
// 创建文件加
|
||
mkdir("static/qrcode");
|
||
}
|
||
//设置二维码文件名
|
||
$filename = 'static/qrcode/'.time().rand(10000,9999999).'.png';
|
||
//生成二维码
|
||
\QRcode::png($code_url,$filename , $errorCorrectionLevel, $matrixPointSize, 2);
|
||
// 订单编号, 用于在当前页面向微信服务器发起订单状态查询请求
|
||
$data['order_sn'] = $order_sn;
|
||
$data['html'] = Request::instance()->domain().'/'.$filename;
|
||
Db::commit();
|
||
return to_assign(200,'操作成功',$data);
|
||
}
|
||
return to_assign(0,'操作失败');
|
||
}
|
||
|
||
// 查询订单支付状态
|
||
public function paid(Request $request)
|
||
{
|
||
$out_trade_no = get_params('out_trade_no');
|
||
|
||
$app = $this->payment();
|
||
// 用 easywechat 封装的方法请求微信
|
||
$result = $app->order->queryByOutTradeNumber($out_trade_no);
|
||
|
||
if ($result['trade_state'] === 'SUCCESS'){
|
||
return to_assign(200,'支付成功');
|
||
}else{
|
||
return to_assign(0,'未支付');
|
||
}
|
||
}
|
||
|
||
// 采购订单列表
|
||
public function order(){
|
||
if (request()->isAjax()) {
|
||
$param = get_params();
|
||
$where[] = ['a.admin_id','=',$this->uid];
|
||
if (isset($param['keywords']) && !empty($param['keywords'])){
|
||
$where[]=['b.store_name','like','%'.$param['keywords'].'%'];
|
||
}
|
||
if (isset($param['store_cate']) && !empty($param['store_cate'])){
|
||
$where[]=['b.cate_id','=',$param['store_cate']];
|
||
}
|
||
$rows = empty($param['limit']) ? get_config('app . page_size') : $param['limit'];
|
||
$list = Db::table('cms_store_product_order')
|
||
->alias('a')
|
||
->join('cms_store_product b','a.product_id = b.product_id')
|
||
->field('a.*,b.image,b.store_name')
|
||
->withAttr('paid_at',function ($value,$data){
|
||
return date('Y-m-d H:i:s',(int)$value);
|
||
})
|
||
->where($where)
|
||
->order('a.id desc,a.paid_at desc')
|
||
->paginate($rows, false, ['query' => $param]);;
|
||
return table_assign(0, '', $list);
|
||
}
|
||
else{
|
||
return view();
|
||
}
|
||
}
|
||
|
||
|
||
}
|