Order.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  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\api\member;
  15. use app\store\controller\api\Member;
  16. use app\store\service\GoodsService;
  17. use app\store\service\OrderService;
  18. use library\tools\Data;
  19. use think\Db;
  20. use think\exception\HttpResponseException;
  21. /**
  22. * 订单接口管理
  23. * Class Order
  24. * @package app\store\controller\api\member
  25. */
  26. class Order extends Member
  27. {
  28. /**
  29. * 创建商城订单
  30. * @throws \think\db\exception\DataNotFoundException
  31. * @throws \think\db\exception\ModelNotFoundException
  32. * @throws \think\exception\DbException
  33. * 商品ID1@商品规格1@商品数量1||商品ID2@商品规格2@商品数量2
  34. */
  35. public function set()
  36. {
  37. // 商品规则
  38. $rule = $this->request->post('rule', '');
  39. if (empty($rule)) $this->error('下单商品规则不能为空!');
  40. // 订单处理
  41. list($orderList, $order) = [[], [
  42. 'status' => '1', 'mid' => $this->mid,
  43. 'order_no' => Data::uniqidNumberCode(12),
  44. 'from_mid' => $this->request->post('from_mid', '0'),
  45. ]];
  46. // 推荐人处理
  47. if (intval($order['from_mid']) === intval($this->mid)) {
  48. $order['from_mid'] = '0';
  49. } elseif ($order['from_mid'] > 0) {
  50. if (Db::name('StoreMember')->where(['id' => $order['from_mid']])->count() < 1) {
  51. $this->error('无效的推荐会员ID,稍候再试!');
  52. }
  53. }
  54. foreach (explode('||', $rule) as $item) {
  55. list($goods_id, $goods_spec, $number) = explode('@', $item);
  56. // 商品信息检查
  57. $goods = Db::name('StoreGoods')->where(['id' => $goods_id, 'status' => '1', 'is_deleted' => '0'])->find();
  58. if (empty($goods)) $this->error('查询商品主体信息失败,请稍候再试!');
  59. $spec = Db::name('StoreGoodsList')->where(['goods_id' => $goods_id, 'goods_spec' => $goods_spec])->find();
  60. if (empty($spec)) $this->error('查询商品规则信息失败,请稍候再试!');
  61. // 商品库存检查
  62. if ($spec['number_sales'] + $number > $spec['number_stock']) {
  63. $this->error('商品库存不足,请购买其它商品!');
  64. }
  65. // 订单详情处理
  66. array_push($orderList, [
  67. 'mid' => $order['mid'],
  68. 'from_mid' => $order['from_mid'],
  69. 'order_no' => $order['order_no'],
  70. // 商品信息字段管理
  71. 'goods_id' => $goods_id,
  72. 'goods_spec' => $goods_spec,
  73. 'goods_logo' => $goods['logo'],
  74. 'goods_title' => $goods['title'],
  75. 'number_goods' => $number,
  76. 'number_express' => $spec['number_express'],
  77. // 费用字段处理
  78. 'price_market' => $spec['price_market'],
  79. 'price_selling' => $spec['price_selling'],
  80. 'price_real' => $spec['price_selling'] * $number,
  81. 'price_express' => $goods['price_express'],
  82. // 返利字段处理
  83. 'price_rate' => $goods['price_rate'],
  84. 'price_rate_amount' => $spec['price_selling'] * $number * $goods['price_rate'] / 100,
  85. ]);
  86. }
  87. $order['price_goods'] = array_sum(array_column($orderList, 'price_real')) + 0;
  88. $order['price_express'] = max(array_column($orderList, 'price_express')) + 0;
  89. $order['price_total'] = $order['price_goods'] + $order['price_express'];
  90. $order['price_rate_amount'] = array_sum(array_column($orderList, 'price_rate_amount')) + 0;
  91. try {
  92. // 订单数据写入
  93. Db::name('StoreOrder')->insert($order);
  94. Db::name('StoreOrderList')->insertAll($orderList);
  95. // 同步商品库存及销量
  96. foreach (array_unique(array_column($orderList, 'goods_id')) as $goodsId) GoodsService::syncStock($goodsId);
  97. $this->success('订单创建成功,请补全收货信息后支付!', ['order' => $order]);
  98. } catch (HttpResponseException $exception) {
  99. throw $exception;
  100. } catch (\Exception $e) {
  101. $this->error("创建订单失败,请稍候再试!{$e->getMessage()}");
  102. }
  103. }
  104. /**
  105. * 订单信息完成
  106. * @throws \think\Exception
  107. * @throws \think\db\exception\DataNotFoundException
  108. * @throws \think\db\exception\ModelNotFoundException
  109. * @throws \think\exception\DbException
  110. * @throws \think\exception\PDOException
  111. */
  112. public function perfect()
  113. {
  114. $data = $this->_input([
  115. 'order_no' => $this->request->post('order_no'),
  116. 'address_id' => $this->request->post('address_id'),
  117. ], [
  118. 'order_no' => 'require',
  119. 'address_id' => 'require',
  120. ], [
  121. 'order_no.require' => '订单号不能为空!',
  122. 'address_id.require' => '收货地址ID不能为空(0自提可以为空)',
  123. ]);
  124. $map = ['order_no' => $data['order_no'], 'mid' => $this->member['id']];
  125. $order = Db::name('StoreOrder')->whereIn('status', ['1', '2'])->where($map)->find();
  126. if (empty($order)) $this->error('订单异常,请返回商品重新下单!');
  127. $update = ['status' => '2'];
  128. $where = ['id' => $data['address_id'], 'mid' => $this->member['id']];
  129. $address = Db::name('StoreMemberAddress')->where($where)->find();
  130. if (empty($address)) $this->error('会员收货地址异常,请刷新页面重试!');
  131. $update['express_address_id'] = $data['address_id'];
  132. $update['express_name'] = $address['name'];
  133. $update['express_phone'] = $address['phone'];
  134. $update['express_province'] = $address['province'];
  135. $update['express_city'] = $address['city'];
  136. $update['express_area'] = $address['area'];
  137. $update['express_address'] = $address['address'];
  138. if (Db::name('StoreOrder')->where($map)->update($update) !== false) {
  139. $params = $this->getPayParams($order['order_no'], $order['price_total']);
  140. $this->success('更新订单会员信息成功!', $params);
  141. } else {
  142. $this->error('更新订单会员信息失败,请稍候再试!');
  143. }
  144. }
  145. /**
  146. * 获取订单支付状态
  147. * @throws \think\db\exception\DataNotFoundException
  148. * @throws \think\db\exception\ModelNotFoundException
  149. * @throws \think\exception\DbException
  150. */
  151. public function pay()
  152. {
  153. $order_no = $this->request->post('order_no');
  154. $order = Db::name('StoreOrder')->where(['order_no' => $order_no])->find();
  155. if (empty($order_no)) $this->error('获取订单信息异常,请稍候再试!');
  156. if ($order['pay_state']) $this->error('订单已经完成支付,不需要再次支付!');
  157. if ($order['status'] <> 2) $this->error('该订单不能发起支付哦!');
  158. try {
  159. $param = $this->getPayParams($order['order_no'], $order['price_total']);
  160. $this->success('获取订单支付参数成功!', $param);
  161. } catch (HttpResponseException $exception) {
  162. throw $exception;
  163. } catch (\Exception $e) {
  164. $this->error("获取订单支付参数失败,{$e->getMessage()}");
  165. }
  166. }
  167. /**
  168. * 获取订单支付参数
  169. * @param string $order_no
  170. * @param string $pay_price
  171. * @return array
  172. */
  173. private function getPayParams($order_no, $pay_price)
  174. {
  175. $options = [
  176. 'body' => '商城订单支付',
  177. 'openid' => $this->openid,
  178. 'out_trade_no' => $order_no,
  179. // 'total_fee' => '1',
  180. 'total_fee' => $pay_price * 100,
  181. 'trade_type' => 'JSAPI',
  182. 'notify_url' => url('@store/api.notify/wxpay', '', false, true),
  183. 'spbill_create_ip' => $this->request->ip(),
  184. ];
  185. try {
  186. $pay = \We::WePayOrder(config('wechat.miniapp'));
  187. $info = $pay->create($options);
  188. if ($info['return_code'] === 'SUCCESS' && $info['result_code'] === 'SUCCESS') {
  189. return $pay->jsapiParams($info['prepay_id']);
  190. }
  191. if (isset($info['err_code_des'])) {
  192. throw new \think\Exception($info['err_code_des']);
  193. }
  194. } catch (\Exception $e) {
  195. $this->error("创建订单失败参数失败,{$e->getMessage()}");
  196. }
  197. }
  198. /**
  199. * 获取订单列表
  200. * @throws \think\Exception
  201. * @throws \think\db\exception\DataNotFoundException
  202. * @throws \think\db\exception\ModelNotFoundException
  203. * @throws \think\exception\DbException
  204. * @throws \think\exception\PDOException
  205. */
  206. public function gets()
  207. {
  208. $where = [['mid', 'eq', $this->mid]];
  209. if ($this->request->has('order_no', 'post', true)) {
  210. $where[] = ['order_no', 'eq', $this->request->post('order_no')];
  211. } else {
  212. $where[] = ['status', 'in', ['0', '2', '3', '4', '5']];
  213. }
  214. if ($this->request->has('status', 'post', true)) {
  215. $where[] = ['status', 'eq', $this->request->post('status')];
  216. }
  217. $result = $this->_query('StoreOrder')->where($where)->order('id desc')->page(true, false, false, 20);
  218. $glist = Db::name('StoreOrderList')->whereIn('order_no', array_unique(array_column($result['list'], 'order_no')))->select();
  219. foreach ($result['list'] as &$vo) {
  220. list($vo['goods_count'], $vo['list']) = [0, []];
  221. foreach ($glist as $goods) if ($vo['order_no'] === $goods['order_no']) {
  222. $vo['list'][] = $goods;
  223. $vo['goods_count'] += $goods['number_goods'];
  224. }
  225. }
  226. $this->success('获取订单列表成功!', $result);
  227. }
  228. /**
  229. * 订单取消
  230. * @throws \think\Exception
  231. * @throws \think\db\exception\DataNotFoundException
  232. * @throws \think\db\exception\ModelNotFoundException
  233. * @throws \think\exception\DbException
  234. * @throws \think\exception\PDOException
  235. */
  236. public function cancel()
  237. {
  238. $where = [
  239. 'mid' => $this->member['id'],
  240. 'order_no' => $this->request->post('order_no'),
  241. ];
  242. $order = Db::name('StoreOrder')->where($where)->find();
  243. if (empty($order)) $this->error('待取消的订单不存在,请稍候再试!');
  244. if (in_array($order['status'], ['1', '2'])) {
  245. $result = Db::name('StoreOrder')->where($where)->update([
  246. 'status' => '0',
  247. 'cancel_state' => '1',
  248. 'cancel_at' => date('Y-m-d H:i:s'),
  249. 'cancel_desc' => '用户主动取消订单!',
  250. ]);
  251. if ($result !== false && OrderService::syncStock($order['order_no'])) {
  252. $this->success('订单取消成功!');
  253. } else {
  254. $this->error('订单取消失败,请稍候再试!');
  255. }
  256. } else {
  257. $this->error('该订单状态不允许取消哦~');
  258. }
  259. }
  260. /**
  261. * 订单确认收货
  262. * @throws \think\Exception
  263. * @throws \think\db\exception\DataNotFoundException
  264. * @throws \think\db\exception\ModelNotFoundException
  265. * @throws \think\exception\DbException
  266. * @throws \think\exception\PDOException
  267. */
  268. public function confirm()
  269. {
  270. $where = [
  271. 'mid' => $this->member['id'],
  272. 'order_no' => $this->request->post('order_no'),
  273. ];
  274. $order = Db::name('StoreOrder')->where($where)->find();
  275. if (empty($order)) $this->error('待确认的订单不存在,请稍候再试!');
  276. if (in_array($order['status'], ['4'])) {
  277. if (Db::name('StoreOrder')->where($where)->update(['status' => '5']) !== false) {
  278. $this->success('订单确认成功!');
  279. } else {
  280. $this->error('订单取确认失败,请稍候再试!');
  281. }
  282. } else {
  283. $this->error('该订单状态不允许确认哦~');
  284. }
  285. }
  286. /**
  287. * 订单状态统计
  288. * @throws \think\db\exception\DataNotFoundException
  289. * @throws \think\db\exception\ModelNotFoundException
  290. * @throws \think\exception\DbException
  291. */
  292. public function total()
  293. {
  294. $result = Db::name('StoreOrder')
  295. ->fieldRaw('mid,status,count(1) count')
  296. ->where(['mid' => $this->mid])
  297. ->group('status')
  298. ->select();
  299. $this->success('获取订单统计记录!', $result);
  300. }
  301. }