| | |
| | | // List<PayInfo> payInfoList = payInfoService.selectPayInfoByServiceOrdIDDt(orderDetail.getServiceOrdID()); //1016302788 |
| | | List<PayInfo> payInfoList = payInfoService.selectPayInfoByServiceOrdIDDt("1016302788"); |
| | | |
| | | //其他信息 |
| | | Map<String, Object> otherInfo = new HashMap<>(); |
| | | //评价 |
| | | otherInfo.put("serviceOrdVisit", Objects.toString(mingServiceOrder.getServiceOrdVisit(), "无")); |
| | | |
| | | //发票获取 |
| | | Map<String, Object> invoiceInfo = payInfoService.selectLatestInvoiceInfo("1016302788"); |
| | | String invoiceStatus = ""; |
| | | if (invoiceInfo != null && invoiceInfo.get("AuditStatus") != null) { |
| | | switch (String.valueOf(invoiceInfo.get("AuditStatus"))) { |
| | | case "0": |
| | | invoiceStatus = "未处理"; |
| | | break; |
| | | case "1": |
| | | invoiceStatus = "延后处理"; |
| | | break; |
| | | case "3": |
| | | invoiceStatus = "已开票"; |
| | | break; |
| | | case "4": |
| | | invoiceStatus = "取消申请"; |
| | | break; |
| | | } |
| | | otherInfo.put("invoiceStatus",invoiceInfo.get("InvoiceMakeout")+"-"+invoiceStatus); |
| | | } |
| | | |
| | | |
| | | |
| | | data.put("orderInfo", orderInfo); |
| | | data.put("patientInfo", patientInfo); |
| | | data.put("serviceInfo", serviceInfo); |
| | | data.put("medicalInfo", medicalInfo); // 暂时为空 |
| | | data.put("dispatchInfo", dispatchInfo); // 更新为包含人员信息的dispatchInfo |
| | | data.put("paymentInfo", payInfoList); // 暂时为空 |
| | | data.put("operationInfo", new ArrayList<>()); // 暂时为空 |
| | | data.put("otherInfo", otherInfo); |
| | | |
| | | |
| | | return AjaxResult.success(data); |
| | | } |