fix(quotation): 修复模型配置项语言服务业务错误检查
- 添加缺失的VUtils.trueThrowBusinessError方法调用来验证配置项语言数据 - 确保在保存批量语言配置项后进行正确的业务逻辑验证 - 修复语法错误,确保代码块正确闭合和缩进
This commit is contained in:
parent
23d74b85e6
commit
83ff612d38
|
|
@ -136,7 +136,8 @@ public class ModelConfigController extends ControllerBase {
|
|||
});
|
||||
modelConfigItemLanguageService.saveBatch(itemLanguages);
|
||||
}
|
||||
}VUtils.trueThrowBusinessError(modelConfigItemLanguageService.lambdaQuery()
|
||||
}
|
||||
VUtils.trueThrowBusinessError(modelConfigItemLanguageService.lambdaQuery()
|
||||
.eq(QuotationModelConfigItemLanguage::getConfigId, request.getConfigId())
|
||||
.eq(QuotationModelConfigItemLanguage::getLanguageId, cn.getId())
|
||||
.eq(QuotationModelConfigItemLanguage::getPartName, request.getPartName())
|
||||
|
|
|
|||
Loading…
Reference in New Issue