Order.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. <?php
  2. namespace app\api\controller;
  3. use app\admin\model\Cannelorder;
  4. use app\admin\model\Evaluate;
  5. use app\admin\model\Pay;
  6. use app\admin\model\RecoveryBill;
  7. use app\admin\model\Recoveryorder;
  8. use app\admin\model\Good;
  9. use app\admin\model\Goodcard;
  10. use app\admin\model\Goodorder;
  11. use app\admin\model\Tableware;
  12. use app\admin\model\TablewareBill;
  13. use app\admin\model\TablewareOrder;
  14. use app\admin\model\Useradress;
  15. use app\admin\model\UserRelations;
  16. use app\common\controller\Api;
  17. use EasyWeChat\Factory;
  18. use think\Db;
  19. use think\Exception;
  20. use think\exception\ErrorException;
  21. class Order extends Api
  22. {
  23. protected $noNeedLogin = [];
  24. protected $noNeedRight = ['*'];
  25. /**
  26. * 餐具订单
  27. */
  28. public function create_order(){
  29. $user = $this->auth->id;
  30. $input = input();
  31. $tableware_model = new Tableware();
  32. $addres_model = new Useradress();
  33. $user_relationes_model = new UserRelations();
  34. $address_id = $input['address_id'];
  35. $b_user_id = $user_relationes_model->where('c_user_id',$user)->where('b_level',3)->field('b_user_id,status')->order('id','desc')->find();
  36. if(empty($b_user_id)){
  37. $this->error('联系管理人员添加配送员');
  38. }
  39. if($b_user_id['status']==0){
  40. $user_relationes_model->save(['status'=>1],['c_user_id'=>$user,'b_level'=>3]);
  41. }
  42. $b_user_info = user_info($b_user_id['b_user_id']);
  43. $address_info = $addres_model->where('id',$address_id)->find();
  44. if(empty($input['tableware_id'])){
  45. $this->error('餐具信息不能为空');
  46. }
  47. $tableware_info = $tableware_model->where('id',$input['tableware_id'])->where('state',1)->find();
  48. $image = explode(',',$tableware_info['showimages']);
  49. if(empty($tableware_info)){
  50. $this->error('餐具信息错误');
  51. }
  52. if($input['num']<1){
  53. $this->error('下单餐具数量不能小于1');
  54. }
  55. if($tableware_info['stock']<$input['num']){
  56. $this->error('库存不足');
  57. }
  58. $order_no =order_no($user);
  59. $data =[
  60. 'order_no'=>$order_no,
  61. 'c_user_id'=>$user,
  62. 'c_username'=>$this->auth->username,
  63. 'c_mobile'=>$this->auth->mobile,
  64. 'tableware_id'=>$input['tableware_id'],
  65. 'tableware_name'=>$tableware_info['tableware_name'],
  66. 'tableware_image'=>$image[0],
  67. 'number'=>$input['num'],
  68. 'price'=>$tableware_info['price'],
  69. 'order_money'=>$input['num']*$tableware_info['price'],
  70. 'create_time'=>time(),
  71. 'city'=>city_name($address_info['province_id']).city_name($address_info['city_id']).city_name($address_info['area_id']),
  72. 'address'=>$address_info['address'],
  73. 'order_desc'=>$input['order_desc'],
  74. 'delivery_status'=>1,
  75. 'status'=>2,
  76. 'b_user_id'=>$b_user_id['b_user_id'],
  77. 'b_username'=>$b_user_info['username'],
  78. 'b_mobile'=>$b_user_info['mobile'],
  79. 'admin_id'=>$tableware_info['admin_id'],
  80. 'admin_name'=>Db::name('admin')->where('id',$tableware_info['admin_id'])->value('nickname')
  81. ];
  82. $tableware_order_model = new TablewareOrder();
  83. Db::startTrans();
  84. try {
  85. $tableware_order_model->insertGetId($data);
  86. $tableware_model->isUpdate(true,['id'=>$input['tableware_id']])->save(['stock'=>$tableware_info['stock']-$input['num']]);
  87. $sms_model = new Chuyutimedtask();
  88. $sms_model->order_sms(['mobile'=>$this->auth->mobile,'score'=>$this->auth->score]);
  89. Db::commit();
  90. $this->success('订单创建成功');
  91. }catch (Exception $e){
  92. Db::rollback();
  93. $this->error('订单为创建失败,重新下单');
  94. }
  95. }
  96. /**
  97. * @return void
  98. * 我的厨余餐具订单
  99. */
  100. public function me_tab_order(){
  101. $page = input('page',1);
  102. $mon = input('date',date('Y-m'));
  103. $user = $this->auth->id;
  104. $tableware_model = new TablewareOrder();
  105. $tableware_bill_model = new TablewareBill();
  106. $date = getMonthRange($mon);
  107. $is_have = $tableware_bill_model->whereBetween('date',[strtotime($date['sdate']),strtotime($date['edate'])])->where('c_user_id',$user)->find();
  108. $list = $tableware_model->whereBetween('create_time',[strtotime($date['sdate']),strtotime($date['edate'])])->where('c_user_id',$user)->paginate('5','',['page'=>$page]);
  109. $sate = 1;
  110. $data['bill']=[];
  111. if($is_have){
  112. if($is_have['status']==1) {
  113. $sate = 2;
  114. }
  115. if($is_have['status']==2) {
  116. $sate = 3;
  117. }
  118. $data['bill']=$is_have;
  119. }
  120. $data['list']=$list;
  121. $data['sate']=$sate;
  122. $this->success('月份订单',$data);
  123. }
  124. /**
  125. * @return void
  126. * @throws \think\db\exception\DataNotFoundException
  127. * @throws \think\db\exception\ModelNotFoundException
  128. * @throws \think\exception\DbException
  129. * 餐具订单
  130. */
  131. public function tab_order(){
  132. $user_id = $this->auth->id;
  133. $page = input('page',1);
  134. $tableware_order_model = new TablewareOrder();
  135. $info = $tableware_order_model->where('c_user_id',$user_id)->paginate('5','',['page'=>$page]);
  136. $this->success('餐具配送订单',$info);
  137. }
  138. /**
  139. * @return void
  140. * @throws \think\db\exception\DataNotFoundException
  141. * @throws \think\db\exception\ModelNotFoundException
  142. * @throws \think\exception\DbException
  143. * 餐具订单
  144. */
  145. public function tab_order_info(){
  146. $user_id = $this->auth->id;
  147. $tab_id = input('order_id');
  148. $tableware_order_model = new TablewareOrder();
  149. $info = $tableware_order_model->where('c_user_id',$user_id)->where('id',$tab_id)->find();
  150. $this->success('餐具配送订单',$info);
  151. }
  152. /**
  153. * @return void
  154. *商城商品加入购物车
  155. */
  156. public function good_card(){
  157. $good_model = new Good();
  158. $good_cart_model = new Goodcard();
  159. $user_id = $this->auth->id;
  160. $good_id = input('id');
  161. $num = input('num',0);
  162. if(empty($good_id)){
  163. $this->error('商品信息不能为空');
  164. }
  165. $good_info = $good_model->where('id',$good_id)->field('stock,name,goodimgaes,price')->find();
  166. $image = explode(',',$good_info['goodimgaes']);
  167. if($num<1){
  168. if($num>$good_info['num']){
  169. $this->error('库存不足');
  170. }
  171. $this->error('数量不能小于1');
  172. }
  173. $is_have = $good_cart_model->where(array('user_id'=>$user_id,'good_id'=>$good_id))->find();
  174. if($is_have){
  175. $good_cart_model->isUpdate(true,['user_id'=>$user_id,'good_id'=>$good_id])->save(['num'=>$is_have['num']+$num]);
  176. }else {
  177. $data = [
  178. 'good_id' => $good_id,
  179. 'good_name' => $good_info['name'],
  180. 'good_image' => $image[0],
  181. 'price' => $good_info['price'],
  182. 'num' => $num,
  183. 'create_time' => time(),
  184. 'user_id' => $user_id
  185. ];
  186. $good_cart_model->insert($data);
  187. }
  188. $this->success('加入购物车成功');
  189. }
  190. /**
  191. * @return void
  192. *商品下单
  193. */
  194. public function create_good_order(){
  195. $user_id = $this->auth->id;
  196. $goods_model = new Good();
  197. $good_order_order = new Goodorder();
  198. $address_model = new Useradress();
  199. $score=input('score',0);
  200. $good_id = input('good_id');
  201. $address_id = input('address_id');
  202. $address_info = $address_model->where('id',$address_id)->where('user_id',$user_id)->find();
  203. if(empty($good_id)){
  204. $this->error('商品信息不能为空');
  205. }
  206. $good_info = $goods_model->where('id',$good_id)->find();
  207. $image = explode(',',$good_info['goodimgaes']);
  208. $num = input('num');
  209. if($num<1){
  210. if($num>$good_info['num']){
  211. $this->error('库存不足');
  212. }
  213. $this->error('数量不能小于1');
  214. }
  215. $order_no = order_no($user_id);
  216. $data = [
  217. 'good_id'=>$good_id,
  218. 'user_id'=>$user_id,
  219. 'order_no'=>$order_no,
  220. 'good_name'=>$good_info['name'],
  221. 'good_image'=>$image[0],
  222. 'price'=>$good_info['price'],
  223. 'num'=>$num,
  224. 'total'=>$good_info['price']*$num,
  225. 'status'=>1,
  226. 'pay_no'=>pay_no($user_id),
  227. 'realname'=>$this->auth->username,
  228. 'phone'=>$this->auth->mobile,
  229. 'city'=>city_name($address_info['province_id']).city_name('city_ic').city_name('area_id'),
  230. 'address'=>$address_info['address'],
  231. 'create_time'=>time(),
  232. ];
  233. if($score>=config('site.score_cash_offset')){
  234. $user_collont = new User();
  235. $user_collont->add_score_log($user_id,$score,2,'商城购物消耗');
  236. $data['total']=$data['total']-$score/config('site.score_cash_offset');
  237. if($data['total']<=0){
  238. $data['total']=0.01;
  239. }
  240. }
  241. $good_order_order->insert($data);
  242. $pay = [
  243. 'pay_no'=>$data['pay_no'],
  244. 'status'=>1,
  245. 'user_id'=>$user_id,
  246. 'username'=> $this->auth->username,
  247. 'price'=>$data['total'],
  248. 'create_time'=>time()
  249. ];
  250. $pay_model = new Pay();
  251. $pay_model->insert($pay);
  252. $this->success('订单创建成功',['pay'=>$data['pay_no']]);
  253. }
  254. /**
  255. * @return void
  256. * @throws \think\exception\DbException
  257. * 购物车列表
  258. */
  259. public function card_list(){
  260. $page = input('page',1);
  261. $user_id = $this->auth->id;
  262. $good_card_model = new Goodcard();
  263. $list = $good_card_model->alias('c')->join('good g','g.id=c.good_id')->where('user_id',$user_id)->order('id','DESC')->field('c.*,g.price new_price')->paginate('5','',['page'=>$page]);
  264. $this->success('购物车列表',$list);
  265. }
  266. /**
  267. * @return void
  268. * 购物车修改
  269. */
  270. public function card_save(){
  271. $crad_id= input('crad_id');
  272. $num = input('number');
  273. $good_card_model = new Goodcard();
  274. Db::startTrans();
  275. try {
  276. $good_card_model->save(['num'=>$num],['id'=>$crad_id]);
  277. Db::commit();
  278. $this->success('修改成功');
  279. }catch (ErrorException $e){
  280. Db::rollback();
  281. $this->error('修改失败');
  282. }
  283. }
  284. /**
  285. * @return void
  286. * 购物车删除
  287. */
  288. public function card_delect(){
  289. $crad_id= input('crad_id');
  290. $user_id = $this->auth->id;
  291. $good_card_model = new Goodcard();
  292. Db::startTrans();
  293. try {
  294. $good_card_model->where(array('id'=>$crad_id,'user_id'=>$user_id))->delete();
  295. Db::commit();
  296. $this->success('删除成功');
  297. }catch (ErrorException $e){
  298. Db::rollback();
  299. $this->error('删除失败');
  300. }
  301. }
  302. /**
  303. * @return void
  304. * 购物车下单
  305. */
  306. public function card_order(){
  307. $good_card_model = new Goodcard();
  308. $good_model = new Good();
  309. $goo_order_model = new Goodorder();
  310. $address_model = new Useradress();
  311. $user_id = $this->auth->id;
  312. $card_ids = input('card_ids');
  313. $address_id = input('address_id');
  314. $address_info = $address_model->where('id',$address_id)->where('user_id',$user_id)->find();
  315. $gooo_card_list = $good_card_model->whereIn('id',$card_ids)->select();
  316. $total = 0;
  317. $pay_no=pay_no($user_id);
  318. foreach ($gooo_card_list as &$v){
  319. $good_info = $good_model->where('id',$v['good_id'])->find();
  320. $image = explode(',',$good_info['goodimgaes']);
  321. $data[] = [
  322. 'good_id'=>$good_info['id'],
  323. 'user_id'=>$user_id,
  324. 'order_no'=>order_no($user_id),
  325. 'good_name'=>$good_info['name'],
  326. 'good_image'=>$image[0],
  327. 'price'=>$good_info['price'],
  328. 'num'=>$v['num'],
  329. 'total'=>$good_info['price']*$v['num'],
  330. 'status'=>1,
  331. 'pay_no'=>$pay_no,
  332. 'realname'=>$this->auth->username,
  333. 'phone'=>$this->auth->mobile,
  334. 'city'=>city_name($address_info['province_id']).city_name('city_ic').city_name('area_id'),
  335. 'address'=>$address_info['address'],
  336. 'create_time'=>time(),
  337. ];
  338. $total =$total+$good_info['price']*$v['num'];
  339. }
  340. $goo_order_model->insertAll($data);
  341. $score=input('score',0);
  342. if($score>=config('site.score_cash_offset')){
  343. $user_collont = new User();
  344. $user_collont->add_score_log($user_id,$score,2,'商城购物消耗');
  345. $total=$total-$score/config('site.score_cash_offset');
  346. if($total<=0){
  347. $total=0.01;
  348. }
  349. }
  350. $pay = [
  351. 'pay_no'=>$pay_no,
  352. 'status'=>1,
  353. 'user_id'=>$user_id,
  354. 'username'=> $this->auth->username,
  355. 'price'=>$total,
  356. 'create_time'=>time()
  357. ];
  358. $pay_model = new Pay();
  359. $pay_model->insert($pay);
  360. $good_card_model->whereIn('id',$card_ids)->delete();
  361. $this->success('下单成功',['pay'=>$pay_no]);
  362. }
  363. /**
  364. * @return void
  365. * @throws \think\exception\DbException
  366. * 我的商城订单
  367. */
  368. public function my_shop_goods(){
  369. $user_id = $this->auth->id;
  370. $good_model = new Goodorder();
  371. $page = input('page',1);
  372. $status = input('status');
  373. $where = [];
  374. if(!empty($status)){
  375. if($status>4){
  376. $where['status'] = ['in','5,7'];
  377. }
  378. else {
  379. $where['status'] = $status;
  380. }
  381. }
  382. $order_list = $good_model->where('user_id',$user_id)->where($where)->order('id','DESC')->paginate('5','',['page'=>$page]);
  383. $this->success('我的商城订单',$order_list);
  384. }
  385. /**s
  386. * @return void
  387. * 首页回收订单
  388. */
  389. public function my_recovery_order(){
  390. $user_id = $this->auth->id;
  391. $recovery_order_model = new Recoveryorder();
  392. $user_model = new \app\admin\model\User();
  393. $order_info = $recovery_order_model->where('c_user_id',$user_id)->order('create_time','DESC')->find();
  394. $user_info = $user_model->where('id',$order_info['b_user_id'])->field('username,nickname,mobile')->find();
  395. $order_info['h_name']=$user_info['username'];
  396. $order_info['mobile']=$user_info['mobile'];
  397. $this->success('最新回收订单',$order_info);
  398. }
  399. /**s
  400. * @return void
  401. * 首页回收订单
  402. */
  403. public function recovery_order_info(){
  404. $user_id = $this->auth->id;
  405. $order_id = input('order_id');
  406. $recovery_order_model = new Recoveryorder();
  407. $user_model = new \app\admin\model\User();
  408. $order_info = $recovery_order_model->where('c_user_id',$user_id)->where('id',$order_id)->find();
  409. $user_info = $user_model->where('id',$order_info['b_user_id'])->field('username,nickname,mobile')->find();
  410. $order_info['h_name']=$user_info['username'];
  411. $order_info['mobile']=$user_info['mobile'];
  412. $this->success('回收订单详情',$order_info);
  413. }
  414. /**
  415. * @return void
  416. * 我的厨余餐具订单
  417. */
  418. public function recovery_order_log(){
  419. $page = input('page',1);
  420. $mon = input('date',date('Y-m'));
  421. $user = $this->auth->id;
  422. $recovery_model = new Recoveryorder();
  423. $recovery_bill_model = new RecoveryBill();
  424. $date = getMonthRange($mon);
  425. $is_have = $recovery_bill_model->whereBetween('date',[strtotime($date['sdate']),strtotime($date['edate'])])->where('c_user_id',$user)->find();
  426. $list = $recovery_model->whereBetween('create_time',[strtotime($date['sdate']),strtotime($date['edate'])])->where('c_user_id',$user)->paginate('5','',['page'=>$page]);
  427. $sate = 1;
  428. $data['bill']=[];
  429. if($is_have){
  430. if($is_have['status']==1) {
  431. $sate = 2;
  432. }
  433. if($is_have['status']==2) {
  434. $sate = 3;
  435. }
  436. $data['bill']=$is_have;
  437. }
  438. $data['list']=$list;
  439. $data['sate']=$sate;
  440. $this->success('月份订单',$data);
  441. }
  442. /**
  443. * @return void
  444. * 取消订单
  445. */
  446. public function dis_order(){
  447. $user_id = $this->auth->id;
  448. $order_id = input('order_id');
  449. $good_order_model = new Goodorder();
  450. $status = $good_order_model->where('id',$order_id)->where('user_id',$user_id)->find();
  451. if($status['status']==1){
  452. $good_order_model->where('id',$order_id)->where('user_id',$user_id)->delete();
  453. $this->success('订单已取消');
  454. }
  455. if($status['status']==2){
  456. //退款
  457. $config = [
  458. 'app_id' => 'wxdc450b7c5d0a0f80',
  459. 'mch_id' => '1635096198',
  460. 'key' => 'e3NkU3L7vmz84H92kfKT5d9qBCOmvdEB', // API v2 密钥 (注意: 是v2密钥 是v2密钥 是v2密钥)
  461. 'cert_path' => ROOT_PATH.'public/cert/apiclient_cert.pem', // XXX: 绝对路径!!!!
  462. 'key_path' => ROOT_PATH.'public/cert/apiclient_key.pem', // XXX: 绝对路径!!!
  463. 'notify_url' => common_url() . '/api/Notice/tableware_notify', // 你也可以在下单时单独设置来想覆盖它
  464. ];
  465. $app = Factory::payment($config);
  466. $refund_no = 'TK' . pay_no(999);
  467. $result = $app->refund->byOutTradeNumber($status['pay_no'], $refund_no, $status['total']*100, $status['total']*100, [
  468. // 可在此处传入其他参数,详细参数见微信支付文档
  469. 'refund_desc' => '退款',
  470. ]);
  471. if($result['return_code']=='FAIL'||$result['result_code']=='FAIL'){
  472. $good_order_model->save(['status' => 5], ['id' => $order_id, 'user_id' => $user_id]);
  473. $this->error('退款出错请联系商家');
  474. }
  475. $good_order_model->save(['status' => 7], ['id' => $order_id, 'user_id' => $user_id]);
  476. $this->success('支付金额退回,注意查收');
  477. }
  478. if($status['status']==3) {
  479. $good_order_model->save(['status' => 5], ['id' => $order_id, 'user_id' => $user_id]);
  480. $this->success('订单已取消等待审核');
  481. }
  482. }
  483. /**
  484. * @return void
  485. * @throws \think\db\exception\DataNotFoundException
  486. * @throws \think\db\exception\ModelNotFoundException
  487. * @throws \think\exception\DbException
  488. * 商城订单评价
  489. */
  490. public function evaluate(){
  491. $order_model = new Goodorder();
  492. $evaluate_model = new Evaluate();
  493. $user_id = $this->auth->id;
  494. $order_id = input('order_id');
  495. $score = input('score',5);
  496. $images = input('images');
  497. $evaluate = input('evaluate');
  498. $order_info = $order_model->where('id',$order_id)->find();
  499. $data = [
  500. 'user_id'=>$user_id,
  501. 'order_id'=>$order_id,
  502. 'good_id'=>$order_info['good_id'],
  503. 'good_name'=>$order_info['good_name'],
  504. 'order_no'=>$order_info['order_no'],
  505. 'score'=>$score,
  506. 'evaluatetext'=>$evaluate,
  507. 'images'=>$images,
  508. 'create_time'=>time()
  509. ];
  510. $evaluate_model->insert($data);
  511. $order_model->save(['status'=>6],['id'=>$order_id]);
  512. $this->success('感谢您的评价');
  513. }
  514. /**
  515. * @return void
  516. *商家注销订单
  517. */
  518. public function user_canel_order(){
  519. $user_id = $this->auth->id;
  520. $user_relations_model = new Cannelorder();
  521. $info = $user_relations_model->where('c_user_id',$user_id)->find();
  522. $this->success('注销回收订单',$info);
  523. }
  524. /**
  525. * @return void
  526. * 商城订单确认收收货
  527. */
  528. public function good_over(){
  529. $order_id = input('order_id');
  530. $good_order_model=new Goodorder();
  531. $good_order_model->save(['status'=>4,'delivery_status'=>4],['id'=>$order_id]);
  532. $this->success('确定收货快去评价吧');
  533. }
  534. /**
  535. * @return void
  536. * 餐具订单确定收货
  537. */
  538. public function tableware_over(){
  539. $order_id = input('order_id');
  540. $good_order_model=new TablewareOrder();
  541. $good_order_model->save(['status'=>4,'delivery_status'=>4],['id'=>$order_id]);
  542. $this->success('收到货了');
  543. }
  544. public function good_status_num(){
  545. $good_order_model=new Goodorder();
  546. $a = $good_order_model->where(array('user_id'=>$this->auth->id,'status'=>2))->count();
  547. $b = $good_order_model->where(array('user_id'=>$this->auth->id,'status'=>3))->count();
  548. $c = $good_order_model->where(array('user_id'=>$this->auth->id,'status'=>4))->count();
  549. $d = $good_order_model->where(array('user_id'=>$this->auth->id,'status'=>5))->count();
  550. $data =[$a,$b,$c,$d];
  551. $this->success('状态数量',$data);
  552. }
  553. }