|
|
|
@ -116,7 +116,10 @@ public class PurOrderController {
|
|
|
|
|
if (purOrderRequest.getStatus() == null) {
|
|
|
|
|
purOrderRequest.setStatus(11); //查询未审核和草稿状态
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
String customerId = customerService.getCustomerId();
|
|
|
|
|
if (!customerId.equals("110")) {
|
|
|
|
|
purOrderRequest.setSupId(customerId);
|
|
|
|
|
}
|
|
|
|
|
List<PurOrderResponse> purApplyEntities = purOrderService.queryPageList(purOrderRequest);
|
|
|
|
|
PageInfo<PurOrderResponse> pageInfo;
|
|
|
|
|
pageInfo = new PageInfo<>(purApplyEntities);
|
|
|
|
@ -164,7 +167,6 @@ public class PurOrderController {
|
|
|
|
|
Map<String, List<PurOrderDetailEntity>> map = purOrderDetailEntities.stream().collect(Collectors.groupingBy(PurOrderDetailEntity::getSupId));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (CollUtil.isNotEmpty(purOrderDetailEntities) && postPurOrderRequest.isAutoPurchase() == true
|
|
|
|
|
&& StrUtil.isNotEmpty(postPurOrderRequest.getTargetBillAction())) {
|
|
|
|
|
|
|
|
|
@ -218,7 +220,6 @@ public class PurOrderController {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ResultVOUtils.success("更新成功!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|