|  | @@ -1,21 +1,24 @@
 | 
											
												
													
														|  |  package com.ym.mec.web.controller;
 |  |  package com.ym.mec.web.controller;
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.auth.api.client.SysUserFeignService;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.auth.api.entity.SysUser;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.biz.dal.dao.EmployeeDao;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.biz.dal.entity.Employee;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.biz.dal.page.StudentPaymentOrderQueryInfo;
 | 
											
												
													
														|  |  import com.ym.mec.biz.service.StudentPaymentOrderDetailService;
 |  |  import com.ym.mec.biz.service.StudentPaymentOrderDetailService;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.biz.service.StudentPaymentOrderService;
 | 
											
												
													
														|  | 
 |  | +import com.ym.mec.common.controller.BaseController;
 | 
											
												
													
														|  |  import io.swagger.annotations.Api;
 |  |  import io.swagger.annotations.Api;
 | 
											
												
													
														|  |  import io.swagger.annotations.ApiImplicitParam;
 |  |  import io.swagger.annotations.ApiImplicitParam;
 | 
											
												
													
														|  |  import io.swagger.annotations.ApiImplicitParams;
 |  |  import io.swagger.annotations.ApiImplicitParams;
 | 
											
												
													
														|  |  import io.swagger.annotations.ApiOperation;
 |  |  import io.swagger.annotations.ApiOperation;
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | 
 |  | +import org.apache.commons.lang3.StringUtils;
 | 
											
												
													
														|  |  import org.springframework.beans.factory.annotation.Autowired;
 |  |  import org.springframework.beans.factory.annotation.Autowired;
 | 
											
												
													
														|  |  import org.springframework.security.access.prepost.PreAuthorize;
 |  |  import org.springframework.security.access.prepost.PreAuthorize;
 | 
											
												
													
														|  |  import org.springframework.web.bind.annotation.GetMapping;
 |  |  import org.springframework.web.bind.annotation.GetMapping;
 | 
											
												
													
														|  |  import org.springframework.web.bind.annotation.RequestMapping;
 |  |  import org.springframework.web.bind.annotation.RequestMapping;
 | 
											
												
													
														|  |  import org.springframework.web.bind.annotation.RestController;
 |  |  import org.springframework.web.bind.annotation.RestController;
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -import com.ym.mec.biz.dal.page.StudentPaymentOrderQueryInfo;
 |  | 
 | 
											
												
													
														|  | -import com.ym.mec.biz.service.StudentPaymentOrderService;
 |  | 
 | 
											
												
													
														|  | -import com.ym.mec.common.controller.BaseController;
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |  @RequestMapping("order")
 |  |  @RequestMapping("order")
 | 
											
												
													
														|  |  @Api(tags = "订单服务")
 |  |  @Api(tags = "订单服务")
 | 
											
												
													
														|  |  @RestController
 |  |  @RestController
 | 
											
										
											
												
													
														|  | @@ -25,11 +28,23 @@ public class StudentPaymentOrderController extends BaseController {
 | 
											
												
													
														|  |      private StudentPaymentOrderService studentPaymentOrderService;
 |  |      private StudentPaymentOrderService studentPaymentOrderService;
 | 
											
												
													
														|  |      @Autowired
 |  |      @Autowired
 | 
											
												
													
														|  |      private StudentPaymentOrderDetailService studentPaymentOrderDetailService;
 |  |      private StudentPaymentOrderDetailService studentPaymentOrderDetailService;
 | 
											
												
													
														|  | 
 |  | +    @Autowired
 | 
											
												
													
														|  | 
 |  | +    private SysUserFeignService sysUserFeignService;
 | 
											
												
													
														|  | 
 |  | +    @Autowired
 | 
											
												
													
														|  | 
 |  | +    private EmployeeDao employeeDao;
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |      @ApiOperation(value = "获取订单列表")
 |  |      @ApiOperation(value = "获取订单列表")
 | 
											
												
													
														|  |      @GetMapping("/queryPage")
 |  |      @GetMapping("/queryPage")
 | 
											
												
													
														|  |      @PreAuthorize("@pcs.hasPermissions('order/queryPage')")
 |  |      @PreAuthorize("@pcs.hasPermissions('order/queryPage')")
 | 
											
												
													
														|  |      public Object queryOrderPage(StudentPaymentOrderQueryInfo queryInfo){
 |  |      public Object queryOrderPage(StudentPaymentOrderQueryInfo queryInfo){
 | 
											
												
													
														|  | 
 |  | +        SysUser sysUser = sysUserFeignService.queryUserInfo();
 | 
											
												
													
														|  | 
 |  | +        if (sysUser == null) {
 | 
											
												
													
														|  | 
 |  | +            return failed("用户信息获取失败");
 | 
											
												
													
														|  | 
 |  | +        }
 | 
											
												
													
														|  | 
 |  | +        if(StringUtils.isEmpty(queryInfo.getOrganId())){
 | 
											
												
													
														|  | 
 |  | +            Employee employee = employeeDao.get(sysUser.getId());
 | 
											
												
													
														|  | 
 |  | +            queryInfo.setOrganId(employee.getOrganIdList());
 | 
											
												
													
														|  | 
 |  | +        }
 | 
											
												
													
														|  |          return succeed(studentPaymentOrderService.queryPage(queryInfo));
 |  |          return succeed(studentPaymentOrderService.queryPage(queryInfo));
 | 
											
												
													
														|  |      }
 |  |      }
 | 
											
												
													
														|  |  
 |  |  
 |