mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
修复:新增组织复制自定义板编号配置缺少 创建组织自定义板编号默认序列
This commit is contained in:
+8
@@ -33,6 +33,8 @@ import com.cf.imes.module.system.controller.admin.organ.vo.organ.OrganSimpleResp
|
||||
import com.cf.imes.module.system.controller.admin.statistics.vo.ManageOrgTotalStatisticRespVO;
|
||||
import com.cf.imes.module.system.controller.admin.statistics.vo.OrgStatusGroupStatisticsReqVO;
|
||||
import com.cf.imes.module.system.controller.admin.systemconfig.vo.ProcessSchemeConfig;
|
||||
import com.cf.imes.module.system.dal.dataobject.customplateno.CustomPlateNoSeqDO;
|
||||
import com.cf.imes.module.system.dal.mysql.customplateno.CustomPlateNoSeqMapper;
|
||||
import com.cf.imes.module.system.framework.jwt.config.JwtProperties;
|
||||
import com.cf.imes.module.system.controller.admin.user.vo.user.UserSaveReqVO;
|
||||
import com.cf.imes.module.system.convert.organ.OrganConvert;
|
||||
@@ -165,6 +167,9 @@ public class OrganServiceImpl implements OrganService {
|
||||
@Resource
|
||||
private I18nUtils i18nUtils;
|
||||
|
||||
@Resource
|
||||
private CustomPlateNoSeqMapper customPlateNoSeqMapper;
|
||||
|
||||
@Override
|
||||
public List<Long> getOrganIdList() {
|
||||
List<OrganizationDO> organizationDOS = organMapper.selectList();
|
||||
@@ -589,6 +594,9 @@ public class OrganServiceImpl implements OrganService {
|
||||
.setting(systemConfigDO.getSetting())
|
||||
.organId(organId)
|
||||
.build());
|
||||
|
||||
// 初始化组织自定义板编号序列
|
||||
customPlateNoSeqMapper.insert(new CustomPlateNoSeqDO());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user