123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- /**
- * @copyright Copyright (c) 2017 https://www.sapixx.com All rights reserved.
- * @license Licensed (http://www.apache.org/licenses/LICENSE-2.0).
- * @author pillar<ltmn@qq.com>
- * 订单管理
- */
- namespace app\popupshop\controller;
- use think\facade\Request;
- use app\common\controller\Manage;
- use app\popupshop\model\Order as AppOrder;
- use app\popupshop\model\OrderCache;
- class Order extends Manage{
- public function initialize() {
- parent::initialize();
- $this->assign('pathMaps',[['name'=>'订单管理','url'=>url("popupshop/Order/index")]]);
- }
- /**
- * 订单库
- * @return void
- */
- protected function orderList(){
- $starttime = Request::param('starttime');
- $endtime = Request::param('endtime');
- if(!empty($starttime) && !empty($endtime)){
- $starttime = strtotime(date('Y-m-d 00:00:00',strtotime($starttime)));
- $endtime = strtotime(date('Y-m-d 23:59:59',strtotime($endtime)));
- if($starttime > $endtime){
- $this->error('开始日期不能大于结束日期');
- }
- if($endtime-$starttime >= 518401){
- $this->error('只支持连续6天的查找');
- }
- }
- $view['keyword'] = Request::param('keyword');
- $view['status'] = Request::param('status/d',0);
- $path[] = ['name'=>'订单管理','url'=>url("popupshop/Order/index")];
- $condition = [];
- if(!empty($starttime) && !empty($endtime)){
- $condition[] = ['order_starttime','>=',$starttime];
- $condition[] = ['order_starttime','<=',$endtime];
- }
- if(!empty($view['keyword'])){
- $condition = [['order_no','=',trim($view['keyword'])]];
- }
- $condition[] = ['member_miniapp_id', '=', $this->member_miniapp_id];
- $view['count'] = AppOrder::where($condition)->count();
- $view['payment'] = AppOrder::where($condition)->where(['paid_at' => 1, 'is_del' => 0])->sum('order_amount');
- $view['no_payment'] = AppOrder::where($condition)->where(['paid_at' => 0, 'is_del' => 0])->sum('order_amount');
- switch ($view['status']) {
- case 1:
- $condition[] = ['paid_at','=',0];
- $condition[] = ['is_del','=',0];
- $path[] = ['name'=>'未付款','url'=>'javascript:;'];
- break;
- case 2:
- $condition[] = ['paid_at','=',1];
- $condition[] = ['is_del','=',0];
- $path[] = ['name'=>'已付款','url'=>'javascript:;'];
- break;
- case 3:
- $condition[] = ['express_status','=',1];
- $condition[] = ['is_del','=',0];
- $condition[] = ['status','=',0];;
- $path[] = ['name'=>'已发货','url'=>'javascript:;'];
- break;
- case 4:
- $condition[] = ['is_del','=',1];
- $path[] = ['name'=>'回收站','url'=>'javascript:;'];
- break;
- case 5:
- $condition[] = ['status','=',1];
- $condition[] = ['is_del','=',0];;
- $path[] = ['name'=>'已结单','url'=>'javascript:;'];
- break;
- default:
- $condition[] = ['is_del','=',0];
- break;
- }
- $view['lists'] = AppOrder::where($condition)->order('id desc')->paginate(10);
- $view['order'] = AppOrder::order_data($view['lists']);
- $view['starttime'] = empty($starttime) ? time() : $starttime;
- $view['endtime'] = empty($endtime) ? time() : $endtime;;
- $view['pathMaps'] = $path;
- return $view;
- }
- /**
- * 订单列表
- */
- public function index(){
- return view()->assign(self::orderList());
- }
- /**
- * 导出Excel
- * @return void
- */
- public function excel(){
- header("Content-type: text/plain");
- header("Accept-Ranges: bytes");
- header("Content-type:application/vnd.ms-excel");
- header("Content-Disposition:attachment;filename=Order_".date('Y-m-d').".xls");
- header("Pragma: no-cache");
- header("Expires: 0");
- return view()->assign(self::orderList());
- }
- /**
- * 订单预览
- */
- public function view(){
- $order_no = Request::param('order_no');
- $view['order'] = AppOrder::order_data(AppOrder::getOrder($order_no,0,0));
- return view()->assign($view);
- }
- /**
- * 发货
- */
- public function sendgoods(){
- if(request()->isAjax()){
- $data = [
- 'order_no' => Request::param('order_no/s'),
- 'express_company' => Request::param('express_company/s'),
- 'express_no' => Request::param('express_no/s'),
- ];
- $validate = $this->validate($data,'Order.sendgoods');
- if(true !== $validate){
- return enjson(0,$validate);
- }
- //判断当前商品是否完成
- $result = AppOrder::where(['paid_at' => 1,'order_no' => $data['order_no']])->find();
- if(empty($result)){
- return json(['code'=>0,'msg'=>'商品没有满足发货条件']);
- }
- $data['express_company'] = $data['express_company'];
- $data['express_no'] = $data['express_no'];
- $data['express_status'] = 1;
- $data['express_starttime'] = time();
- $rel = AppOrder::where(['id' => $result->id])->update($data);
- if($rel){
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['order_no' => $data['order_no']])]);
- }
- return enjson(0);
- }else{
- $order_no = Request::param('order_no/s');
- $view['order'] = AppOrder::order_data(AppOrder::getOrder($order_no,0,0));
- if(empty($view['order'])){
- $this->error("404 NOT FOUND");
- }
- $view['order_no'] = $order_no;
- return view()->assign($view);
- }
- }
-
- /**
- * 后台人工修改订单为已发货
- */
- public function paid(){
- $order_no = Request::param('order_no');
- $result = AppOrder::where(['paid_at' => 0,'order_no' => $order_no])->update(['paid_at' => 1,'payment_id' => 0,'order_starttime' => time(),'paid_no' => 'GM'.order_no()]);
- if($result){
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['order_no' => $order_no,'status' => Request::param('status/d',0)])]);
- }
- return enjson(0);
- }
- /**
- * 删除
- */
- public function delete($order_no){
- $rel = AppOrder::where(['order_no' => $order_no])->find();
- if($rel){
- if($rel['is_del'] == 0){
- $result = AppOrder::update(['is_del'=>1],['order_no' => $order_no]);
- }else{
- $result = AppOrder::where(['order_no' => $order_no])->delete();
- if($result){
- OrderCache::where(['order_no' => $order_no])->delete();
- }
- }
- if($result){
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['status' => Request::param('status/d',0)])]);
- }
- }
- return enjson(0);
- }
- /**
- * 清空回收站
- */
- public function alldelete(){
- $rel = AppOrder::where(['is_del'=>1])->select();
- if($rel){
- foreach ($rel as $value) {
- AppOrder::where(['order_no' => $value['order_no']])->delete();
- OrderCache::where(['order_no' => $value['order_no']])->delete();
- }
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['status' => Request::param('status/d',0)])]);
- }
- return enjson(0);
- }
- /**
- * 确认收货
- */
- public function completion(){
- $order_no = Request::param('order_no');
- $result = AppOrder::update(['status'=>1],['express_status'=>1,'paid_at' => 1,'order_no' => $order_no]);
- if($result){
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['order_no' => $order_no,'status' => Request::param('status/d',0)])]);
- }else{
- return enjson(0);
- }
- }
- /**
- * 订单完成
- */
- public function force_completion(){
- $order_no = Request::param('order_no');
- $result = AppOrder::update(['status'=>1],['order_no' => $order_no,'paid_at' => 0]);
- if($result){
- return enjson(200,'操作成功',['url' => url('popupshop/Order/index',['order_no' => $order_no,'status' => Request::param('status/d',0)])]);
- }else{
- return enjson(0);
- }
- }
- }
|