Merge remote-tracking branch 'origin/main' into main

main
SondonYong 2025-12-01 11:36:46 +08:00
commit d16689e719
2 changed files with 2 additions and 1 deletions

View File

@ -96,7 +96,7 @@ public class CorpInfoUpdateExe {
CorpInfoDO corpInfoDO = new CorpInfoDO();
BeanUtils.copyProperties(corpInfoUpdateUseFlagCmd, corpInfoDO);
corpInfoRepository.updateById(corpInfoDO);
//TODO 通知GBS修改禁用启用标识
// 通知GBS修改禁用启用标识
TenantUpdateStatusCmd tenantUpdateStatusCmd = new TenantUpdateStatusCmd();
tenantUpdateStatusCmd.setId(corpInfoUpdateUseFlagCmd.getId());
if (corpInfoUpdateUseFlagCmd.getUseFlag() == 1){

View File

@ -56,6 +56,7 @@ public class DepartmentGatewayImpl implements DepartmentGateway {
DeptAddCmd deptCmd = new DeptAddCmd();
deptCmd.setDeptName(departmentE.getName());
deptCmd.setParentIds(deptDetailCO.getData().getParentIds());
deptCmd.setAddTypeEnum("MANUAL");
//TODO gbs部门表 sys_dept tenant_idparent_idsadd_type_enum存储错误导致gbs页面看不到参数还没有待定
// TODO gbs的这个创建部门接口没有区分企业, 新建的企业创建其他企业有的部门名称时报错:名称已存在
SingleResponse<Long> response = deptFacade.add(deptCmd);