Order.php 13 KB

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