fix(ebom): 从excel导入不调用compucteLevelNum方法

This commit is contained in:
曹鹏飞 2024-05-17 15:38:13 +08:00
parent df50b80ae6
commit 769ccb89bf
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ public class EbomV2Api extends BaseApi {
List<OperationErrorMsgVO> result = eBomImportService.importBom(file); List<OperationErrorMsgVO> result = eBomImportService.importBom(file);
ebomChildService.getBaseMapper().updateEBomMaterialUse(); ebomChildService.getBaseMapper().updateEBomMaterialUse();
ebomParentService.compucteLevelNum(); //这个方法有问题
// ebomParentService.compucteLevelNum();
ebomParentService.resetAllBomExist(); ebomParentService.resetAllBomExist();
return ResultVO.success(result); return ResultVO.success(result);
} }