feat(项目管理产品需求重构): 完善产品需求规格逻辑

新建产品时初始化固定模块

Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
OTTO 2024-12-18 14:04:43 +08:00
parent 5ae947073b
commit 3bd42cd20e
1 changed files with 3 additions and 0 deletions

View File

@ -135,6 +135,9 @@ public class PmsProductServiceImpl implements IPmsProductService
pmsProduct.setDeptId(pmsEnterprise.getDeptId());
pmsProductMapper.insertPmsProduct(pmsProduct);
// 新建产品时初始化固定模块
pmsProductModuleService.initProductModule(pmsProduct.getProductIdentifier());
return pmsProduct.getProductIdentifier();
}