|
@ -3808,55 +3808,54 @@ public class PrescriptionService extends BaseJpaService<WlyyPrescriptionDO, Pres
|
|
|
}else {
|
|
|
statuss += " ";
|
|
|
}*/
|
|
|
|
|
|
Object orderCategory = m.get("orderCategory");
|
|
|
String odry = "";
|
|
|
if(orderCategory == null) {
|
|
|
odry += " ";
|
|
|
}else if (orderCategory.equals("1")) {
|
|
|
odry += "专家咨询";
|
|
|
}else if (orderCategory.equals("2")) {
|
|
|
odry += "图文诊室";
|
|
|
}else if (orderCategory.equals("3")) {
|
|
|
odry += "视频诊室";
|
|
|
}else if (orderCategory.equals("4")) {
|
|
|
odry += "处方";
|
|
|
}else if (orderCategory.equals("5")) {
|
|
|
odry += "就诊卡充值";
|
|
|
String orderCategory ="";
|
|
|
if (m.get("orderCategory")==null){
|
|
|
odry = null;
|
|
|
}else {
|
|
|
odry += " ";
|
|
|
orderCategory = m.get("orderCategory").toString();
|
|
|
if (orderCategory.equals("1")) {
|
|
|
odry += "专家咨询";
|
|
|
}else if (orderCategory.equals("2")) {
|
|
|
odry += "图文诊室";
|
|
|
}else if (orderCategory.equals("3")) {
|
|
|
odry += "视频诊室";
|
|
|
}else if (orderCategory.equals("4")) {
|
|
|
odry += "处方";
|
|
|
}else if (orderCategory.equals("5")) {
|
|
|
odry += "就诊卡充值";
|
|
|
}else {
|
|
|
odry += " ";
|
|
|
}
|
|
|
}
|
|
|
|
|
|
Integer orderType = (Integer) m.get("orderType");
|
|
|
String odte = "";
|
|
|
if(orderType == null) {
|
|
|
odte += " ";
|
|
|
} else if (orderType == 1) {
|
|
|
odte += "图文";
|
|
|
}else if (orderType == 3) {
|
|
|
odte += "视频";
|
|
|
}else if (orderType == 10) {
|
|
|
odte += "就诊卡号";
|
|
|
}else if (orderType == 11) {
|
|
|
odte += "门诊卡号";
|
|
|
}
|
|
|
|
|
|
Object payPrice = m.get("payPrice");
|
|
|
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 += "视频";
|
|
|
}else if (orderType.equalsIgnoreCase("10")) {
|
|
|
odte += "就诊卡号";
|
|
|
}else if (orderType.equalsIgnoreCase("11")) {
|
|
|
odte += "门诊卡号";
|
|
|
}
|
|
|
}
|
|
|
String pay = "";
|
|
|
if (payPrice == null) {
|
|
|
pay += " ";
|
|
|
if (m.get("payPrice") == null) {
|
|
|
pay = null;
|
|
|
}else{
|
|
|
String s = payPrice.toString();
|
|
|
pay += s;
|
|
|
pay = m.get("payPrice").toString();
|
|
|
}
|
|
|
|
|
|
Object payTime = m.get("payTime");
|
|
|
String time = "";
|
|
|
if (payTime == null) {
|
|
|
time += " ";
|
|
|
if (m.get("payTime") == null) {
|
|
|
time = null;
|
|
|
}else {
|
|
|
|
|
|
time = payTime.toString();
|
|
|
time = m.get("payTime").toString();
|
|
|
}
|
|
|
|
|
|
|