diff --git a/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/regdoctorstation/appservice/impl/AdviceManageAppServiceImpl.java b/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/regdoctorstation/appservice/impl/AdviceManageAppServiceImpl.java index e4493ffb7..4d80d9899 100755 --- a/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/regdoctorstation/appservice/impl/AdviceManageAppServiceImpl.java +++ b/healthlink-his-server/healthlink-his-application/src/main/java/com/healthlink/his/web/regdoctorstation/appservice/impl/AdviceManageAppServiceImpl.java @@ -712,6 +712,7 @@ public class AdviceManageAppServiceImpl implements IAdviceManageAppService { tempServiceRequest.setUnitCode(regAdviceSaveDto.getUnitCode()); // 请求单位编码 tempServiceRequest.setCategoryEnum(regAdviceSaveDto.getCategoryEnum()); // 请求类型 tempServiceRequest.setTherapyEnum(regAdviceSaveDto.getTherapyEnum()); // 治疗类型,临时(需要前端传) + tempServiceRequest.setRateCode(regAdviceSaveDto.getRateCode()); // 用药频次 // 文字医嘱(type=8)不走定价体系,activityId设置为0L占位 if (ItemType.TEXT.getValue().equals(regAdviceSaveDto.getAdviceType())) { tempServiceRequest.setActivityId(0L); diff --git a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue index f20c53c51..759cf69c6 100755 --- a/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue +++ b/healthlink-his-ui/src/views/inpatientDoctor/home/components/order/index.vue @@ -1,20 +1,47 @@