mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
184 lines
7.3 KiB
PHP
184 lines
7.3 KiB
PHP
<?php
|
|
|
|
namespace app\data\controller;
|
|
|
|
use app\data\service\OrderService;
|
|
use think\admin\Controller;
|
|
use think\exception\HttpResponseException;
|
|
|
|
/**
|
|
* 订单数据管理
|
|
* Class ShopOrder
|
|
* @package app\data\controller
|
|
*/
|
|
class ShopOrder extends Controller
|
|
{
|
|
/**
|
|
* 绑定数据表
|
|
* @var string
|
|
*/
|
|
private $table = 'ShopOrder';
|
|
|
|
/**
|
|
* 订单数据管理
|
|
* @auth true
|
|
* @menu true
|
|
* @return \think\admin\helper\QueryHelper
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function index()
|
|
{
|
|
$this->title = '订单数据管理';
|
|
// 状态数据统计
|
|
$this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 'ta' => 0];
|
|
$this->app->db->name($this->table)->fieldRaw('status,count(1) total')->group('status')->select()->map(function ($vo) {
|
|
$this->total["t{$vo['status']}"] = $vo['total'];
|
|
$this->total["ta"] += $vo['total'];
|
|
});
|
|
// 订单列表查询
|
|
$query = $this->_query($this->table);
|
|
$query->equal('status,payment_type,payment_status');
|
|
$query->dateBetween('create_at,payment_datetime,cancel_datetime,truck_datetime,truck_send_datetime');
|
|
$query->like('order_no,truck_name,truck_phone,truck_province|truck_area|truck_address#address,truck_send_no,truck_send_name');
|
|
// 会员搜索查询
|
|
$db = $this->_query('DataMember')->like('phone#member_phone,nickname#member_nickname')->db();
|
|
if ($db->getOptions('where')) $query->whereRaw("mid in {$db->fieldRaw('id')->buildSql()}");
|
|
// 推荐人搜索查询
|
|
$db = $this->_query('DataMember')->like('phone#from_phone,nickname#from_nickname')->db();
|
|
if ($db->getOptions('where')) $query->whereRaw("from in {$db->fieldRaw('id')->buildSql()}");
|
|
// 列表选项卡
|
|
if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
|
|
$query->where(['status' => $this->type]);
|
|
}
|
|
// 分页排序处理
|
|
if (input('output') === 'json') {
|
|
$result = $query->order('id desc')->page(true, false);
|
|
$this->success('获取数据列表成功', $result);
|
|
} else {
|
|
$query->order('id desc')->page();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 订单列表处理
|
|
* @param array $data
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
protected function _index_page_filter(array &$data)
|
|
{
|
|
$mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from')));
|
|
$mems = $this->app->db->name('DataMember')->whereIn('id', $mids)->column('*', 'id');
|
|
$query = $this->app->db->name('ShopOrderItem')->where(['status' => 1, 'deleted' => 0]);
|
|
$items = $query->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select()->toArray();
|
|
foreach ($data as &$vo) {
|
|
$vo['items'] = [];
|
|
$vo['member'] = $mems[$vo['mid']] ?? [];
|
|
$vo['fromer'] = $mems[$vo['from']] ?? [];
|
|
foreach ($items as $item) {
|
|
if ($vo['order_no'] === $item['order_no']) {
|
|
$vo['items'][] = $item;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 修改快递管理
|
|
* @auth true
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function truck()
|
|
{
|
|
if ($this->request->isGet()) {
|
|
$map = ['deleted' => 0, 'status' => 1];
|
|
$query = $this->app->db->name('ShopTruckCompany')->where($map);
|
|
$this->items = $query->order('sort desc,id desc')->select()->toArray();
|
|
}
|
|
$this->_form($this->table, '', 'order_no');
|
|
}
|
|
|
|
/**
|
|
* 快递表单处理
|
|
* @param array $vo
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
protected function _truck_form_filter(&$vo)
|
|
{
|
|
if ($this->request->isPost()) {
|
|
$map = ['order_no' => $vo['order_no']];
|
|
$order = $this->app->db->name($this->table)->where($map)->find();
|
|
if (empty($order)) $this->error('订单查询异常,请稍候再试!');
|
|
// 配送快递公司信息填写
|
|
$map = ['code_1|code_2|code_3' => $vo['truck_send_code']];
|
|
$company = $this->app->db->name('ShopTruckCompany')->where($map)->find();
|
|
if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!');
|
|
$vo['status'] = 4;
|
|
$vo['truck_send_name'] = $company['name'];
|
|
$vo['truck_send_datetime'] = $order['truck_send_datetime'] ?: date('Y-m-d H:i:s');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 快递追踪查询
|
|
* @auth true
|
|
*/
|
|
public function truckQuery()
|
|
{
|
|
try {
|
|
$data = $this->_vali([
|
|
'code.require' => '快递公司不能为空!',
|
|
'number.require' => '配送单号不能为空!',
|
|
]);
|
|
$this->result = OrderService::instance()->tracktruck($data['code'], $data['number']);
|
|
if (empty($this->result['code'])) $this->error($this->result['info']);
|
|
$this->fetch();
|
|
} catch (HttpResponseException $exception) {
|
|
throw $exception;
|
|
} catch (\Exception $exception) {
|
|
$this->error($exception->getMessage());
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 取消订单并创建售后单
|
|
* @auth true
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function cancel()
|
|
{
|
|
$map = $this->_vali(['order_no.require' => '订单编号不能为空!']);
|
|
$order = $this->app->db->name($this->table)->where($map)->find();
|
|
if (empty($order)) $this->error('订单查询异常');
|
|
if (intval($order['status']) !== 3) $this->error('该订单不能发货!');
|
|
[$rules, $data] = [[], ['type' => 3, 'refund_content' => '后台操作取消订单并申请退款', 'refund_images' => '']];
|
|
foreach ($this->app->db->name("{$this->table}Item")->where($map)->select()->toArray() as $item) {
|
|
$rules[] = ['goods_code' => $item['goods_code'], 'goods_spec' => $item['goods_spec'], 'refund_number' => $item['stock_sales']];
|
|
}
|
|
try {
|
|
if (OrderService::instance()->refund($order['order_no'], $data, $rules)) {
|
|
$this->app->db->name($this->table)->where($map)->update([
|
|
'status' => 0,
|
|
'cancel_status' => 1,
|
|
'cancel_remark' => '后台取消并创建退款申请',
|
|
'cancel_datetime' => date('Y-m-d H:i:s'),
|
|
]);
|
|
$this->success('取消订单并创建退款申请成功!');
|
|
}
|
|
} catch (HttpResponseException $exception) {
|
|
throw $exception;
|
|
} catch (\Exception $exception) {
|
|
$this->error($exception->getMessage());
|
|
}
|
|
}
|
|
|
|
} |