20250401 更新

1.生物定性检验记录推送成功
This commit is contained in:
2025-04-01 11:54:55 +08:00
parent acbb32f273
commit c523df191d
2 changed files with 6 additions and 2 deletions
@@ -708,7 +708,11 @@ public class TestRecordSampleDataServiceImpl extends ServiceImpl<TestRecordSampl
// 发布事件 // 发布事件
applicationContext.publishEvent(new FinishTestExecutionEvent(this)); applicationContext.publishEvent(new FinishTestExecutionEvent(this));
if(testRecord.getBusinessType().equals(BusinessType.BOINT_CASE.getBusinessType())) {
applicationContext.publishEvent(new PushDataToLabsCareEvent(this, testId, 3)); applicationContext.publishEvent(new PushDataToLabsCareEvent(this, testId, 3));
} else if (testRecord.getBusinessType().equals(BusinessType.NPS_CASE.getBusinessType())) {
}
return R.ok("完成实验成功!"); return R.ok("完成实验成功!");
} }
@@ -46,7 +46,7 @@ public class TestRecordReagentVO {
private Integer source; private Integer source;
@ApiModelProperty(value = "关联的毒品实体信息") @ApiModelProperty(value = "关联的毒品实体信息")
@DlpFeign(feignClient = RemoteCommDrugService.class, methodName = "getById", params = {"drugId"}) @DlpFeign(feignClient = RemoteCommDrugService.class, methodName = "innerGetById", params = {"drugId"})
private Drug drug; private Drug drug;
} }