|
@@ -190,6 +190,9 @@ public class MsgUtil {
|
|
|
*/
|
|
|
public static BillMsg getBillMedEquMsg(String orderName, String orderStandName, String content, String type, String orderType) {
|
|
|
BillMsg billMsg = new BillMsg();
|
|
|
+ if (content.startsWith("具有")) {
|
|
|
+ content = content.replaceFirst("具有", ""); // 将“具有”替换成空
|
|
|
+ }
|
|
|
String msg = String.format("该患者具有%s,不宜开%s", content, orderName);
|
|
|
// 输血提示语是另一种写法
|
|
|
if (TypeEnum.transfusion.getName().equals(orderType)) {
|