model = new OrderModel; parent::_initialize(); //判断登录用户是否是员工 } /** * @ApiTitle( 订单详情) * @ApiSummary(订单详情) * @ApiRoute(/api/school/order/detail) * @ApiMethod(GET) * @ApiParams(name = "id", type = "int",required=true,description = "订单id或订单号") * @ApiReturn({ * *}) */ public function detail(){ $id = $this->request->get('id/d',''); if(empty($id)){ $this->error(__('缺少必要参数')); } try { $res = OrderModel::getDetail($id,$this->classes_lib_ids); } catch (\Exception $e){ // Log::log($e->getMessage()); $this->error($e->getMessage(),['errcode'=>$e->getCode()]); } $this->success('获取成功', ['detail' => $res]); } /** * @ApiTitle( 我的订单列表接口) * @ApiSummary(我的订单列表接口) * @ApiRoute(/api/school/order/order_list) * @ApiMethod(GET) * @ApiParams(name = "keywords", type = "string",required=false,description = "搜索关键字") * @ApiParams(name = "page", type = "string",required=true,description = "页数") * @ApiParams(name = "limit", type = "string",required=true,description = "条数") * @ApiParams(name = "status", type = "string",required=false,description = "状态搜索条件:-3=已取消,0=待支付,3=使用中,6=已退款,9=已完成") * @ApiParams(name = "classes_lib_id", type = "int",required=false,description = "课程id") * @ApiReturn({ * *}) */ public function order_list() { $user_id = 0; $user = $this->auth->getUser();//登录用户 if($user)$user_id = $user['id']; $page = $this->request->get('page/d', 0); //页数 $limit = $this->request->get('limit/d', 0); //条数 $keywords = $this->request->get('keywords/s', ''); //搜索关键字 $status = $this->request->get('status/s', ''); //搜索关键字 $classes_lib_id = $this->request->get('classes_lib_id/s', ''); //搜索关键字 // $type = $this->request->get('type/s', ''); //筛选学员和教练单 try{ //当前申请状态 $res = $this->model::workList($user_id,$page, $limit,$keywords,$status,$classes_lib_id,$this->classes_lib_ids); // if($user_id =='670153'){ // file_put_contents("ceshi66.txt",(new AppointmentOrder())->getLastSql()); // } }catch (\Exception $e){ $this->error($e->getMessage()); } $this->success('查询成功', $res); } /** * @ApiTitle( 我的订单数量接口) * @ApiSummary(返回订单各个数量) * @ApiRoute(/api/school/order/order_count) * @ApiMethod(GET) * @ApiParams(name = "classes_lib_id", type = "int",required=false,description = "课程id") * @ApiReturn({ * *}) */ public function order_count(){ $user_id = 0; $user = $this->auth->getUser();//登录用户 if($user)$user_id = $user['id']; $classes_lib_id = $this->request->get('classes_lib_id/s', ''); //搜索关键字 try{ $res = $this->model::workCount($classes_lib_id,$this->classes_lib_ids); }catch (\Throwable $e){ $this->error($e->getMessage()); } $this->success('查询成功', $res); } }