|
@@ -15,27 +15,27 @@ import java.util.List;
|
|
|
public class Prescription {
|
|
|
private String patientId;
|
|
|
private String visitDeptCode;
|
|
|
- private String doctorCode = "99999";
|
|
|
- private String inspectPart = "";
|
|
|
- private String reqComment = "";
|
|
|
- private String reqTzComment = "";
|
|
|
- private String birthDate;
|
|
|
+ private String doctorCode = "";
|
|
|
+ private String firstOrNot = "0";
|
|
|
private String icdCode = "ZD001";
|
|
|
private String icdText = "";
|
|
|
- private Integer jzFlag = 0;
|
|
|
+ private String serialNo = "";
|
|
|
private MzBlRecord mzBlRecord = new MzBlRecord();
|
|
|
private List<HashMap<String, String>> mzChargeDetailList = new ArrayList<>();
|
|
|
private List<HashMap<String, String>> mzYjReqList;
|
|
|
|
|
|
public void initMzYjReqList(BookedYjReq book) {
|
|
|
setPatientId(book.getPatientId());
|
|
|
- setVisitDeptCode(book.getExecUnit());
|
|
|
- setReqComment("自助开单-" + book.getName());
|
|
|
- setReqTzComment("自助开单-" + book.getName());
|
|
|
+ setVisitDeptCode("");
|
|
|
setIcdText("自助开单-" + book.getName());
|
|
|
mzYjReqList = new ArrayList<>();
|
|
|
HashMap<String, String> map = new HashMap<>(1);
|
|
|
map.put("orderCode", book.getCode());
|
|
|
+ map.put("inspectPart", "");
|
|
|
+ map.put("inspectStuff", "");
|
|
|
+ map.put("instructionCode", "");
|
|
|
+ map.put("instructionText", "");
|
|
|
+ map.put("orderNo", "2");
|
|
|
mzYjReqList.add(map);
|
|
|
}
|
|
|
}
|