Order.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. namespace app\data\controller\shop;
  3. use app\data\service\ExpressService;
  4. use app\data\service\OrderService;
  5. use app\data\service\PaymentService;
  6. use app\data\service\UserAdminService;
  7. use think\admin\Controller;
  8. use think\admin\extend\CodeExtend;
  9. use think\exception\HttpResponseException;
  10. /**
  11. * 订单数据管理
  12. * Class Order
  13. * @package app\data\controller\shop
  14. */
  15. class Order extends Controller
  16. {
  17. /**
  18. * 绑定数据表
  19. * @var string
  20. */
  21. private $table = 'ShopOrder';
  22. /**
  23. * 支付方式
  24. * @var array
  25. */
  26. protected $payments = [];
  27. /**
  28. * 控制器初始化
  29. */
  30. protected function initialize()
  31. {
  32. parent::initialize();
  33. $this->payments = PaymentService::types();
  34. }
  35. /**
  36. * 订单数据管理
  37. * @auth true
  38. * @menu true
  39. * @throws \think\db\exception\DataNotFoundException
  40. * @throws \think\db\exception\DbException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. */
  43. public function index()
  44. {
  45. $this->title = '订单数据管理';
  46. // 状态数据统计
  47. $this->total = ['t0' => 0, 't1' => 0, 't2' => 0, 't3' => 0, 't4' => 0, 't5' => 0, 't6' => 0, 'ta' => 0];
  48. foreach ($this->app->db->name($this->table)->field('status,count(1) total')->group('status')->cursor() as $vo) {
  49. $this->total["t{$vo['status']}"] = $vo['total'];
  50. $this->total["ta"] += $vo['total'];
  51. }
  52. // 订单列表查询
  53. $query = $this->_query($this->table);
  54. $query->like('order_no,truck_name,truck_phone,truck_province|truck_area|truck_address#address,truck_send_no,truck_send_name');
  55. $query->equal('status,payment_type,payment_status')->dateBetween('create_at,payment_datetime,cancel_datetime,truck_datetime,truck_send_datetime');
  56. // 发货信息搜索
  57. $db = $this->_query('ShopOrderSend')->like('address_name#truck_address_name,address_phone#truck_address_phone,address_province|address_city|address_area|address_content#truck_address_content')->db();
  58. if ($db->getOptions('where')) $query->whereRaw("order_no in {$db->field('order_no')->buildSql()}");
  59. // 用户搜索查询
  60. $db = $this->_query('DataUser')->like('phone#user_phone,nickname#user_nickname')->db();
  61. if ($db->getOptions('where')) $query->whereRaw("uid in {$db->field('id')->buildSql()}");
  62. // 推荐人搜索查询
  63. $db = $this->_query('DataUser')->like('phone#from_phone,nickname#from_nickname')->db();
  64. if ($db->getOptions('where')) $query->whereRaw("puid1 in {$db->field('id')->buildSql()}");
  65. // 列表选项卡
  66. if (is_numeric($this->type = trim(input('type', 'ta'), 't'))) {
  67. $query->where(['status' => $this->type]);
  68. }
  69. // 分页排序处理
  70. $query->where(['deleted_status' => 0])->order('id desc')->page();
  71. }
  72. /**
  73. * 订单列表处理
  74. * @param array $data
  75. * @throws \think\db\exception\DataNotFoundException
  76. * @throws \think\db\exception\DbException
  77. * @throws \think\db\exception\ModelNotFoundException
  78. */
  79. protected function _index_page_filter(array &$data)
  80. {
  81. UserAdminService::instance()->buildByUid($data);
  82. UserAdminService::instance()->buildByUid($data, 'puid1', 'from');
  83. OrderService::instance()->buildData($data);
  84. foreach ($data as &$vo) $vo['payment_name'] = PaymentService::name($vo['payment_type']);
  85. }
  86. /**
  87. * 修改快递管理
  88. * @auth true
  89. * @throws \think\db\exception\DataNotFoundException
  90. * @throws \think\db\exception\DbException
  91. * @throws \think\db\exception\ModelNotFoundException
  92. */
  93. public function truck()
  94. {
  95. if ($this->request->isGet()) {
  96. $map = ['deleted' => 0, 'status' => 1];
  97. $query = $this->app->db->name('DataBasePostageCompany')->where($map);
  98. $this->items = $query->order('sort desc,id desc')->select()->toArray();
  99. }
  100. $this->_form('ShopOrderSend', '', 'order_no');
  101. }
  102. /**
  103. * 快递表单处理
  104. * @param array $vo
  105. * @throws \think\db\exception\DataNotFoundException
  106. * @throws \think\db\exception\DbException
  107. * @throws \think\db\exception\ModelNotFoundException
  108. */
  109. protected function _truck_form_filter(array &$vo)
  110. {
  111. if ($this->request->isPost()) {
  112. $map = ['order_no' => $vo['order_no']];
  113. $order = $this->app->db->name('ShopOrder')->where($map)->find();
  114. if (empty($order)) $this->error('订单查询异常,请稍候再试!');
  115. // 配送快递公司填写
  116. $map = ['code_1|code_2|code_3' => $vo['company_code']];
  117. $company = $this->app->db->name('DataBasePostageCompany')->where($map)->find();
  118. if (empty($company)) $this->error('配送快递公司异常,请重新选择快递公司!');
  119. $vo['status'] = 2;
  120. $vo['company_name'] = $company['name'];
  121. $vo['send_datetime'] = $vo['send_datetime'] ?? date('Y-m-d H:i:s');
  122. // 更新订单发货状态
  123. if ($order['status'] === 3) {
  124. $map = ['order_no' => $vo['order_no']];
  125. $this->app->db->name('ShopOrder')->where($map)->update(['status' => 4]);
  126. }
  127. }
  128. }
  129. /**
  130. * 快递追踪查询
  131. * @auth true
  132. */
  133. public function truckQuery()
  134. {
  135. try {
  136. $data = $this->_vali([
  137. 'code.require' => '快递编号不能为空!',
  138. 'number.require' => '配送单号不能为空!',
  139. ]);
  140. $this->result = ExpressService::instance()->query($data['code'], $data['number']);
  141. if (empty($this->result['code'])) $this->error($this->result['info']);
  142. $this->fetch('truck_query');
  143. } catch (HttpResponseException $exception) {
  144. throw $exception;
  145. } catch (\Exception $exception) {
  146. $this->error($exception->getMessage());
  147. }
  148. }
  149. /**
  150. * 单据凭证支付审核
  151. * @auth true
  152. * @throws \think\db\exception\DataNotFoundException
  153. * @throws \think\db\exception\DbException
  154. * @throws \think\db\exception\ModelNotFoundException
  155. */
  156. public function audit()
  157. {
  158. if ($this->request->isGet()) {
  159. $this->_form($this->table, '', 'order_no');
  160. } else {
  161. $data = $this->_vali([
  162. 'order_no.require' => '订单单号不能为空!',
  163. 'status.in:0,1' => '审核状态数值异常!',
  164. 'status.require' => '审核状态不能为空!',
  165. 'remark.default' => '',
  166. ]);
  167. if (empty($data['status'])) {
  168. $data['status'] = 0;
  169. $data['cancel_status'] = 1;
  170. $data['cancel_remark'] = $data['remark'] ?: '后台审核驳回并取消订单';
  171. $data['cancel_datetime'] = date('Y-m-d H:i:s');
  172. } else {
  173. $data['status'] = 4;
  174. $data['payment_code'] = CodeExtend::uniqidDate(20, 'T');
  175. $data['payment_status'] = 1;
  176. $data['payment_remark'] = $data['remark'] ?: '后台审核支付凭证通过';
  177. $data['payment_datetime'] = date('Y-m-d H:i:s');
  178. }
  179. $order = $this->app->db->name($this->table)->where(['order_no' => $data['order_no']])->find();
  180. if (empty($order) || $order['status'] !== 3) $this->error('不允许操作审核!');
  181. // 无需发货时的处理
  182. if ($data['status'] === 4 && empty($order['truck_type'])) $data['status'] = 6;
  183. // 更新订单支付状态
  184. $map = ['status' => 3, 'order_no' => $data['order_no']];
  185. if ($this->app->db->name($this->table)->strict(false)->where($map)->update($data) !== false) {
  186. if (in_array($data['status'], [4, 5, 6])) {
  187. $this->app->event->trigger('ShopOrderPayment', $data['order_no']);
  188. $this->success('订单审核通过成功!');
  189. } else {
  190. $this->app->event->trigger('ShopOrderCancel');
  191. OrderService::instance()->stock($data['order_no']);
  192. $this->success('审核驳回并取消成功!');
  193. }
  194. } else {
  195. $this->error('订单审核失败!');
  196. }
  197. }
  198. }
  199. /**
  200. * 清理订单数据
  201. * @auth true
  202. */
  203. public function clean()
  204. {
  205. $this->_queue('定时清理无效订单数据', "xdata:OrderClean", 0, [], 0, 60);
  206. }
  207. /**
  208. * 取消未支付的订单
  209. * @auth true
  210. * @throws \think\db\exception\DataNotFoundException
  211. * @throws \think\db\exception\DbException
  212. * @throws \think\db\exception\ModelNotFoundException
  213. */
  214. public function cancel()
  215. {
  216. $map = $this->_vali(['order_no.require' => '订单号不能为空!',]);
  217. $order = $this->app->db->name($this->table)->where($map)->find();
  218. if (empty($order)) $this->error('订单查询异常!');
  219. if (!in_array($order['status'], [1, 2, 3])) $this->error('订单不能取消!');
  220. try {
  221. $result = $this->app->db->name($this->table)->where($map)->update([
  222. 'status' => 0,
  223. 'cancel_status' => 1,
  224. 'cancel_remark' => '后台取消未支付的订单',
  225. 'cancel_datetime' => date('Y-m-d H:i:s'),
  226. ]);
  227. if ($result !== false) {
  228. OrderService::instance()->stock($order['order_no']);
  229. $this->app->event->trigger('ShopOrderCancel', $order['order_no']);
  230. $this->success('取消未支付的订单成功!');
  231. } else {
  232. $this->error('取消支付的订单失败!');
  233. }
  234. } catch (HttpResponseException $exception) {
  235. throw $exception;
  236. } catch (\Exception $exception) {
  237. $this->error($exception->getMessage());
  238. }
  239. }
  240. }