|
|
@@ -129,6 +129,13 @@ public class SealHandoverController extends BladeController {
|
|
|
@ApiOperationSupport(order = 3)
|
|
|
@ApiOperation(value = "分页", notes = "传入sealHandover")
|
|
|
public R<List<SealHandoverVO>> getKeepList(SealHandoverVO sealHandover) {
|
|
|
+
|
|
|
+ Long deptId = Long.valueOf(AuthUtil.getDeptId());
|
|
|
+ List<Long> deptChildIds = deptService.getDeptChildIds(deptId);
|
|
|
+ deptChildIds.add(deptId);
|
|
|
+ sealHandover.setDeptIdList(deptChildIds);
|
|
|
+ sealHandover.setCurrentuserId(AuthUtil.getUserId());
|
|
|
+
|
|
|
if (StringUtils.isNotBlank(sealHandover.getSealType())){
|
|
|
List<String> sealTypes = Func.toStrList(sealHandover.getSealType());
|
|
|
sealHandover.setSealTypes(sealTypes);
|
|
|
@@ -138,6 +145,8 @@ public class SealHandoverController extends BladeController {
|
|
|
sealHandover.setOrgNos(orgNos);
|
|
|
}
|
|
|
|
|
|
+ sealHandover.setProcess(3);
|
|
|
+ sealHandover.setIsTurnIn(0);
|
|
|
List<SealHandoverVO> list = sealHandoverService.getList(sealHandover);
|
|
|
List<SealHandover> turnInList = sealHandoverService.getTurnInList();
|
|
|
|