|
@ -3863,7 +3863,11 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
statuss += " ";
|
|
statuss += " ";
|
|
}*/
|
|
}*/
|
|
String odry = "";
|
|
String odry = "";
|
|
String orderCategory ="";
|
|
|
|
|
|
String orderCategory = "";
|
|
|
|
String odte = "";
|
|
|
|
String status ="";
|
|
|
|
String pay = "";
|
|
|
|
|
|
if (m.get("orderCategory")==null){
|
|
if (m.get("orderCategory")==null){
|
|
odry = null;
|
|
odry = null;
|
|
}else {
|
|
}else {
|
|
@ -3871,27 +3875,31 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
if (orderCategory.equals("1")) {
|
|
if (orderCategory.equals("1")) {
|
|
odry += "专家咨询";
|
|
odry += "专家咨询";
|
|
}else if (orderCategory.equals("2")) {
|
|
}else if (orderCategory.equals("2")) {
|
|
odry += "图文诊室";
|
|
|
|
|
|
odry += "复诊";
|
|
}else if (orderCategory.equals("3")) {
|
|
}else if (orderCategory.equals("3")) {
|
|
odry += "视频诊室";
|
|
odry += "视频诊室";
|
|
}else if (orderCategory.equals("4")) {
|
|
}else if (orderCategory.equals("4")) {
|
|
odry += "处方";
|
|
odry += "处方";
|
|
|
|
odte += "处方";
|
|
}else if (orderCategory.equals("5")) {
|
|
}else if (orderCategory.equals("5")) {
|
|
if (m.get("orderType") != null) {
|
|
|
|
String ort = m.get("orderType").toString();
|
|
|
|
if (ort.equalsIgnoreCase("10")) {
|
|
|
|
odry += "就诊卡号充值";
|
|
|
|
}else if(ort.equalsIgnoreCase("11")) {
|
|
|
|
odry += "门诊卡号充值";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
odry += "就诊卡充值";
|
|
|
|
odte += "就诊卡充值";
|
|
}else {
|
|
}else {
|
|
odry += " ";
|
|
odry += " ";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
String status ="";
|
|
|
|
|
|
if(m.get("orderType") == null) {
|
|
|
|
odte = null;
|
|
|
|
}else{
|
|
|
|
String orderType = m.get("orderType").toString();
|
|
|
|
if (orderType.equalsIgnoreCase("1")) {
|
|
|
|
odte += "图文";
|
|
|
|
}else if (orderType.equalsIgnoreCase("3")) {
|
|
|
|
odte += "视频";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
if (m.get("status") == null) {
|
|
if (m.get("status") == null) {
|
|
status = null;
|
|
status = null;
|
|
}else {
|
|
}else {
|
|
@ -3915,18 +3923,8 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
String odte = "";
|
|
|
|
if(m.get("orderType") == null) {
|
|
|
|
odte = null;
|
|
|
|
}else{
|
|
|
|
String orderType = m.get("orderType").toString();
|
|
|
|
if (orderType.equalsIgnoreCase("1")) {
|
|
|
|
odte += "图文咨询";
|
|
|
|
}else if (orderType.equalsIgnoreCase("3")) {
|
|
|
|
odte += "视频咨询";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
String pay = "";
|
|
|
|
|
|
|
|
|
|
|
|
if (m.get("payPrice") == null) {
|
|
if (m.get("payPrice") == null) {
|
|
pay = null;
|
|
pay = null;
|
|
}else{
|
|
}else{
|
|
@ -3940,7 +3938,6 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
time = m.get("payTime").toString();
|
|
time = m.get("payTime").toString();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
addCell(ws, i, 0, m.get("id")!=null?m.get("id").toString():n);
|
|
addCell(ws, i, 0, m.get("id")!=null?m.get("id").toString():n);
|
|
addCell(ws, i, 1, time!=null?time:n);
|
|
addCell(ws, i, 1, time!=null?time:n);
|
|
addCell(ws, i, 2, (String) m.get("orderNo")!=null?(String) m.get("orderNo"):n);
|
|
addCell(ws, i, 2, (String) m.get("orderNo")!=null?(String) m.get("orderNo"):n);
|