|
|
@ -74,6 +74,9 @@ public class HighGasController { |
|
|
|
@Resource |
|
|
|
@Resource |
|
|
|
private ShellGroupService shellGroupService; |
|
|
|
private ShellGroupService shellGroupService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Resource |
|
|
|
|
|
|
|
private HighGasOrderService gasOrderService; |
|
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value="/getMerGasStatistical",method = RequestMethod.POST) |
|
|
|
@RequestMapping(value="/getMerGasStatistical",method = RequestMethod.POST) |
|
|
|
@ResponseBody |
|
|
|
@ResponseBody |
|
|
|
@ApiOperation(value = "查询商户油站统计") |
|
|
|
@ApiOperation(value = "查询商户油站统计") |
|
|
@ -271,8 +274,7 @@ public class HighGasController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
PageHelper.startPage(pageNum, pageSize); |
|
|
|
PageHelper.startPage(pageNum, pageSize); |
|
|
|
// return ResponseMsgUtil.success(new PageInfo<>(highOrderService.getGasOrderList(param)));
|
|
|
|
return ResponseMsgUtil.success(new PageInfo<>(gasOrderService.getGasOrderList(param))); |
|
|
|
return ResponseMsgUtil.success(null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("HighGasController -> getGasOrderList() error!",e); |
|
|
|
log.error("HighGasController -> getGasOrderList() error!",e); |
|
|
@ -418,7 +420,7 @@ public class HighGasController { |
|
|
|
param.put("createTimeE", createTimeE); |
|
|
|
param.put("createTimeE", createTimeE); |
|
|
|
|
|
|
|
|
|
|
|
if (status == null) { |
|
|
|
if (status == null) { |
|
|
|
param.put("status", "2,3,4,6,7"); |
|
|
|
param.put("status", "2,4,5,6"); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
param.put("status", status); |
|
|
|
param.put("status", status); |
|
|
|
} |
|
|
|
} |
|
|
@ -590,7 +592,7 @@ public class HighGasController { |
|
|
|
public ResponseData getGasOrderDetail(@RequestParam(name = "orderNo", required = true) String orderNo) { |
|
|
|
public ResponseData getGasOrderDetail(@RequestParam(name = "orderNo", required = true) String orderNo) { |
|
|
|
try { |
|
|
|
try { |
|
|
|
|
|
|
|
|
|
|
|
return ResponseMsgUtil.success(highOrderService.getGasOrderDetail(orderNo)); |
|
|
|
return ResponseMsgUtil.success(gasOrderService.getDetailByOrderNo(orderNo)); |
|
|
|
|
|
|
|
|
|
|
|
} catch (Exception e) { |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("HighGasController -> getGasOrderDetail() error!",e); |
|
|
|
log.error("HighGasController -> getGasOrderDetail() error!",e); |
|
|
|