Order.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use library\Controller;
  16. use library\tools\Express;
  17. use think\Db;
  18. /**
  19. * 订单记录管理
  20. * Class Order
  21. * @package app\store\controller
  22. */
  23. class Order extends Controller
  24. {
  25. /**
  26. * 绑定数据表
  27. * @var string
  28. */
  29. protected $table = 'StoreOrder';
  30. /**
  31. * 订单记录管理
  32. * @auth true
  33. * @menu true
  34. * @throws \think\Exception
  35. * @throws \think\db\exception\DataNotFoundException
  36. * @throws \think\db\exception\ModelNotFoundException
  37. * @throws \think\exception\DbException
  38. * @throws \think\exception\PDOException
  39. */
  40. public function index()
  41. {
  42. $this->title = '订单记录管理';
  43. $this->_query($this->table)->order('id desc')->page();
  44. }
  45. /**
  46. * 订单列表处理
  47. * @param array $data
  48. * @throws \think\db\exception\DataNotFoundException
  49. * @throws \think\db\exception\ModelNotFoundException
  50. * @throws \think\exception\DbException
  51. */
  52. protected function _index_page_filter(array &$data)
  53. {
  54. $goodsList = Db::name('StoreOrderList')->whereIn('order_no', array_unique(array_column($data, 'order_no')))->select();
  55. $mids = array_unique(array_merge(array_column($data, 'mid'), array_column($data, 'from_mid')));
  56. $memberList = Db::name('StoreMember')->whereIn('id', $mids)->select();
  57. foreach ($data as &$vo) {
  58. list($vo['member'], $vo['from_member'], $vo['list']) = [[], [], []];
  59. foreach ($goodsList as $goods) if ($goods['order_no'] === $vo['order_no']) {
  60. $vo['list'][] = $goods;
  61. }
  62. foreach ($memberList as $member) if ($member['id'] === $vo['mid']) {
  63. $vo['member'] = $member;
  64. }
  65. }
  66. }
  67. /**
  68. * 修改快递管理
  69. * @auth true
  70. * @throws \think\Exception
  71. * @throws \think\db\exception\DataNotFoundException
  72. * @throws \think\db\exception\ModelNotFoundException
  73. * @throws \think\exception\DbException
  74. * @throws \think\exception\PDOException
  75. */
  76. public function express()
  77. {
  78. if ($this->request->isGet()) {
  79. $where = ['is_deleted' => '0', 'status' => '1'];
  80. $this->expressList = Db::name('StoreExpress')->where($where)->order('sort desc,id desc')->select();
  81. }
  82. $this->_form($this->table);
  83. }
  84. /**
  85. * 快递追踪查询
  86. * @auth true
  87. */
  88. public function expressQuery()
  89. {
  90. list($code, $no) = [input('code', ''), input('no', '')];
  91. if (empty($no)) $this->error('快递编号不能为空!');
  92. if (empty($code)) $this->error('快递公司编码不能为空!');
  93. $this->result = Express::query($code, $no);
  94. $this->fetch();
  95. }
  96. /**
  97. * 快递表单处理
  98. * @param array $vo
  99. * @throws \think\db\exception\DataNotFoundException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. * @throws \think\exception\DbException
  102. */
  103. protected function _express_form_filter(&$vo)
  104. {
  105. if ($this->request->isPost()) {
  106. $order = Db::name($this->table)->where(['id' => $vo['id']])->find();
  107. if (empty($order)) $this->error('订单查询异常,请稍候再试!');
  108. $express = Db::name('StoreExpress')->where(['express_code' => $vo['express_company_code']])->find();
  109. if (empty($express)) $this->error('发货快递公司异常,请重新选择快递公司!');
  110. $vo['express_company_title'] = $express['express_title'];
  111. $vo['express_send_at'] = empty($order['express_send_at']) ? date('Y-m-d H:i:s') : $order['express_send_at'];
  112. $vo['express_state'] = '1';
  113. $vo['status'] = '4';
  114. }
  115. }
  116. }