|
@@ -717,7 +717,7 @@ public class SetlListUpldService {
|
|
|
WebSocketServer.sendMessageByUserCode(TokenUtil.getTokenUserId(), obj.toString());
|
|
|
}
|
|
|
String[] title = {"姓名", "审核状态", "申报类型", "出院科室", "住院号/门诊号", "性别", "住院天数", "诊断编码", "诊断名称", "治疗方式", "总费用",
|
|
|
- "报销金额", "险种类型", "人员类别", "结算时间", "医疗类别", "清算机构", "管床医生", "转科室", "转科次数"};
|
|
|
+ "报销金额", "险种类型", "人员类别", "结算时间", "医疗类别", "清算机构", "管床医生", "转科室", "转科次数", "申请备注"};
|
|
|
String[][] content = new String[list.size()][];
|
|
|
for (int i = 0; i < list.size(); i++) {
|
|
|
content[i] = new String[title.length];
|
|
@@ -742,6 +742,7 @@ public class SetlListUpldService {
|
|
|
content[i][17] = pojo.getReferPhysicianName();
|
|
|
content[i][18] = pojo.getZhuanKeName() == null ? "" : pojo.getZhuanKeName().toString();
|
|
|
content[i][19] = pojo.getZhuanKeAmount() == null ? "" : pojo.getZhuanKeAmount().toString();
|
|
|
+ content[i][20] = pojo.getReqRemark();
|
|
|
}
|
|
|
//传三个参数 一个是 固定的 response ,excel的头部信息,excel的内容
|
|
|
ExcelUtil.exportExcel(response, title, content);
|