200 lines
6.2 KiB
PHP
200 lines
6.2 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeshop开源商城系统
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | gitee下载:https://gitee.com/likeshop_gitee
|
||
// | github下载:https://github.com/likeshop-github
|
||
// | 访问官网:https://www.likeshop.cn
|
||
// | 访问社区:https://home.likeshop.cn
|
||
// | 访问手册:http://doc.likeshop.cn
|
||
// | 微信公众号:likeshop技术社区
|
||
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
|
||
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
|
||
// | 禁止对系统程序代码以任何目的,任何形式的再发布
|
||
// | likeshop团队版权所有并拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeshop.cn.team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\admin\controller;
|
||
|
||
use app\common\model\OrderLog;
|
||
use app\admin\logic\OrderLogic;
|
||
use app\common\model\Client_;
|
||
use app\common\model\Order as CommonOrder;
|
||
use app\common\model\Pay;
|
||
use think\Db;
|
||
|
||
class Order extends AdminBase
|
||
{
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 订单列表
|
||
*/
|
||
public function lists()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
$get = $this->request->get();
|
||
$this->_success('', OrderLogic::lists($get));
|
||
}
|
||
$this->assign('order_status', CommonOrder::getOrderStatus(true));
|
||
$this->assign('order_type', CommonOrder::getOrderType(true));
|
||
$this->assign('pay_way', Pay::getPayWay(true));
|
||
$this->assign('delivery_type', CommonOrder::getDeliveryType(true));
|
||
$this->assign('order_source', Client_::getClient(true));
|
||
return $this->fetch();
|
||
}
|
||
|
||
public function exportFile()
|
||
{
|
||
$get = $this->request->get();
|
||
$this->_success('', OrderLogic::exportFile($get));
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 订单详情
|
||
*/
|
||
public function detail()
|
||
{
|
||
$id = $this->request->get('id');
|
||
$detail = OrderLogic::getDetail($id);
|
||
$this->assign('detail', $detail);
|
||
$this->assign('logs', OrderLog::getOrderLog($id));
|
||
return $this->fetch();
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 取消订单
|
||
*/
|
||
public function cancel()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
$post = $this->request->post('');
|
||
$check = $this->validate($post, 'app\admin\validate\Order.cancel');
|
||
if (true !== $check) {
|
||
$this->_error($check);
|
||
}
|
||
$res = OrderLogic::cancel($post['order_id'], $this->admin_id);
|
||
if ($res === true) {
|
||
$this->_success('取消成功');
|
||
}
|
||
$this->_error($res);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 删除订单
|
||
*/
|
||
public function del()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
$post = $this->request->post('');
|
||
$check = $this->validate($post, 'app\admin\validate\Order.del');
|
||
if (true !== $check) {
|
||
$this->_error($check);
|
||
}
|
||
OrderLogic::del($post['order_id'], $this->admin_id);
|
||
$this->_success('删除成功');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 发货
|
||
*/
|
||
public function delivery()
|
||
{
|
||
$id = $this->request->get('id');
|
||
$detail = OrderLogic::getDetail($id);
|
||
$this->assign('detail', $detail);
|
||
$this->assign('express', OrderLogic::express());
|
||
return $this->fetch();
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 发货操作
|
||
*/
|
||
public function deliveryHandle()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
$post = $this->request->post('');
|
||
$check = $this->validate($post, 'app\admin\validate\Order.delivery');
|
||
if (true !== $check) {
|
||
$this->_error($check);
|
||
}
|
||
OrderLogic::deliveryHandle($post, $this->admin_id);
|
||
$this->_success('发货成功');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 确认收货
|
||
*/
|
||
public function confirm()
|
||
{
|
||
if ($this->request->isAjax()) {
|
||
$post = $this->request->post('');
|
||
$check = $this->validate($post, 'app\admin\validate\Order.confirm');
|
||
if (true !== $check) {
|
||
$this->_error($check);
|
||
}
|
||
OrderLogic::confirm($post['order_id'], $this->admin_id);
|
||
$this->_success('确认成功');
|
||
}
|
||
}
|
||
|
||
/**
|
||
* User: 意象信息科技 mjf
|
||
* Desc: 物流信息
|
||
*/
|
||
public function express()
|
||
{
|
||
$id = $this->request->get('id');
|
||
$detail = OrderLogic::getDetail($id);
|
||
$detail['shipping'] = OrderLogic::shippingInfo($detail['id']);
|
||
$this->assign('detail', $detail);
|
||
return $this->fetch();
|
||
}
|
||
|
||
public function remarks()
|
||
{
|
||
// 获取的
|
||
if ($this->request->isAjax() && $this->request->isGet()){
|
||
$get = $this->request->get();
|
||
$detail = OrderLogic::remarks($get, 'get');
|
||
$this->_success('获取成功', $detail);
|
||
}
|
||
|
||
// 提交的
|
||
if ($this->request->isAjax() && $this->request->isPost()) {
|
||
$post = $this->request->post();
|
||
$result = OrderLogic::remarks($post, 'post');
|
||
if ($result) {
|
||
$this->_success('保存成功');
|
||
}
|
||
$this->error('保存失败');
|
||
}
|
||
|
||
}
|
||
|
||
/**
|
||
* Notes:打印接口
|
||
*/
|
||
public function orderPrint(){
|
||
$id = $this->request->post('id');
|
||
$result = $this->validate(['id'=>$id],'app\admin\validate\OrderPrint');
|
||
if(true === $result){
|
||
$result = OrderLogic::orderPrint($id);
|
||
if(true === $result){
|
||
$this->success('打印机成功,如未出小票,请检查打印机是否在线');
|
||
}
|
||
}
|
||
$this->_error($result);
|
||
}
|
||
} |