|  |  |  | 
|---|
|  |  |  | if ("5322".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.IN_WEIGHT_5322; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 眉山市库使用 | 
|---|
|  |  |  | if ("5005".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.IN_WEIGHT_5005; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 丹棱库使用 | 
|---|
|  |  |  | if ("5012".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.IN_WEIGHT_5012; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("billTitle", bill.getBillTitle()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("foodVariety", bill.getFoodVariety()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("depotName", bill.getDepotName()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("foodLocation", bill.getFoodLocation()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("plateNum", bill.getPlateNum()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("fullWeight", | 
|---|
|  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("remark", bill.getRemark()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("moneyName", bill.getMoneyName()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleUser", bill.getHandleUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("unitName", bill.getUnitName()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("time", bill.getRegisterTime()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleStart", ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleEnd", ""); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("weightUser", | 
|---|
|  |  |  | bill.getWeightUser() == null ? "" : bill.getWeightUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("handleUser", | 
|---|
|  |  |  | bill.getHandleUser() == null ? "" : bill.getHandleUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("keeperName", | 
|---|
|  |  |  | bill.getKeeperUser() == null ? "" : bill.getKeeperUser()); | 
|---|
|  |  |  | return htmlStr; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | public String outWeightBill(InoutData data) { | 
|---|
|  |  |  | // 获取表单数据 | 
|---|
|  |  |  | WeightBill bill = this.createBillData(data, "出库称重单"); | 
|---|
|  |  |  | WeightBill bill = this.createBillData(data, "出库划码单"); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | //默认模版 | 
|---|
|  |  |  | String htmlStr = InoutBill.OUT_WEIGHT_DEFAULT; | 
|---|
|  |  |  | 
|---|
|  |  |  | if ("5322".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.OUT_WEIGHT_5322; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 眉山市库使用 | 
|---|
|  |  |  | if ("5005".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.OUT_WEIGHT_5005; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | // 丹棱库使用 | 
|---|
|  |  |  | if ("5012".equals(data.getCompanyId())) { | 
|---|
|  |  |  | htmlStr = InoutBill.OUT_WEIGHT_5012; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | htmlStr = htmlStr.replace("billTitle", bill.getBillTitle()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("registerTime", bill.getRegisterTime()); | 
|---|
|  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("fullTime", bill.getFullTime()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("emptyTime", bill.getEmptyTime()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("serId", bill.getSerId()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("specType", bill.getSpecType()); | 
|---|
|  |  |  | //        htmlStr = htmlStr.replace("specType", bill.getSpecType()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("customerName", bill.getCustomerName()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("deptName", bill.getUnitName()); | 
|---|
|  |  |  | 
|---|
|  |  |  | new DecimalFormat("0").format(bill.getNetWeight())); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("remark", bill.getRemark()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("deWet", bill.getDeWet() + ""); | 
|---|
|  |  |  | //        htmlStr = htmlStr.replace("deWet", bill.getDeWet() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("settleWeight", | 
|---|
|  |  |  | new DecimalFormat("0").format(bill.getSettleWeight())); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("deHandle", bill.getDeHandle() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleUser", bill.getHandleUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("deSum", bill.getDeSum() + ""); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("deOther", bill.getDeOther() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("price", bill.getPrice()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("settleMoney", bill.getSettleMoney() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("wet", bill.getWet() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("impurity", bill.getImpurity() + ""); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("unitName", bill.getUnitName()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("time", bill.getRegisterTime()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleStart", ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("handleEnd", ""); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("weightUser", | 
|---|
|  |  |  | bill.getWeightUser() == null ? "" : bill.getWeightUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("handleUser", | 
|---|
|  |  |  | bill.getHandleUser() == null ? "" : bill.getHandleUser()); | 
|---|
|  |  |  | htmlStr = htmlStr.replaceAll("keeperName", | 
|---|
|  |  |  | bill.getKeeperUser() == null ? "" : bill.getKeeperUser()); | 
|---|
|  |  |  | return htmlStr; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | bill.setSettleMoney(data.getSettleMoney() == null ? "" : data.getSettleMoney() + ""); | 
|---|
|  |  |  | bill.setRemark(data.getRemarks() == null ? "" : data.getRemarks()); | 
|---|
|  |  |  | bill.setDeSum(data.getDeCheck() + data.getDeOther() + data.getDeHandle() + data.getDePackage()); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | if(InoutConstant.TYPE_IN.equals(data.getType())){ | 
|---|
|  |  |  | bill.setWeightUser(data.getFullWeightUser()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | if(InoutConstant.TYPE_OUT.equals(data.getType())){ | 
|---|
|  |  |  | bill.setWeightUser(data.getEmptyWeightUser()); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | bill.setHandleUser(data.getHandleUser()); | 
|---|
|  |  |  | bill.setKeeperUser(depot.getStoreKeeperName()); | 
|---|
|  |  |  | return bill; | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | 
|---|
|  |  |  | (dept == null ? "入库化验单" : dept.getName() + "入库化验单")); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | // 替换基础数据 | 
|---|
|  |  |  | String time = DateFormatUtils.format(data.getRegisterTime(), | 
|---|
|  |  |  | "yyyy-MM-dd"); | 
|---|
|  |  |  | //        String time = DateFormatUtils.format(data.getRegisterTime(), | 
|---|
|  |  |  | //                "yyyy-MM-dd"); | 
|---|
|  |  |  | String checkTime = data.getCheckTime() == null ? "-" : DateFormatUtils.format(data.getCheckTime(), "yyyy-MM-dd HH:mm:ss"); | 
|---|
|  |  |  | String sampleTime = data.getSampleTime() == null ? "-" : DateFormatUtils.format(data.getSampleTime(), "yyyy-MM-dd HH:mm:ss"); | 
|---|
|  |  |  | String reportTime = DateFormatUtils.format(new Date(), "yyyy-MM-dd HH:mm:ss"); | 
|---|
|  |  |  | 
|---|
|  |  |  | } | 
|---|
|  |  |  | //        htmlStr = htmlStr.replace("driverName", settle.getUserName() + ""); | 
|---|
|  |  |  | //        htmlStr = htmlStr.replace("otherSum", settle.getOtherSum() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("paySum", settle.getPaySum() + ""); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("paySum", settle.getPayMoney() + ""); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | htmlStr = htmlStr.replace("remark", settle.getRemarks() == null ? "" | 
|---|
|  |  |  | : settle.getRemarks()); | 
|---|
|  |  |  | htmlStr = htmlStr.replace("moneyName", | 
|---|
|  |  |  | MoneyUtil.formatToCN(new BigDecimal(settle.getPaySum()))); | 
|---|
|  |  |  | MoneyUtil.formatToCN(new BigDecimal(settle.getPayMoney()))); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | return htmlStr; | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | List<String> strings3 = result.subList(6, 8); | 
|---|
|  |  |  | System.out.println(strings3); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | } | 
|---|