Order.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\controller\Config;
  4. use EasyWeChat\Factory;
  5. use library\Controller;
  6. use hg\apidoc\annotation as Apidoc;
  7. use think\Db;
  8. /**
  9. * @title 订单管理
  10. * @controller Order
  11. * @group order
  12. */
  13. class Order extends Base {
  14. /**
  15. * 订单列表
  16. */
  17. public function order_list(){
  18. $uid = $this->uid;
  19. $is_pay = $this->request->param('status');
  20. $data = $this->request->param('data',0);
  21. //未刷出订单列表
  22. if ($is_pay == 2){
  23. $where[] = ['bo.uid','=',$uid];
  24. $where[] = ['c.is_deleted','=',0];
  25. if (empty($uid)){
  26. $this->error('请通过正规途径进入','','400');
  27. }
  28. if (!empty($data['limit'])){
  29. $limit = $data['limit'];
  30. }else{
  31. $limit = 10;
  32. }
  33. if (!empty($data['page'])){
  34. $page = $data['page'];
  35. }else{
  36. $page = 1;
  37. }
  38. $list = Db::table('hy_brush_order')
  39. ->alias('bo')
  40. ->field('bo.id,bo.money,bo.is_pay,c.bank,c.bank_card')
  41. ->leftJoin('hy_card c','bo.cid=c.id')
  42. ->where($where)
  43. ->page($page,$limit)
  44. ->order('is_pay asc')
  45. ->select();
  46. foreach ($list as $k=>$v){
  47. if ($v['is_pay'] == 1) {
  48. $list[$k]['status_name'] = '付款成功';
  49. }elseif ($v['is_pay'] == 0){
  50. $list[$k]['status_name'] = '待付款';
  51. }
  52. $bank = Config('bank');
  53. $list[$k]['bank_name'] = $bank[$v['bank']];
  54. }
  55. if ($list){
  56. $this->success('请求成功',$list,'200');
  57. }else{
  58. $this->success('暂无数据',[],'200');
  59. }
  60. }
  61. //订单列表
  62. else{
  63. $where[] = ['uid','=',$uid];
  64. if (strlen($is_pay) > 0){
  65. $where[] = ['is_pay','=',$is_pay];
  66. }
  67. if (empty($uid)){
  68. $this->error('请通过正规途径进入','','400');
  69. }
  70. if (!empty($data['limit'])){
  71. $limit = $data['limit'];
  72. }else{
  73. $limit = 10;
  74. }
  75. if (!empty($data['page'])){
  76. $page = $data['page'];
  77. }else{
  78. $page = 1;
  79. }
  80. $list = Db::table('hy_order')->field('id,money,order_no,is_pay')->where($where)->page($page,$limit)->order('is_pay asc')->select();
  81. foreach ($list as $k=>$v){
  82. if ($v['is_pay'] == 1) {
  83. $list[$k]['status_name'] = '付款成功';
  84. }elseif ($v['is_pay'] == 0){
  85. $list[$k]['status_name'] = '待付款';
  86. }
  87. $cards = Db::table('hy_order_card')
  88. ->alias('oc')
  89. ->field('c.bank_card,c.bank,oc.month,oc.money as monthly_expenses')
  90. ->leftJoin('hy_card c','c.id=oc.cid')
  91. ->where(['oc.oid'=>$v['id']])
  92. ->select();
  93. $bank = Config('bank');
  94. foreach ($cards as $kk=>$vv){
  95. $cards[$kk]['bank_name'] = $bank[$vv['bank']];
  96. }
  97. $list[$k]['cards'] = $cards;
  98. }
  99. if ($list){
  100. $this->success('请求成功',$list,'200');
  101. }else{
  102. $this->success('暂无数据',[],'200');
  103. }
  104. }
  105. }
  106. /**
  107. * 我的
  108. * */
  109. public function my(){
  110. $uid = $this->uid;
  111. $user_info = Db::table('hy_user')
  112. ->field('headimgurl,nickname,realname,phone')
  113. ->where('id',$uid)
  114. ->find();
  115. if ($user_info){
  116. $this->success('请求成功',$user_info,'200');
  117. }else{
  118. $this->success('暂无数据',[],'200');
  119. }
  120. }
  121. /**
  122. * 修改个人信息
  123. * */
  124. public function up_my(){
  125. $uid = $this->uid;
  126. $data = $this->request->param();
  127. if (empty($data['realname'])){
  128. $this->error('真实姓名不能为空','','400');
  129. }
  130. if (empty($data['phone'])){
  131. $this->error('手机号不能为空','','400');
  132. }
  133. if (strlen($data['phone'])<11){
  134. $this->error('手机号格式不正确','','400');
  135. }
  136. $up_data['realname'] = $data['realname'];
  137. $up_data['phone'] = $data['phone'];
  138. $user_info = Db::table('hy_user')->where('id',$uid)->find();
  139. if ($user_info['realname'] == $data['realname'] && $user_info['phone'] == $data['phone']){
  140. $this->error('修改信息不能和以前一致','','400');
  141. }
  142. $is_up = Db::table('hy_user')->where('id',$uid)->update($up_data);
  143. if ($is_up){
  144. $this->success('请求成功',$is_up,'200');
  145. }
  146. }
  147. /**
  148. * 付款
  149. * */
  150. public function wx_pay(){
  151. $uid = $this->uid;
  152. $user_info = Db::table('hy_user')->where('id',$uid)->find();
  153. if (!$user_info){
  154. $this->error('去登录','','400');
  155. }
  156. $oid = $this->request->param('id/d',0);
  157. if (empty($oid)){
  158. $this->error('数据错误','','400');
  159. }
  160. $order_info = Db::table('hy_order')->where('id',$oid)->find();
  161. if ($order_info){
  162. if ($order_info['is_pay'] == 1){
  163. $this->success('您已支付,请勿重复支付');
  164. }
  165. $money = $order_info['money']*100;
  166. $app = Factory::payment(Config('mini_program'));
  167. $jssdk = $app->jssdk;
  168. $result = $app->order->unify([
  169. 'body' => '泓易月结账单',
  170. 'out_trade_no' => $order_info['order_no'],
  171. 'total_fee' => $money,
  172. 'notify_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/login/notify',
  173. 'trade_type' => 'JSAPI',
  174. 'openid' => $user_info['openid'],
  175. ]);
  176. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  177. $pay_data['order_no'] = $order_info['order_no'];
  178. $pay_data['return_data'] = json_encode($result);
  179. $pay_data['uid'] = $uid;
  180. $pay_data['create_at'] = date('Y-m-d H:i:s',time());
  181. Db::table('hy_wxpay_log')->insert($pay_data);
  182. $prepayId = $result['prepay_id'];
  183. $json = $jssdk->sdkConfig($prepayId);
  184. $this->success('请求成功',$json,'200');
  185. } else {
  186. $this->error('调起支付失败,请稍后尝试','','400');
  187. }
  188. }else{
  189. $this->error('数据错误','','400');
  190. }
  191. }
  192. /**
  193. * 未刷出账单列表
  194. * */
  195. public function brush_order_list(){
  196. $uid = $this->uid;
  197. //$uid = 12;
  198. $is_pay = $this->request->param('status');
  199. $data = $this->request->param('data',0);
  200. $where[] = ['bo.uid','=',$uid];
  201. if (strlen($is_pay) > 0){
  202. $where[] = ['bo.is_pay','=',$is_pay];
  203. }
  204. if (empty($uid)){
  205. $this->error('请通过正规途径进入','','400');
  206. }
  207. if (!empty($data['limit'])){
  208. $limit = $data['limit'];
  209. }else{
  210. $limit = 10;
  211. }
  212. if (!empty($data['page'])){
  213. $page = $data['page'];
  214. }else{
  215. $page = 1;
  216. }
  217. $list = Db::table('hy_brush_order')
  218. ->alias('bo')
  219. ->field('bo.id,bo.money,bo.is_pay,c.bank,c.bank_card')
  220. ->leftJoin('hy_card c','bo.cid=c.id')
  221. ->where($where)
  222. ->page($page,$limit)
  223. ->select();
  224. foreach ($list as $k=>$v){
  225. if ($v['is_pay'] == 1) {
  226. $list[$k]['status_name'] = '付款成功';
  227. }elseif ($v['is_pay'] == 0){
  228. $list[$k]['status_name'] = '待付款';
  229. }
  230. $bank = Config('bank');
  231. $list[$k]['bank_name'] = $bank[$v['bank']];
  232. }
  233. if ($list){
  234. $this->success('请求成功',$list,'200');
  235. }else{
  236. $this->success('暂无数据',[],'200');
  237. }
  238. }
  239. /**
  240. * 未刷出金额付款
  241. * */
  242. public function brush_wx_pay(){
  243. $uid = $this->uid;
  244. $user_info = Db::table('hy_user')->where('id',$uid)->find();
  245. if (!$user_info){
  246. $this->error('去登录','','400');
  247. }
  248. $oid = $this->request->param('id/d',0);
  249. if (empty($oid)){
  250. $this->error('数据错误','','400');
  251. }
  252. $order_info = Db::table('hy_brush_order')->where('id',$oid)->find();
  253. if ($order_info){
  254. if ($order_info['is_pay'] == 1){
  255. $this->success('您已支付,请勿重复支付');
  256. }
  257. $money = $order_info['money']*100;
  258. $app = Factory::payment(Config('mini_program'));
  259. $jssdk = $app->jssdk;
  260. $result = $app->order->unify([
  261. 'body' => '泓易未刷出金额账单',
  262. 'out_trade_no' => $order_info['order_no'],
  263. 'total_fee' => $money,
  264. 'notify_url' => 'https://'.$_SERVER['HTTP_HOST'].'/api/login/brush_notify',
  265. 'trade_type' => 'JSAPI',
  266. 'openid' => $user_info['openid'],
  267. ]);
  268. if ($result['return_code'] == 'SUCCESS' && $result['result_code'] == 'SUCCESS') {
  269. $pay_data['order_no'] = $order_info['order_no'];
  270. $pay_data['return_data'] = json_encode($result);
  271. $pay_data['uid'] = $uid;
  272. $pay_data['create_at'] = date('Y-m-d H:i:s',time());
  273. Db::table('hy_wxpay_log')->insert($pay_data);
  274. $prepayId = $result['prepay_id'];
  275. $json = $jssdk->sdkConfig($prepayId);
  276. $this->success('请求成功',$json,'200');
  277. } else {
  278. $this->error('调起支付失败,请稍后尝试','','400');
  279. }
  280. }else{
  281. $this->error('数据错误','','400');
  282. }
  283. }
  284. }