#115 move method to service

This commit is contained in:
T-Midnight 2019-04-23 22:03:06 +04:00
parent bf515a3fcb
commit c18ecea13b
2 changed files with 9 additions and 6 deletions

View File

@ -83,12 +83,7 @@ public class GrantController {
@PostMapping(value = "/grant", params = "attachPaper")
public String attachPaper(GrantDto grantDto) {
if (!grantDto.getPaperIds().isEmpty()) {
grantDto.getPapers().clear();
grantDto.setPapers(grantService.getGrantPapers(grantDto.getPaperIds()));
} else {
grantDto.getPapers().clear();
}
grantService.attachPaper(grantDto);
return GRANT_PAGE;
}

View File

@ -176,4 +176,12 @@ public class GrantService {
return paperService.findAll();
}
public void attachPaper(GrantDto grantDto) {
if (!grantDto.getPaperIds().isEmpty()) {
grantDto.getPapers().clear();
grantDto.setPapers(getGrantPapers(grantDto.getPaperIds()));
} else {
grantDto.getPapers().clear();
}
}
}