|
|
|
@ -116,8 +116,6 @@ public class OrderController {
|
|
|
|
|
@AuthRuleAnnotation("")
|
|
|
|
|
@GetMapping("udiwms/inout/order/error")
|
|
|
|
|
public BaseResponse listOrderError(OrderFilterRequest orderFilterRequest) {
|
|
|
|
|
// orderFilterRequest.setStatus(ConstantStatus.ORDER_STATUS_FAIL);
|
|
|
|
|
// orderFilterRequest.setStatusOrOne(ConstantStatus.ORDER_STATUS_TEMP_SAVE);
|
|
|
|
|
CompanyEntity companyEntity = companyService.findCompany(Long.parseLong(orderFilterRequest.getCustomerId()));
|
|
|
|
|
if (StringUtils.isBlank(orderFilterRequest.getCustomerId()))
|
|
|
|
|
return ResultVOUtils.success();
|
|
|
|
@ -130,7 +128,6 @@ public class OrderController {
|
|
|
|
|
}
|
|
|
|
|
orderFilterRequest.setCustomerId(null);
|
|
|
|
|
|
|
|
|
|
// List<OrderEntity> orderEntityList = orderService.filterListOr(orderFilterRequest);
|
|
|
|
|
List<OrderEntity> orderEntityList = orderService.filterList(orderFilterRequest);
|
|
|
|
|
PageInfo<OrderEntity> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(orderEntityList);
|
|
|
|
|