|
|
|
@ -86,17 +86,13 @@ public class StudyFormFillServiceImpl extends ServiceImpl |
|
|
|
throw new ServiceException("填报不存在或已删除"); |
|
|
|
} |
|
|
|
Template template = templateService.getById(studyFormFill.getTemplateId()); |
|
|
|
//todo 试剂 |
|
|
|
// 试剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Sj.getValue())){ |
|
|
|
|
|
|
|
} |
|
|
|
//todo 麻精药 |
|
|
|
if(template.getProduct().equals(ProductEnum.Mjy.getValue())){ |
|
|
|
|
|
|
|
sjService.startConfiguration(form); |
|
|
|
} |
|
|
|
//todo 给药制剂 |
|
|
|
// 给药制剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Gyzj.getValue())){ |
|
|
|
|
|
|
|
gyzjService.startConfiguration(form); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -113,17 +109,13 @@ public class StudyFormFillServiceImpl extends ServiceImpl |
|
|
|
throw new ServiceException("填报不存在或已删除"); |
|
|
|
} |
|
|
|
Template template = templateService.getById(studyFormFill.getTemplateId()); |
|
|
|
//todo 试剂 |
|
|
|
// 试剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Sj.getValue())){ |
|
|
|
|
|
|
|
} |
|
|
|
//todo 麻精药 |
|
|
|
if(template.getProduct().equals(ProductEnum.Mjy.getValue())){ |
|
|
|
|
|
|
|
sjService.configurationCompleted(form); |
|
|
|
} |
|
|
|
//todo 给药制剂 |
|
|
|
// 给药制剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Gyzj.getValue())){ |
|
|
|
|
|
|
|
gyzjService.configurationCompleted(form); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -140,17 +132,13 @@ public class StudyFormFillServiceImpl extends ServiceImpl |
|
|
|
throw new ServiceException("填报不存在或已删除"); |
|
|
|
} |
|
|
|
Template template = templateService.getById(studyFormFill.getTemplateId()); |
|
|
|
//todo 试剂 |
|
|
|
// 试剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Sj.getValue())){ |
|
|
|
|
|
|
|
sjService.subpackage(form); |
|
|
|
} |
|
|
|
//todo 麻精药 |
|
|
|
if(template.getProduct().equals(ProductEnum.Mjy.getValue())){ |
|
|
|
|
|
|
|
} |
|
|
|
//todo 给药制剂 |
|
|
|
// 给药制剂 |
|
|
|
if(template.getProduct().equals(ProductEnum.Gyzj.getValue())){ |
|
|
|
|
|
|
|
gyzjService.subpackage(form); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|