代码提交
This commit is contained in:
parent
baf0de2de7
commit
1209ff2df8
|
|
@ -170,7 +170,10 @@ public class TransferApplyServiceImpl implements TransferApplyService {
|
|||
transferApplyMapper.updateReceiveStatus(dto);
|
||||
}
|
||||
// 如果该项目下所有文件都已接收,则修改项目移交状态
|
||||
transferApplyMapper.isAllReceiveByProject(dto);
|
||||
Integer allReceiveByProject = transferApplyMapper.isAllReceiveByProject(dto);
|
||||
if (allReceiveByProject == 1) {
|
||||
transferApplyMapper.updateTransferStatus(dto);
|
||||
}
|
||||
if (i > 0) {
|
||||
return AjaxResult.success("接收成功");
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -666,7 +666,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
da_ky_sys_file_source dksfs
|
||||
LEFT JOIN da_ky_pro_files_contents dkpfc ON dksfs.business_id = dkpfc.id
|
||||
WHERE
|
||||
dkpfc.pro_id = 1
|
||||
dkpfc.pro_id = #{proId}
|
||||
AND dkpfc.integrity_status = '1'
|
||||
AND dkpfc.LEVEL = 5
|
||||
) > 0
|
||||
|
|
@ -685,7 +685,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
da_ky_sys_file_source dksfs
|
||||
LEFT JOIN da_ky_pro_files_contents dkpfc ON dksfs.business_id = dkpfc.id
|
||||
WHERE
|
||||
dkpfc.pro_id = 1
|
||||
dkpfc.pro_id = #{proId}
|
||||
AND dkpfc.integrity_status = '1'
|
||||
AND dkpfc.LEVEL = 5
|
||||
) src
|
||||
|
|
@ -704,7 +704,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
da_ky_sys_file_source dksfs
|
||||
LEFT JOIN da_ky_pro_files_contents dkpfc ON dksfs.business_id = dkpfc.id
|
||||
WHERE
|
||||
dkpfc.pro_id = 1
|
||||
dkpfc.pro_id = #{proId}
|
||||
AND dkpfc.integrity_status = '1'
|
||||
AND dkpfc.LEVEL = 5
|
||||
)
|
||||
|
|
|
|||
|
|
@ -71,6 +71,22 @@ public class KyFilesMultiClassify {
|
|||
this.fileRelated = fileRelated;
|
||||
}
|
||||
|
||||
public String getDictLabel() {
|
||||
return dictLabel;
|
||||
}
|
||||
|
||||
public void setDictLabel(String dictLabel) {
|
||||
this.dictLabel = dictLabel;
|
||||
}
|
||||
|
||||
public String getFileRelatedId() {
|
||||
return fileRelatedId;
|
||||
}
|
||||
|
||||
public void setFileRelatedId(String fileRelatedId) {
|
||||
this.fileRelatedId = fileRelatedId;
|
||||
}
|
||||
|
||||
/**
|
||||
* 档案相关管理
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue