OrderServiceLogic.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. <?php
  2. namespace app\admin\logic;
  3. use app\model\CommonModel;
  4. use app\model\OrderServiceModel;
  5. use think\Exception;
  6. use think\facade\Db;
  7. use think\facade\Validate;
  8. use think\response\Json;
  9. class OrderServiceLogic extends BaseLogic
  10. {
  11. //列表
  12. public static function list(array $data = []): Json
  13. {
  14. $db = OrderServiceModel::alias('a')
  15. ->leftJoin('service s', 's.id=a.service_id AND s.is_del=' . CommonModel::$del_normal)
  16. ->leftJoin('company b', 'b.id=s.company_id AND b.is_del=' . CommonModel::$del_normal)
  17. ->leftJoin('card c', 'c.id=s.card_id AND c.is_del=' . CommonModel::$del_normal)
  18. ->leftJoin('account d', 'd.id=a.uid AND d.is_del=' . CommonModel::$del_normal)
  19. ->leftJoin('company bb', 'bb.id=d.company_id AND bb.is_del=' . CommonModel::$del_normal)
  20. ->leftJoin('card cc', 'cc.id=d.card_id AND cc.is_del=' . CommonModel::$del_normal)
  21. ->leftJoin('addr e', 'e.id=a.addr_id AND e.is_del=' . CommonModel::$del_normal)
  22. ->where('a.is_del', CommonModel::$del_normal);
  23. if ($data['orderCode'] != '') $db->whereLike('a.orderCode', '%' . $data['orderCode'] . '%');
  24. if ($data['status'] != '') $db->where('a.status', $data['status']);
  25. if ($data['name'] !== '') $db->whereLike('d.name', '%' . $data['name'] . '%');
  26. if ($data['username']) $db->whereLike('d.username', '%' . $data['username'] . '%');
  27. if (($data['start_date'] != '') && ($data['end_date'] != '')) $db->whereBetween('a.addtime', [$data['start_date'], $data['end_date']]);
  28. $count = $db->count('a.id');
  29. $list = $db
  30. ->field('a.id,a.orderCode,bb.title account_company_title,c.title account_card_title,d.name,d.username,a.num,e.contactor,e.mobile,e.addr_code,s.title,a.amount,a.status,a.addtime,a.post_name,a.post_code,"" addr_name,e.addr')
  31. ->page($data['page'], $data['size'])
  32. ->withAttr('addr_code', function ($val) {
  33. return explode(',', $val);
  34. })
  35. ->withAttr('addr_name', function ($val, $da) {
  36. return $da['addr_code']?get_addr_name($da['addr_code']):'';
  37. })
  38. ->order('a.addtime desc')
  39. ->select()
  40. ->toArray();
  41. return json_show(CommonModel::$success, '获取服务订单列表成功', ['count' => $count, 'list' => $list]);
  42. }
  43. //详情
  44. public static function read(int $id = 0): Json
  45. {
  46. $rs = OrderServiceModel::alias('a')
  47. ->field('a.id,a.orderCode,bb.title account_company_title,c.title account_card_title,d.name,d.username,a.num,e.contactor,e.mobile,e.addr_code,s.title,a.amount,a.status,a.addtime,a.post_name,a.post_code,"" addr_name,e.addr')
  48. ->leftJoin('service s', 's.id=a.service_id AND s.is_del=' . CommonModel::$del_normal)
  49. ->leftJoin('company b', 'b.id=s.company_id AND b.is_del=' . CommonModel::$del_normal)
  50. ->leftJoin('card c', 'c.id=s.card_id AND c.is_del=' . CommonModel::$del_normal)
  51. ->leftJoin('account d', 'd.id=a.uid AND d.is_del=' . CommonModel::$del_normal)
  52. ->leftJoin('company bb', 'bb.id=d.company_id AND bb.is_del=' . CommonModel::$del_normal)
  53. ->leftJoin('card cc', 'cc.id=d.card_id AND cc.is_del=' . CommonModel::$del_normal)
  54. ->leftJoin('addr e', 'e.id=a.addr_id AND e.is_del=' . CommonModel::$del_normal)
  55. ->where(['a.is_del' => CommonModel::$del_normal, 'a.id' => $id])
  56. ->withAttr('addr_code', function ($val) {
  57. return explode(',', $val);
  58. })
  59. ->withAttr('addr_name', function ($val, $da) {
  60. return $da['addr_code']?get_addr_name($da['addr_code']):'';
  61. })
  62. ->findOrEmpty()
  63. ->toArray();
  64. return json_show(CommonModel::$success, '获取商品详情成功', $rs);
  65. }
  66. //导出
  67. public static function export(array $data = []): Json
  68. {
  69. $db = OrderServiceModel::alias('a')
  70. ->leftJoin('service s', 's.id=a.service_id AND s.is_del=' . CommonModel::$del_normal)
  71. ->leftJoin('company b', 'b.id=s.company_id AND b.is_del=' . CommonModel::$del_normal)
  72. ->leftJoin('card c', 'c.id=s.card_id AND c.is_del=' . CommonModel::$del_normal)
  73. ->leftJoin('account d', 'd.id=a.uid AND d.is_del=' . CommonModel::$del_normal)
  74. ->leftJoin('company bb', 'bb.id=d.company_id AND bb.is_del=' . CommonModel::$del_normal)
  75. ->leftJoin('card cc', 'cc.id=d.card_id AND cc.is_del=' . CommonModel::$del_normal)
  76. ->leftJoin('addr e', 'e.id=a.addr_id AND e.is_del=' . CommonModel::$del_normal)
  77. ->where('a.is_del', CommonModel::$del_normal);
  78. if ($data['orderCode'] != '') $db->whereLike('a.orderCode', '%' . $data['orderCode'] . '%');
  79. if ($data['status'] != '') $db->where('a.status', $data['status']);
  80. if ($data['name'] !== '') $db->whereLike('d.name', '%' . $data['name'] . '%');
  81. if ($data['username']) $db->whereLike('d.username', '%' . $data['username'] . '%');
  82. if (($data['start_date'] != '') && ($data['end_date'] != '')) $db->whereBetween('a.addtime', [$data['start_date'], $data['end_date']]);
  83. $list = $db
  84. ->field('a.id 订单ID,a.orderCode 订单编号,bb.title 购买账号业务公司,c.title 购买账号卡类型,d.name 购买用户名,d.username 购买账号,a.num 购买数量,e.contactor 收货联系人,e.mobile 收货联系电话,e.addr_code,s.title 服务名称,a.amount 支付金额,a.status 状态,a.addtime 创建时间,a.post_name 物流公司,a.post_code 物流单号,e.addr')
  85. ->order('a.addtime desc')
  86. ->cursor();
  87. $status = [CommonModel::$status_not_deliver => '待发货', CommonModel::$status_deliver => '已发货', CommonModel::$status_receipt => '已收货'];
  88. $da = [];
  89. foreach ($list as $v) {
  90. $v = $v->toArray();
  91. $v['收货地址'] = $v['addr_code']?get_addr_name($v['addr_code']).$v['addr']:$v['addr'];
  92. $v['状态'] = $status[$v['状态']] ?? '';
  93. unset($v['addr_code']);
  94. unset($v['addr']);
  95. $da[] = $v;
  96. }
  97. if (empty($da)) $da[] = '没有可供导出的数据';
  98. $headerArr = array_keys($da[0]);
  99. excel_save('服务订单导出' . date('YmdHis'), $headerArr, $da);
  100. }
  101. //发货
  102. public static function deliver(array $list = [])
  103. {
  104. $db = new OrderServiceModel();
  105. $temp = $db
  106. ->field('id,orderCode')
  107. ->where(['is_del' => CommonModel::$del_normal])
  108. ->where('status', '<>', CommonModel::$status_not_deliver)
  109. ->whereIn('orderCode', array_column($list, 'orderCode'))
  110. ->findOrEmpty();
  111. if (!$temp->isEmpty()) return json_show(CommonModel::$error_param, $temp->orderCode . '订单并不是未发货状态');
  112. $val = Validate::rule([
  113. 'orderCode|订单编号' => 'require|length:18',
  114. 'post_name|物流公司' => 'require|max:255',
  115. 'post_code|物流单号' => 'require|max:255',
  116. ]);
  117. Db::startTrans();
  118. try {
  119. $date = date('Y-m-d H:i:s');
  120. foreach ($list as $order) {
  121. if (!$val->check($order)) throw new Exception($val->getError());
  122. $db->where([
  123. 'is_del' => CommonModel::$del_normal,
  124. 'orderCode' => $order['orderCode'],
  125. 'status' => CommonModel::$status_not_deliver,
  126. ])->save([
  127. 'status' => CommonModel::$status_deliver,
  128. 'post_name' => $order['post_name'],
  129. 'post_code' => $order['post_code'],
  130. 'updater' => self::$uname,
  131. 'updaterid' => self::$uid,
  132. 'updatetime' => $date,
  133. ]);
  134. }
  135. Db::commit();
  136. return json_show(CommonModel::$success, '发货成功');
  137. } catch (Exception $exception) {
  138. Db::rollback();
  139. return json_show(CommonModel::$error_param, '发货失败,' . $exception->getMessage());
  140. }
  141. }
  142. }