|
|
|
@ -1020,7 +1020,7 @@ public class ComplaintCollectionServiceImpl implements ComplaintCollectionServic |
|
|
|
negative.setPoliceType(cc.getPoliceType()); |
|
|
|
negative.setPoliceType(cc.getPoliceType()); |
|
|
|
|
|
|
|
|
|
|
|
// 核查情况
|
|
|
|
// 核查情况
|
|
|
|
negative.setCheckStatus(cc.getCheckStatus()); |
|
|
|
negative.setCheckStatusCode(cc.getCheckStatus()); |
|
|
|
negative.setCheckStatusName(cc.getCheckStatusName()); |
|
|
|
negative.setCheckStatusName(cc.getCheckStatusName()); |
|
|
|
negative.setCheckStatusDesc(cc.getCheckStatusDesc()); |
|
|
|
negative.setCheckStatusDesc(cc.getCheckStatusDesc()); |
|
|
|
|
|
|
|
|
|
|
|
@ -1172,12 +1172,14 @@ public class ComplaintCollectionServiceImpl implements ComplaintCollectionServic |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
@Transactional(rollbackFor = Exception.class) |
|
|
|
public void addNegativeTemp(ComplaintCollectionPageRequest request) { |
|
|
|
public void addNegativeTemp(ComplaintCollectionPageRequest request) { |
|
|
|
if(StrUtil.isBlank(request.getOriginId())){ |
|
|
|
// if(StrUtil.isBlank(request.getOriginId())){
|
|
|
|
throw new IllegalArgumentException("下发旧数据必须填写编号"); |
|
|
|
// throw new IllegalArgumentException("下发旧数据必须填写编号");
|
|
|
|
} |
|
|
|
// }
|
|
|
|
// 1. 查询待下发数据(status=0 且 negativeId为空)
|
|
|
|
// 1. 查询待下发数据(status=0 且 negativeId为空)
|
|
|
|
ComplaintCollectionQueryParam queryParam = new ComplaintCollectionQueryParam(); |
|
|
|
ComplaintCollectionQueryParam queryParam = new ComplaintCollectionQueryParam(); |
|
|
|
queryParam.setStatus("0"); // 初始状态
|
|
|
|
queryParam.setStatus("0"); // 初始状态
|
|
|
|
|
|
|
|
queryParam.setHandleMethod("1"); |
|
|
|
|
|
|
|
// 也是可填可不填
|
|
|
|
queryParam.setOriginId(request.getOriginId()); |
|
|
|
queryParam.setOriginId(request.getOriginId()); |
|
|
|
List<ComplaintCollection> pendingList = complaintCollectionResourceService.query(queryParam); |
|
|
|
List<ComplaintCollection> pendingList = complaintCollectionResourceService.query(queryParam); |
|
|
|
|
|
|
|
|
|
|
|
|