Order.php 21 KB

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