截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IntegralOrderLogic.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\integral;
  20. use app\common\basics\Logic;
  21. use app\common\enum\IntegralOrderEnum;
  22. use app\common\enum\NoticeEnum;
  23. use app\common\enum\OrderLogEnum;
  24. use app\common\enum\PayEnum;
  25. use app\common\logic\IntegralOrderRefundLogic;
  26. use app\common\logic\OrderLogLogic;
  27. use app\common\model\Express;
  28. use app\common\model\integral\IntegralDelivery;
  29. use app\common\model\integral\IntegralOrder;
  30. use app\common\model\order\Order;
  31. use app\common\server\ConfigServer;
  32. use app\common\server\UrlServer;
  33. use expressage\Kd100;
  34. use expressage\Kdniao;
  35. use think\facade\Db;
  36. class IntegralOrderLogic extends Logic
  37. {
  38. /**
  39. * @notes 兑换订单列表
  40. * @param array $get
  41. * @return array
  42. * @throws \think\db\exception\DataNotFoundException
  43. * @throws \think\db\exception\DbException
  44. * @throws \think\db\exception\ModelNotFoundException
  45. * @author ljj
  46. * @date 2022/3/3 10:38 上午
  47. */
  48. public static function lists($get = [])
  49. {
  50. $order = new IntegralOrder();
  51. $where = [];
  52. //列表状态
  53. if (isset($get['status']) && $get['status'] != '') {
  54. $where[] = ['order_status', '=', $get['status']];
  55. }
  56. //兑换单号
  57. if (isset($get['order_sn']) && $get['order_sn'] != '') {
  58. $where[] = ['order_sn', 'like', '%' . $get['order_sn'] . '%'];
  59. }
  60. //商品名称
  61. if (isset($get['goods_name']) && $get['goods_name'] != '') {
  62. $where[] = ['goods_snap->name', 'like', '%' . $get['goods_name'] . '%'];
  63. }
  64. //兑换类型
  65. if (isset($get['type']) && $get['type'] != '') {
  66. $where[] = ['exchange_type', '=', intval($get['type'])];
  67. }
  68. //订单状态
  69. if (isset($get['order_status']) && $get['order_status'] != '') {
  70. $where[] = ['order_status', '=', $get['order_status']];
  71. }
  72. //下单时间
  73. if (isset($get['start_time']) && $get['start_time'] != '') {
  74. $where[] = ['create_time', '>=', strtotime($get['start_time'])];
  75. }
  76. if (isset($get['end_time']) && $get['end_time'] != '') {
  77. $where[] = ['create_time', '<=', strtotime($get['end_time'])];
  78. }
  79. $count = $order->where($where)->count();
  80. $lists = $order
  81. ->field('*')
  82. ->with(['user'])
  83. ->where($where)
  84. ->append(['pay_status_text', 'delivery_address', 'order_status_desc', 'type_desc'])
  85. ->page($get['page'], $get['limit'])
  86. ->order('id', 'desc')
  87. ->select()
  88. ->toArray();
  89. foreach ($lists as $key=>&$list) {
  90. $list['pay_time'] = $list['pay_time'] == '0' ? '未支付' : date('Y-m-d H:i:s', $list['pay_time']);
  91. $list['user']['avatar'] = UrlServer::getFileUrl($list['user']['avatar']);
  92. $list['goods_snap']['image'] = UrlServer::getFileUrl($list['goods_snap']['image']);
  93. }
  94. return ['count' => $count, 'lists' => $lists];
  95. }
  96. /**
  97. * @notes 兑换订单详情
  98. * @param $id
  99. * @return array
  100. * @author ljj
  101. * @date 2022/3/3 11:10 上午
  102. */
  103. public static function detail($id)
  104. {
  105. $result = (new IntegralOrder())
  106. ->with(['user'])
  107. ->where('id', $id)
  108. ->append(['delivery_address', 'pay_status_desc', 'order_status_desc','type_desc','pay_way_desc'])
  109. ->findOrEmpty()
  110. ->toArray();
  111. $result['pay_time'] = $result['pay_time'] == '0' ? '未支付' : date('Y-m-d H:i:s', $result['pay_time']);
  112. $result['confirm_time'] = empty($result['confirm_time']) ? '-' : date('Y-m-d H:i:s', $result['confirm_time']);
  113. $result['user']['avatar'] = UrlServer::getFileUrl($result['user']['avatar']);
  114. $result['goods_snap']['image'] = UrlServer::getFileUrl($result['goods_snap']['image']);
  115. return $result;
  116. }
  117. /**
  118. * @notes 发货详情
  119. * @param $id
  120. * @return array
  121. * @author ljj
  122. * @date 2022/3/3 11:48 上午
  123. */
  124. public static function deliveryDetail($id)
  125. {
  126. $result = (new IntegralOrder())
  127. ->where('id', $id)
  128. ->append(['delivery_address'])
  129. ->findOrEmpty()
  130. ->toArray();
  131. $result['goods_snap']['image'] = UrlServer::getFileUrl($result['goods_snap']['image']);
  132. return $result;
  133. }
  134. /**
  135. * @notes 快递公司列表
  136. * @return array|\think\Collection
  137. * @throws \think\db\exception\DataNotFoundException
  138. * @throws \think\db\exception\DbException
  139. * @throws \think\db\exception\ModelNotFoundException
  140. * @author ljj
  141. * @date 2022/3/3 11:35 上午
  142. */
  143. public static function express()
  144. {
  145. return Express::where('del', 0)->field('id,name')->select()->toArray();
  146. }
  147. /**
  148. * @notes 发货操作
  149. * @param $post
  150. * @param $admin_id
  151. * @author ljj
  152. * @date 2022/3/3 2:53 下午
  153. */
  154. public static function deliveryHandle($post, $admin_id)
  155. {
  156. Db::startTrans();
  157. try {
  158. $order = IntegralOrder::where(['del'=>0,'id'=>$post['id']])->findOrEmpty()->toArray();
  159. $shipping = Express::where('id',$post['shipping_id'])->findOrEmpty()->toArray();
  160. //添加发货单
  161. $delivery_data = [
  162. 'order_id' => $order['id'],
  163. 'order_sn' => $order['order_sn'],
  164. 'user_id' => $order['user_id'],
  165. 'admin_id' => $admin_id,
  166. 'consignee' => $order['consignee'],
  167. 'mobile' => $order['mobile'],
  168. 'province' => $order['province'],
  169. 'city' => $order['city'],
  170. 'district' => $order['district'],
  171. 'address' => $order['address'],
  172. 'invoice_no' => $post['invoice_no'],
  173. 'send_type' => 1,
  174. 'shipping_id' => $post['shipping_id'],
  175. 'shipping_name' => $shipping['name'],
  176. 'shipping_status' => 1,
  177. 'create_time' => time(),
  178. ];
  179. $delivery = IntegralDelivery::create($delivery_data);
  180. //更新订单信息
  181. IntegralOrder::update([
  182. 'update_time' => time(),
  183. 'shipping_time' => time(),
  184. 'shipping_status' => 1,
  185. 'order_status' => IntegralOrderEnum::ORDER_STATUS_GOODS,
  186. 'delivery_id' => $delivery->id,
  187. ],['id'=>$order['id']]);
  188. //通知用户发货
  189. if (!empty($order['mobile'])) {
  190. event('Notice', [
  191. 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
  192. 'mobile' => $order['mobile'],
  193. 'params' => [
  194. 'order_id' => $order['id'],
  195. 'user_id' => $order['user_id'],
  196. 'shipping_name' => $delivery_data['shipping_name'],
  197. 'invoice_no' => $post['invoice_no'],
  198. ]
  199. ]);
  200. }
  201. // 提交事务
  202. Db::commit();
  203. return true;
  204. } catch (\Exception $e) {
  205. // 回滚事务
  206. Db::rollback();
  207. return $e->getMessage();
  208. }
  209. }
  210. /**
  211. * @notes 物流信息
  212. * @param $order_id
  213. * @return array
  214. * @author ljj
  215. * @date 2022/3/3 3:31 下午
  216. */
  217. public static function shippingInfo($order_id)
  218. {
  219. $shipping = IntegralDelivery::where('order_id', $order_id)->findOrEmpty()->toArray();
  220. $shipping['traces'] = self::getShipping($order_id);
  221. return $shipping;
  222. }
  223. /**
  224. * @notes 物流轨迹
  225. * @param $order_id
  226. * @return bool|string[]
  227. * @author ljj
  228. * @date 2022/3/3 3:31 下午
  229. */
  230. public static function getShipping($order_id)
  231. {
  232. $order = IntegralOrder::alias('o')
  233. ->field('invoice_no,shipping_name,shipping_id,o.shipping_status,o.mobile')
  234. ->join('integral_delivery d', 'd.order_id = o.id')
  235. ->where(['o.id' => $order_id])
  236. ->findOrEmpty()
  237. ->toArray();
  238. $express = ConfigServer::get('express', 'way', '', '');
  239. $key = ConfigServer::get($express, 'appkey');
  240. $app = ConfigServer::get($express, 'appsecret');
  241. if (empty($express) || $order['shipping_status'] != 1 || empty($app) || empty($key)) {
  242. return $traces[] = ['暂无物流信息'];
  243. }
  244. //快递配置设置为快递鸟时
  245. if ($express === 'kdniao') {
  246. $expressage = (new Kdniao($app, $key, true));
  247. $shipping_field = 'codebird';
  248. } else {
  249. $expressage = (new Kd100($app, $key, true));
  250. $shipping_field = 'code100';
  251. }
  252. //快递编码
  253. $shipping_code = Db::name('express')
  254. ->where(['id' => $order['shipping_id']])
  255. ->value($shipping_field);
  256. //获取物流轨迹
  257. if ($shipping_code === 'SF' && $express === 'kdniao') {
  258. $expressage->logistics($shipping_code, $order['invoice_no'], substr($order['mobile'],-4));
  259. }else {
  260. $expressage->logistics($shipping_code, $order['invoice_no']);
  261. }
  262. $traces = $expressage->logisticsFormat();
  263. if ($traces == false) {
  264. $traces[] = [$expressage->getError()];
  265. } else {
  266. foreach ($traces as &$item) {
  267. $item = array_values(array_unique($item));
  268. }
  269. }
  270. return $traces;
  271. }
  272. /**
  273. * @notes 确认收货
  274. * @param $order_id
  275. * @param $admin_id
  276. * @return bool
  277. * @author ljj
  278. * @date 2022/3/3 3:39 下午
  279. */
  280. public static function confirm($order_id, $admin_id)
  281. {
  282. IntegralOrder::update([
  283. 'order_status' => IntegralOrderEnum::ORDER_STATUS_COMPLETE,
  284. 'update_time' => time(),
  285. 'confirm_time' => time(),
  286. ],['id'=>$order_id]);
  287. return true;
  288. }
  289. /**
  290. * @notes 取消订单
  291. * @param $id
  292. * @return bool
  293. * @throws \think\db\exception\DataNotFoundException
  294. * @throws \think\db\exception\DbException
  295. * @throws \think\db\exception\ModelNotFoundException
  296. * @author 段誉
  297. * @date 2022/3/3 18:49
  298. */
  299. public static function cancel($id)
  300. {
  301. Db::startTrans();
  302. try {
  303. $order = IntegralOrder::findOrEmpty($id);
  304. // 更新订单状态, 退回库存, 扣减销量
  305. IntegralOrderRefundLogic::cancelOrder($id);
  306. // 退回已支付积分
  307. IntegralOrderRefundLogic::refundOrderIntegral($id);
  308. // 退回订单已支付积分或已支付金额
  309. if ($order['pay_status'] == PayEnum::ISPAID) {
  310. IntegralOrderRefundLogic::refundOrderAmount($id);
  311. }
  312. Db::commit();
  313. return true;
  314. } catch (\Exception $e) {
  315. Db::rollback();
  316. self::$error = $e->getMessage();
  317. IntegralOrderRefundLogic::addRefundLog(
  318. $order, $order['order_amount'],
  319. 2, $e->getMessage()
  320. );
  321. return false;
  322. }
  323. }
  324. }