Browse Source

增加病人地址导出功能

hurugang 3 years ago
parent
commit
7628a93563

+ 3 - 2
src/main/java/cn/hnthyy/thmz/Utils/ExcelUtil.java

@@ -700,7 +700,7 @@ public class ExcelUtil {
         data.put(FILE_NAME_KEY, "门诊挂号统计.xls");
         List<Map<String, Object>> heads = new ArrayList<>();
         Map<String, Object> map0 = new HashMap<>();
-        String[] head0 = {"病人姓名", "诊疗卡号", "病人ID", "挂号科室", "挂号医生", "挂号时间", "挂号费", "诊查费", "其他收费", "就诊状态"};
+        String[] head0 = {"病人姓名", "诊疗卡号", "病人ID", "挂号科室", "挂号医生", "挂号时间", "挂号费", "诊查费", "其他收费", "就诊状态","病人地址"};
         String[] headNum0 = {"0,0,0,0"};
         map0.put(HEAD_ARR_KEY, head0);
         map0.put(HEAD_NUM_KEY, headNum0);
@@ -726,7 +726,8 @@ public class ExcelUtil {
                         DateFormatUtils.format(mzyReqrec.getRequestDay(), "yyyy-MM-dd HH:mm:ss"),
                         mzyReqrec.getReqFee() == null ? "0" : mzyReqrec.getReqFee().toString(),
                         mzyReqrec.getClinicFee() == null ? "0" : mzyReqrec.getClinicFee().toString(),
-                        mzyReqrec.getOthFee() == null ? "0" : mzyReqrec.getOthFee().toString(), status
+                        mzyReqrec.getOthFee() == null ? "0" : mzyReqrec.getOthFee().toString(), status,
+                        mzyReqrecVo.getMzPatientMi().getAddress()==null?"":mzyReqrecVo.getMzPatientMi().getAddress()
                 };
                 arr.add(temp);
             }

+ 224 - 0
src/test/java/cn/hnthyy/thmz/service/impl/his/TestExcelUtil.java

@@ -0,0 +1,224 @@
+package cn.hnthyy.thmz.service.impl.his;
+
+import org.apache.poi.hssf.usermodel.HSSFWorkbook;
+import org.apache.poi.hssf.util.HSSFColor;
+import org.apache.poi.ss.usermodel.*;
+
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.OutputStream;
+import java.io.UnsupportedEncodingException;
+import java.util.Random;
+
+/**
+ * Created by Wang on 2021/12/2.
+ */
+public class TestExcelUtil {
+ 
+    /**
+     * 打印表格
+     */
+    public static Boolean print() {
+        //通用变量
+        int rowNo = 0, cellNo = 1;
+        Row nRow;
+        Cell nCell;
+ 
+        //1.创建工作簿
+        HSSFWorkbook wb = new HSSFWorkbook();
+        //2.创建工作表
+        Sheet sheet = wb.createSheet();
+        //设置列宽
+        sheet.setColumnWidth(cellNo++, 19 * 256);
+        sheet.setColumnWidth(cellNo++, 19 * 256);
+        sheet.setColumnWidth(cellNo++, 19 * 256);
+        sheet.setColumnWidth(cellNo, 19 * 256);
+ 
+        cellNo = 0;//重置
+        //3.创建行对象
+        //=======================================小标题====================================
+        String[] titles =
+                {"姓名", "国家", "手机号", "单位"};
+ 
+        //创建小标题的行对象
+        nRow = sheet.createRow(rowNo++);
+        nRow.setHeightInPoints(26.25f);//设置行高
+ 
+        //创建单元格对象,并设置内容 ,并设置样式
+        CellStyle titleCellStyle = title(wb);
+        for (String title : titles) {
+            nCell = nRow.createCell(cellNo++);//创建单元格对象
+            nCell.setCellValue(title);//设置内容
+            nCell.setCellStyle(titleCellStyle);//设置样式
+        }
+ 
+        //=======================================数据输出=================================================
+        CellStyle textCellStyle = text(wb);
+        //10000的值可以随机换成你要生成的数量
+        for (int i = 0; i < 10000; i++) {
+ 
+            nRow = sheet.createRow(rowNo++);//产生数据行
+            nRow.setHeightInPoints(24);//设置行高
+ 
+            cellNo = 0;
+            nCell = nRow.createCell(cellNo++);
+            //getName()为下面的随机生成姓名的方法
+            nCell.setCellValue(getName());
+            nCell.setCellStyle(textCellStyle);
+ 
+            nCell = nRow.createCell(cellNo++);
+            nCell.setCellValue("中国大陆");
+            nCell.setCellStyle(textCellStyle);
+ 
+            nCell = nRow.createCell(cellNo++);
+            //getTel()为下面随机生成手机号的方法
+            nCell.setCellValue(getTel());
+            nCell.setCellStyle(textCellStyle);
+ 
+            nCell = nRow.createCell(cellNo);
+            nCell.setCellValue("北京医院测试单位");
+            nCell.setCellStyle(textCellStyle);
+        }
+ 
+ 
+        //导出文件位置
+        String fileName = "G:\\excel\\scoreApplyInfo.xls";
+        try (OutputStream outputStream = new FileOutputStream(fileName)) {
+            wb.write(outputStream);
+            outputStream.flush();
+        } catch (IOException e) {
+
+        }
+        return true;
+    }
+ 
+    //小标题的样式
+    private static CellStyle title(Workbook wb) {
+        CellStyle style = wb.createCellStyle();
+        Font font = wb.createFont();
+        font.setFontName("黑体");
+        font.setFontHeightInPoints((short) 12);
+        font.setBold(true);
+ 
+        style.setFont(font);
+        style.setAlignment(HorizontalAlignment.CENTER);
+        style.setVerticalAlignment(VerticalAlignment.CENTER);
+        style.setBorderTop(BorderStyle.THIN);
+        style.setBorderBottom(BorderStyle.THIN);
+        style.setBorderLeft(BorderStyle.THIN);
+        style.setBorderRight(BorderStyle.THIN);
+ 
+        //背景色
+        style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
+        style.setFillForegroundColor(HSSFColor.HSSFColorPredefined.YELLOW.getIndex());
+        return style;
+    }
+ 
+    //文字样式
+    private static CellStyle text(Workbook wb) {
+        CellStyle style = wb.createCellStyle();
+        Font font = wb.createFont();
+        font.setFontName("Times New Roman");
+        font.setFontHeightInPoints((short) 10);
+ 
+        style.setFont(font);
+        style.setAlignment(HorizontalAlignment.CENTER);
+        style.setVerticalAlignment(VerticalAlignment.CENTER);
+        style.setBorderTop(BorderStyle.THIN);
+        style.setBorderBottom(BorderStyle.THIN);
+        style.setBorderLeft(BorderStyle.THIN);
+        style.setBorderRight(BorderStyle.THIN);
+ 
+        return style;
+    }
+ 
+    /******随机生成姓名的方法 ******开始******/
+    public static String getChinese() {
+        String str = null;
+        int highPos, lowPos;
+        Random random = new Random();
+        highPos = (176 + Math.abs(random.nextInt(71)));//区码,0xA0打头,从第16区开始,即0xB0=11*16=176,16~55一级汉字,56~87二级汉字
+        random = new Random();
+        lowPos = 161 + Math.abs(random.nextInt(94));//位码,0xA0打头,范围第1~94列
+ 
+        byte[] bArr = new byte[2];
+        bArr[0] = (new Integer(highPos)).byteValue();
+        bArr[1] = (new Integer(lowPos)).byteValue();
+        try {
+            str = new String(bArr, "GB2312");    //区位码组合成汉字
+        } catch (UnsupportedEncodingException e) {
+            e.printStackTrace();
+        }
+        return str;
+    }
+ 
+    public static String getName() {
+        Random random = new Random(System.currentTimeMillis());
+        /* 598 百家姓 */
+        String[] Surname = {"赵", "钱", "孙", "李", "周", "吴", "郑", "王", "冯", "陈", "褚", "卫", "蒋", "沈", "韩", "杨", "朱", "秦", "尤", "许",
+                "何", "吕", "施", "张", "孔", "曹", "严", "华", "金", "魏", "陶", "姜", "戚", "谢", "邹", "喻", "柏", "水", "窦", "章", "云", "苏", "潘", "葛", "奚", "范", "彭", "郎",
+                "鲁", "韦", "昌", "马", "苗", "凤", "花", "方", "俞", "任", "袁", "柳", "酆", "鲍", "史", "唐", "费", "廉", "岑", "薛", "雷", "贺", "倪", "汤", "滕", "殷",
+                "罗", "毕", "郝", "邬", "安", "常", "乐", "于", "时", "傅", "皮", "卞", "齐", "康", "伍", "余", "元", "卜", "顾", "孟", "平", "黄", "和",
+                "穆", "萧", "尹", "姚", "邵", "湛", "汪", "祁", "毛", "禹", "狄", "米", "贝", "明", "臧", "计", "伏", "成", "戴", "谈", "宋", "茅", "庞", "熊", "纪", "舒",
+                "屈", "项", "祝", "董", "梁", "杜", "阮", "蓝", "闵", "席", "季", "麻", "强", "贾", "路", "娄", "危", "江", "童", "颜", "郭", "梅", "盛", "林", "刁", "钟",
+                "徐", "邱", "骆", "高", "夏", "蔡", "田", "樊", "胡", "凌", "霍", "虞", "万", "支", "柯", "昝", "管", "卢", "莫", "经", "房", "裘", "缪", "干", "解", "应",
+                "宗", "丁", "宣", "贲", "邓", "郁", "单", "杭", "洪", "包", "诸", "左", "石", "崔", "吉", "钮", "龚", "程", "嵇", "邢", "滑", "裴", "陆", "荣", "翁", "荀",
+                "羊", "于", "惠", "甄", "曲", "家", "封", "芮", "羿", "储", "靳", "汲", "邴", "糜", "松", "井", "段", "富", "巫", "乌", "焦", "巴", "弓", "牧", "隗", "山",
+                "谷", "车", "侯", "宓", "蓬", "全", "郗", "班", "仰", "秋", "仲", "伊", "宫", "宁", "仇", "栾", "暴", "甘", "钭", "厉", "戎", "祖", "武", "符", "刘", "景",
+                "詹", "束", "龙", "叶", "幸", "司", "韶", "郜", "黎", "蓟", "溥", "印", "宿", "白", "怀", "蒲", "邰", "从", "鄂", "索", "咸", "籍", "赖", "卓", "蔺", "屠",
+                "蒙", "池", "乔", "阴", "郁", "胥", "能", "苍", "双", "闻", "莘", "党", "翟", "谭", "贡", "劳", "逄", "姬", "申", "扶", "堵", "冉", "宰", "郦", "雍", "却",
+                "璩", "桑", "桂", "濮", "牛", "寿", "通", "边", "扈", "燕", "冀", "浦", "尚", "农", "温", "别", "庄", "晏", "柴", "瞿", "阎", "充", "慕", "连", "茹", "习",
+                "宦", "艾", "鱼", "容", "向", "古", "易", "慎", "戈", "廖", "庾", "终", "暨", "居", "衡", "步", "都", "耿", "满", "弘", "匡", "国", "文", "寇", "广", "禄",
+                "阙", "东", "欧", "殳", "沃", "利", "蔚", "越", "夔", "隆", "师", "巩", "厍", "聂", "晁", "勾", "敖", "融", "冷", "訾", "辛", "阚", "那", "简", "饶", "空",
+                "曾", "毋", "沙", "乜", "养", "鞠", "须", "丰", "巢", "关", "蒯", "相", "查", "后", "荆", "红", "游", "郏", "竺", "权", "逯", "盖", "益", "桓", "公", "仉",
+                "督", "岳", "帅", "缑", "亢", "况", "郈", "有", "琴", "归", "海", "晋", "楚", "闫", "法", "汝", "鄢", "涂", "钦", "商", "牟", "佘", "佴", "伯", "赏", "墨",
+                "哈", "谯", "篁", "年", "爱", "阳", "佟", "言", "福", "南", "火", "铁", "迟", "漆", "官", "冼", "真", "展", "繁", "檀", "祭", "密", "敬", "揭", "舜", "楼",
+                "疏", "冒", "浑", "挚", "胶", "随", "高", "皋", "原", "种", "练", "弥", "仓", "眭", "蹇", "覃", "阿", "门", "恽", "来", "綦", "召", "仪", "风", "介", "巨",
+                "木", "京", "狐", "郇", "虎", "枚", "抗", "达", "杞", "苌", "折", "麦", "庆", "过", "竹", "端", "鲜", "皇", "亓", "老", "是", "秘", "畅", "邝", "还", "宾",
+                "闾", "辜", "纵", "侴", "万俟", "司马", "上官", "欧阳", "夏侯", "诸葛", "闻人", "东方", "赫连", "皇甫", "羊舌", "尉迟", "公羊", "澹台", "公冶", "宗正",
+                "濮阳", "淳于", "单于", "太叔", "申屠", "公孙", "仲孙", "轩辕", "令狐", "钟离", "宇文", "长孙", "慕容", "鲜于", "闾丘", "司徒", "司空", "兀官", "司寇",
+                "南门", "呼延", "子车", "颛孙", "端木", "巫马", "公西", "漆雕", "车正", "壤驷", "公良", "拓跋", "夹谷", "宰父", "谷梁", "段干", "百里", "东郭", "微生",
+                "梁丘", "左丘", "东门", "西门", "南宫", "第五", "公仪", "公乘", "太史", "仲长", "叔孙", "屈突", "尔朱", "东乡", "相里", "胡母", "司城", "张廖", "雍门",
+                "毋丘", "贺兰", "綦毋", "屋庐", "独孤", "南郭", "北宫", "王孙"};
+ 
+        int index = random.nextInt(Surname.length - 1);
+        String name = Surname[index]; //获得一个随机的姓氏
+ 
+        /* 从常用字中选取一个或两个字作为名 */
+        if (random.nextBoolean()) {
+            name += getChinese() + getChinese();
+        } else {
+            name += getChinese();
+        }
+        return name;
+    }
+ 
+    /******随机生成姓名的方法 ******结束******/
+ 
+ 
+    /******随机生成手机号的方法 ******开始******/
+    public static int getNum(int start, int end) {
+        return (int) (Math.random() * (end - start + 1) + start);
+    }
+ 
+    private static String[] telFirst = "134,135,136,137,138,139,150,151,152,157,158,159,130,131,132,155,156,133,153".split(",");
+ 
+    private static String getTel() {
+        int index = getNum(0, telFirst.length - 1);
+        String first = telFirst[index];
+        String second = String.valueOf(getNum(1, 888) + 10000).substring(1);
+        String third = String.valueOf(getNum(1, 9100) + 10000).substring(1);
+        return first + second + third;
+    }
+    /******随机生成手机号的方法 ******结束******/
+ 
+    public static void main(String[] args) {
+        //导出excel到本地
+        Boolean print = print();
+        if(print){
+            System.out.println("success");
+        }else {
+            System.out.println("error");
+        }
+    }
+}