bug修改。

This commit is contained in:
Renpc-kilig 2021-05-15 17:56:51 +08:00
parent 818bea57c9
commit 3896b2b5ab
3 changed files with 5 additions and 4 deletions

View File

@ -61,8 +61,8 @@ public class ApplyStudentsServiceImpl extends DefaultBaseService implements IApp
List<ApplyDTO> applyDTOList = applyService.listByInstitutionIdAndWorkTypeId(institutionId,workTypeId); List<ApplyDTO> applyDTOList = applyService.listByInstitutionIdAndWorkTypeId(institutionId,workTypeId);
for (ApplyDTO applyDTO : applyDTOList) { for (ApplyDTO applyDTO : applyDTOList) {
ApplyStudentsVO vo = new ApplyStudentsVO(); ApplyStudentsVO vo = new ApplyStudentsVO();
vo.setApplyClassId(classId);
BeanUtils.copyProperties(vo,applyDTO); BeanUtils.copyProperties(vo,applyDTO);
vo.setApplyClassId(classId);
this.save(vo); this.save(vo);
deleteIdList.add(applyDTO.getApplyId()); deleteIdList.add(applyDTO.getApplyId());
} }

View File

@ -112,8 +112,8 @@
#{examType}, #{examType},
#{reason}, #{reason},
#{nextCommitTime}, #{nextCommitTime},
#{workTypeID}, #{workTypeId},
#{orgID}, #{orgId},
#{gmtCreate}, #{gmtCreate},
#{creator}, #{creator},
#{gmtModified}, #{gmtModified},

View File

@ -426,7 +426,8 @@
} else { } else {
var ids = ''; var ids = '';
for(var i = 0, item; item = checkDatas[i++];) { for(var i = 0, item; item = checkDatas[i++];) {
if(item.checkStatus === 0) { debugger
if(item.checkStatus == 0) {
if(i > 1) { if(i > 1) {
ids += '_'; ids += '_';
} }