人工配料bug修复

This commit is contained in:
2026-01-31 14:51:58 +08:00
parent fbd13f50d4
commit e9259122b7

View File

@@ -1483,7 +1483,7 @@ public class SampleAnalysisServiceImpl implements SampleAnalysisService {
public void manualIngredients(Long businessAssayTaskId) {
BusinessAssayTaskDO businessAssayTaskDO = businessAssayTaskMapper.selectById(businessAssayTaskId);
businessAssayTaskDO.setIngredientsWay(QmsCommonConstant.MANUAL);//人工配料
businessAssayTaskDO.setIngredientsStatus(QmsCommonConstant.IN_PROGRESS);//表示为允许提交
businessAssayTaskDO.setIngredientsStatus(QmsCommonConstant.ALLOW_SUBMIT);//表示为允许提交
businessAssayTaskMapper.updateById(businessAssayTaskDO);
}