|
|
|
@ -2,6 +2,7 @@ package cn.iocoder.yudao.module.system.service.enterprise;
|
|
|
|
|
|
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.enterpriseauditlog.EnterpriseAuditLogDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.fileInfo.FileInfoDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.dataobject.user.AdminUserDO; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.enterpriseauditlog.EnterpriseAuditLogMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.dal.mysql.fileInfo.FileInfoMapper; |
|
|
|
|
import cn.iocoder.yudao.module.system.service.fileInfo.FileInfoService; |
|
|
|
@ -57,7 +58,12 @@ public class EnterpriseServiceImpl implements EnterpriseService {
|
|
|
|
|
if (enterpriseDO != null) { |
|
|
|
|
throw exception(ENTERPRISE_EXISTS); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//专管员所属部门
|
|
|
|
|
// final AdminUserDO user = adminUserService.getUser(createReqVO.getUserId());
|
|
|
|
|
// if (user == null) {
|
|
|
|
|
// throw exception(USER_NOT_EXISTS);
|
|
|
|
|
// }
|
|
|
|
|
// createReqVO.setDeptId(user.getDeptId());
|
|
|
|
|
// 插入
|
|
|
|
|
EnterpriseDO enterprise = BeanUtils.toBean(createReqVO, EnterpriseDO.class); |
|
|
|
|
enterpriseMapper.insert(enterprise); |
|
|
|
@ -68,7 +74,7 @@ public class EnterpriseServiceImpl implements EnterpriseService {
|
|
|
|
|
enterpriseAuditLogDO.setAudit(1); |
|
|
|
|
enterpriseAuditLogMapper.insert(enterpriseAuditLogDO); |
|
|
|
|
|
|
|
|
|
if (createReqVO.getFileIds().length > 0) { |
|
|
|
|
if (createReqVO.getFileIds() != null && createReqVO.getFileIds().length > 0) { |
|
|
|
|
for (Long fileId : createReqVO.getFileIds()) { |
|
|
|
|
FileInfoDO fileInfoDO = new FileInfoDO(); |
|
|
|
|
fileInfoDO.setDictData(1l); //文件类型
|
|
|
|
@ -95,7 +101,6 @@ public class EnterpriseServiceImpl implements EnterpriseService {
|
|
|
|
|
fileInfoMapper.delete(wrapper); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (Long fileId : updateReqVO.getFileIds()) { |
|
|
|
|
FileInfoDO fileInfoDO = new FileInfoDO(); |
|
|
|
|
fileInfoDO.setDictData(1l); //文件类型
|
|
|
|
|