2019-04-02 13:46:30 +08:00

119 lines
4.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | framework
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://framework.thinkadmin.top
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\store\controller;
use library\Controller;
use think\Db;
/**
* 商城订单管理
* Class Order
* @package app\store\controller
*/
class Order extends Controller
{
/**
* 绑定数据表
* @var string
*/
protected $table = 'StoreOrder';
/**
* 商城订单列表显示
* @throws \think\Exception
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws \think\exception\PDOException
*/
public function index()
{
$this->title = '商城订单管理';
$this->_query($this->table)->order('id desc')->page();
}
/**
* 商城订单列表处理
* @param array $data
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _page_filter(array &$data)
{
$goodsList = Db::name('StoreOrderList')->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select();
$mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from_mid')));
$memberList = Db::name('StoreMember')->whereIn('id', $mids)->select();
foreach ($data as &$vo) {
list($vo['member'], $vo['from_member'], $vo['list']) = [[], [], []];
foreach ($goodsList as $goods) if ($goods['order_no'] === $vo['order_no']) {
$vo['list'][] = $goods;
}
foreach ($memberList as $member) if ($member['id'] === $vo['mid']) {
$member['nickname'] = emoji_decode($member['nickname']);
$vo['member'] = $member;
}
}
}
/**
* 快递管理
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
public function express()
{
if ($this->request->isGet()) {
$where = ['is_deleted' => '0', 'status' => '1'];
$this->expressList = Db::name('StoreExpress')->where($where)->order('sort asc,id desc')->select();
}
$this->_form($this->table);
}
/***
* 快递追踪查询
*/
public function expressQuery()
{
list($code, $no) = [input('code', ''), input('no', '')];
if (empty($no)) $this->error('快递编号不能为空!');
if (empty($code)) $this->error('快递公司编码不能为空!');
$this->result = \library\tools\Express::query($code, $no);
$this->fetch();
}
/**
* 快递表单处理
* @param array $vo
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
*/
protected function _express_form_filter(&$vo)
{
if ($this->request->isPost()) {
$order = Db::name($this->table)->where(['id' => $vo['id']])->find();
if (empty($order)) $this->error('订单查询异常,请稍候再试!');
$express = Db::name('StoreExpress')->where(['express_code' => $vo['express_company_code']])->find();
if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
$vo['express_company_title'] = $express['express_title'];
$vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
$vo['express_state'] = '1';
$vo['status'] = '4';
}
}
}