wangzhinan 3 роки тому
батько
коміт
802b1d7668

+ 14 - 14
svr/svr-base/src/main/java/com/yihu/jw/base/service/a3service/MedicineDrugsService.java

@ -422,20 +422,20 @@ public class MedicineDrugsService extends BaseJpaService<Mediicinedrugs, Mediici
            int ii=1;
            for (Map<String, Object> tmp : ls) {
                addCell(sheet, j, 0, ii + "img");
                addCell(sheet, j, 1, tmp.get("drugNameAlies") +"/" + tmp.get("drugBarCode"));
                addCell(sheet, j, 2, tmp.get("drugTypeCode") + "");
                addCell(sheet, j, 3, tmp.get("dosForm") + "");
                addCell(sheet, j, 4, tmp.get("drugTypeCode")+"");
                addCell(sheet, j, 5, tmp.get("unit") + "");
                addCell(sheet, j, 6, tmp.get("price") + "");
                addCell(sheet, j, 7, tmp.get("inventory") + "");
                addCell(sheet, j, 8, tmp.get("saleVolume") + "");
                addCell(sheet, j, 9, tmp.get("selfCode") + "");
                addCell(sheet, j, 10, tmp.get("specif") + "");
                addCell(sheet, j, 11, tmp.get("manufactor") + "");
                addCell(sheet, j, 12, tmp.get("approvalNum") + "");
                addCell(sheet, j, 13, tmp.get("brand") + "");
                addCell(sheet, j, 14, tmp.get("state") + "");
                addCell(sheet, j, 1, tmp.get("drugNameAlies")==null ? "" : tmp.get("drugNameAlies") +"/" + tmp.get("drugBarCode")==null ? "" : tmp.get("drugBarCode") +"");
                addCell(sheet, j, 2, tmp.get("drugTypeCode") == null? "" : tmp.get("drugTypeCode") + "");
                addCell(sheet, j, 3, tmp.get("dosForm") == null ? "" : tmp.get("dosForm") + "");
                addCell(sheet, j, 4, tmp.get("drugTypeCode") == null ? "" :tmp.get("drugTypeCode") +"");
                addCell(sheet, j, 5, tmp.get("unit") == null ? "" : tmp.get("unit") + "");
                addCell(sheet, j, 6, tmp.get("price") == null ? "" :tmp.get("price")  + "");
                addCell(sheet, j, 7, tmp.get("inventory") == null ? "" : tmp.get("inventory") + "");
                addCell(sheet, j, 8, tmp.get("saleVolume") == null ? "" : tmp.get("saleVolume") + "");
                addCell(sheet, j, 9, tmp.get("selfCode") == null ? "" :tmp.get("selfCode")  + "");
                addCell(sheet, j, 10, tmp.get("specif") == null ? "" : tmp.get("specif") + "");
                addCell(sheet, j, 11, tmp.get("manufactor") == null ? "" : tmp.get("manufactor") + "");
                addCell(sheet, j, 12, tmp.get("approvalNum") == null ? "" : tmp.get("approvalNum") + "");
                addCell(sheet, j, 13, tmp.get("brand") == null ? "" : tmp.get("brand")  + "");
                addCell(sheet, j, 14, tmp.get("state") == null ? "" : tmp.get("state") + "");
                j++;
                ii++;
            }