|
@@ -36,7 +36,12 @@ public class HighRiskProcess {
|
|
|
for (HighRiskNeoDTO highRiskNeoDTO : highRiskNeoDTOList) {
|
|
|
BillMsg billMsg = new BillMsg();
|
|
|
String type = highRiskNeoDTO.getType();
|
|
|
- billMsg.setMsg(highRiskNeoDTO.getName() + "为高风险" + type + ",请留意");
|
|
|
+ if (TypeEnum.operation.getName().equals(type)) {
|
|
|
+ billMsg.setMsg(highRiskNeoDTO.getName() + "为高风险手术,请留意");
|
|
|
+ } else if (TypeEnum.drug.getName().equals(type)) {
|
|
|
+ billMsg.setMsg(highRiskNeoDTO.getName() + "为" + highRiskNeoDTO.getHighLevel() + "药品,请留意");
|
|
|
+ }
|
|
|
+
|
|
|
billMsg.setOrderName(highRiskNeoDTO.getName());
|
|
|
billMsg.setOrderStandName(highRiskNeoDTO.getStandname());
|
|
|
billMsg.setType(type);
|