| | |
| | | |
| | | import com.alibaba.fastjson.JSONArray; |
| | | import com.alibaba.fastjson.JSONObject; |
| | | |
| | | import com.java110.config.properties.code.Java110Properties; |
| | | import com.java110.core.client.FtpUploadTemplate; |
| | | import com.java110.core.client.OssUploadTemplate; |
| | | |
| | | import com.java110.core.component.BaseComponentSMO; |
| | | import com.java110.core.context.IPageData; |
| | | import com.java110.core.factory.GenerateCodeFactory; |
| | | import com.java110.dto.RoomDto; |
| | | import com.java110.dto.fee.FeeDto; |
| | | import com.java110.entity.assetImport.ImportRoomFee; |
| | | import com.java110.entity.component.ComponentValidateResult; |
| | | import com.java110.front.smo.assetImport.IImportRoomFeeSMO; |
| | | |
| | | import com.java110.utils.cache.MappingCache; |
| | | import com.java110.utils.constant.ServiceConstant; |
| | | import com.java110.utils.util.*; |
| | | |
| | | import com.java110.utils.constant.ServiceConstant; |
| | | import com.java110.utils.util.Assert; |
| | | import com.java110.utils.util.BeanConvertUtil; |
| | | import com.java110.utils.util.DateUtil; |
| | | import com.java110.utils.util.ImportExcelUtils; |
| | | import com.java110.utils.util.StringUtil; |
| | | |
| | | import com.java110.vo.ResultVo; |
| | | import org.apache.poi.ss.usermodel.Sheet; |
| | | import org.apache.poi.ss.usermodel.Workbook; |
| | |
| | | @Autowired |
| | | private RestTemplate restTemplate; |
| | | |
| | | @Autowired |
| | | private FtpUploadTemplate ftpUploadTemplate; |
| | | |
| | | @Autowired |
| | | private Java110Properties java110Properties; |
| | | |
| | | @Autowired |
| | | private OssUploadTemplate ossUploadTemplate; |
| | | |
| | | |
| | | @Override |
| | | public ResponseEntity<String> importExcelData(IPageData pd, MultipartFile uploadFile) throws Exception { |
| | | |
| | | try { |
| | | ComponentValidateResult result = this.validateStoreStaffCommunityRelationship(pd, restTemplate); |
| | | |
| | | JSONObject paramIn = JSONObject.parseObject(pd.getReqData()); |
| | | Assert.hasKeyAndValue(paramIn, "communityId", "请求中未包含小区"); |
| | | Assert.hasKeyAndValue(paramIn, "objType", "请求中未包含费用对象"); |
| | | |
| | | //InputStream is = uploadFile.getInputStream(); |
| | | |
| | | Workbook workbook = ImportExcelUtils.createWorkbook(uploadFile); //工作簿 |
| | | |
| | | List<ImportRoomFee> rooms = new ArrayList<ImportRoomFee>(); |
| | | |
| | | //获取楼信息 |
| | | getRooms(workbook, rooms); |
| | | // 保存数据 |
| | | return dealExcelData(pd, rooms, result); |
| | | if (FeeDto.PAYER_OBJ_TYPE_ROOM.equals(paramIn.getString("objType"))) { |
| | | List<ImportRoomFee> rooms = new ArrayList<ImportRoomFee>(); |
| | | //获取楼信息 |
| | | getRooms(workbook, rooms); |
| | | // 保存数据 |
| | | return dealExcelData(pd, rooms, result); |
| | | }else{ |
| | | List<ImportRoomFee> cars = new ArrayList<ImportRoomFee>(); |
| | | //获取楼信息 |
| | | getCars(workbook, cars); |
| | | // 保存数据 |
| | | return dealExcelCarData(pd, cars, result); |
| | | } |
| | | } catch (Exception e) { |
| | | logger.error("导入失败 ", e); |
| | | return new ResponseEntity<String>("非常抱歉,您填写的模板数据有误:" + e.getMessage(), HttpStatus.BAD_REQUEST); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public ResponseEntity<String> importFile(MultipartFile uploadFile) throws Exception { |
| | | try { |
| | | String fileName = ""; |
| | | String ossSwitch = MappingCache.getValue(OSSUtil.DOMAIN, OSSUtil.OSS_SWITCH); |
| | | if (StringUtil.isEmpty(ossSwitch) || !OSSUtil.OSS_SWITCH_OSS.equals(ossSwitch)) { |
| | | fileName = ftpUploadTemplate.upload(uploadFile, java110Properties.getFtpServer(), |
| | | java110Properties.getFtpPort(), java110Properties.getFtpUserName(), |
| | | java110Properties.getFtpUserPassword(), java110Properties.getFtpPath()); |
| | | } else { |
| | | fileName = ossUploadTemplate.upload(uploadFile, java110Properties.getFtpServer(), |
| | | java110Properties.getFtpPort(), java110Properties.getFtpUserName(), |
| | | java110Properties.getFtpUserPassword(), java110Properties.getFtpPath()); |
| | | } |
| | | ResponseEntity<String> responseEntity = new ResponseEntity<String>(fileName, HttpStatus.OK); |
| | | return responseEntity; |
| | | } catch (Exception e) { |
| | | logger.error("上传合同附件失败 ", e); |
| | | return new ResponseEntity<String>("非常抱歉,上传合同附件失败:" + e.getMessage(), HttpStatus.BAD_REQUEST); |
| | | } |
| | | } |
| | | |
| | | |
| | | |
| | | @Override |
| | | |
| | | public ResponseEntity<String> importTempData(IPageData pd) { |
| | | ComponentValidateResult result = this.validateStoreStaffCommunityRelationship(pd, restTemplate); |
| | | JSONObject paramIn = JSONObject.parseObject(pd.getReqData()); |
| | | ImportRoomFee importRoomFee = BeanConvertUtil.covertBean(paramIn,ImportRoomFee.class); |
| | | importRoomFee.setRoomId(paramIn.getString("objId")); |
| | | List<ImportRoomFee> rooms = new ArrayList<ImportRoomFee>(); |
| | | rooms.add(importRoomFee); |
| | | return dealExcelData(pd, rooms, result); |
| | | } |
| | | |
| | | /** |
| | |
| | | ResponseEntity<String> responseEntity = null; |
| | | //保存单元信息 和 楼栋信息 |
| | | responseEntity = savedRoomFees(pd, roomFees, result); |
| | | |
| | | if (responseEntity == null || responseEntity.getStatusCode() != HttpStatus.OK) { |
| | | return responseEntity; |
| | | } |
| | | |
| | | return responseEntity; |
| | | } |
| | | /** |
| | | * 处理ExcelData数据 |
| | | * |
| | | * @param roomFees 房屋费用 |
| | | */ |
| | | private ResponseEntity<String> dealExcelCarData(IPageData pd, |
| | | List<ImportRoomFee> roomFees, |
| | | |
| | | ComponentValidateResult result) { |
| | | ResponseEntity<String> responseEntity = null; |
| | | //保存单元信息 和 楼栋信息 |
| | | responseEntity = savedCarFees(pd, roomFees, result); |
| | | |
| | | if (responseEntity == null || responseEntity.getStatusCode() != HttpStatus.OK) { |
| | | return responseEntity; |
| | |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_OK, "成功:" + paramOut.getString("successCount") + ",失败:" + paramOut.getString("errorCount")); |
| | | } |
| | | |
| | | private ResponseEntity<String> savedCarFees(IPageData pd, List<ImportRoomFee> carFees, ComponentValidateResult result) { |
| | | |
| | | if (carFees.size() < 1) { |
| | | throw new IllegalArgumentException("没有数据需要处理"); |
| | | } |
| | | |
| | | JSONObject paramOut = new JSONObject(); |
| | | paramOut.put("successCount", 0); |
| | | paramOut.put("errorCount", 0); |
| | | |
| | | JSONObject data = JSONObject.parseObject(pd.getReqData()); |
| | | data.put("storeId", result.getStoreId()); |
| | | data.put("importFeeId", GenerateCodeFactory.getGeneratorId(GenerateCodeFactory.CODE_PREFIX_feeId)); |
| | | data.put("userId", result.getUserId()); |
| | | data.put("communityId", result.getCommunityId()); |
| | | List<ImportRoomFee> tmpImportCarFees = new ArrayList<>(); |
| | | for (int carIndex = 0; carIndex < carFees.size(); carIndex++) { |
| | | tmpImportCarFees.add(carFees.get(carIndex)); |
| | | if (carIndex % DEFAULT_ADD_FEE_COUNT == 0 && carIndex != 0) { |
| | | createCarFee(pd, tmpImportCarFees, data, paramOut); |
| | | |
| | | tmpImportCarFees = new ArrayList<>(); |
| | | } |
| | | } |
| | | if (tmpImportCarFees != null && tmpImportCarFees.size() > 0) { |
| | | |
| | | createCarFee(pd, tmpImportCarFees, data, paramOut); |
| | | } |
| | | return ResultVo.createResponseEntity(ResultVo.CODE_OK, "成功:" + paramOut.getString("successCount") + ",失败:" + paramOut.getString("errorCount")); |
| | | } |
| | | |
| | | /** |
| | | * 创建费用 |
| | | * |
| | |
| | | |
| | | JSONObject resOut = JSONObject.parseObject(responseEntity.getBody()); |
| | | |
| | | successCount += resOut.getInteger("successCount"); |
| | | errorCount += resOut.getInteger("errorCount"); |
| | | if (ResultVo.CODE_OK != resOut.getInteger("code")) { |
| | | errorCount += tmpImportRoomFee.size(); |
| | | paramOut.put("errorCount", errorCount); |
| | | return; |
| | | } |
| | | |
| | | JSONObject resData = resOut.getJSONObject("data"); |
| | | |
| | | successCount += resData.getInteger("successCount"); |
| | | errorCount += resData.getInteger("errorCount"); |
| | | |
| | | paramOut.put("successCount", successCount); |
| | | paramOut.put("errorCount", errorCount); |
| | | } |
| | | |
| | | /** |
| | | * 创建费用 |
| | | * |
| | | * @param pd |
| | | * @param tmpImportCarFee |
| | | */ |
| | | private void createCarFee(IPageData pd, List<ImportRoomFee> tmpImportCarFee, JSONObject data, JSONObject paramOut) { |
| | | |
| | | int successCount = paramOut.getInteger("successCount"); |
| | | int errorCount = paramOut.getInteger("errorCount"); |
| | | |
| | | JSONArray importCarFees = JSONArray.parseArray(JSONObject.toJSONString(tmpImportCarFee)); |
| | | data.put("importCarFees", importCarFees); |
| | | |
| | | String apiUrl = ServiceConstant.SERVICE_API_URL + "/api/feeApi/importCarFees"; |
| | | |
| | | ResponseEntity<String> responseEntity = this.callCenterService(restTemplate, pd, data.toJSONString(), apiUrl, HttpMethod.POST); |
| | | |
| | | if (HttpStatus.OK != responseEntity.getStatusCode()) { |
| | | errorCount += tmpImportCarFee.size(); |
| | | paramOut.put("errorCount", errorCount); |
| | | return; |
| | | } |
| | | |
| | | JSONObject resOut = JSONObject.parseObject(responseEntity.getBody()); |
| | | |
| | | if (ResultVo.CODE_OK != resOut.getInteger("code")) { |
| | | errorCount += tmpImportCarFee.size(); |
| | | paramOut.put("errorCount", errorCount); |
| | | return; |
| | | } |
| | | |
| | | JSONObject resData = resOut.getJSONObject("data"); |
| | | |
| | | successCount += resData.getInteger("successCount"); |
| | | errorCount += resData.getInteger("errorCount"); |
| | | |
| | | paramOut.put("successCount", successCount); |
| | | paramOut.put("errorCount", errorCount); |
| | |
| | | } |
| | | } |
| | | |
| | | /** |
| | | * 获取 房屋信息 |
| | | * |
| | | * @param workbook |
| | | * @param cars |
| | | */ |
| | | private void getCars(Workbook workbook, List<ImportRoomFee> cars) { |
| | | Sheet sheet = null; |
| | | sheet = ImportExcelUtils.getSheet(workbook, "车位费用信息"); |
| | | List<Object[]> oList = ImportExcelUtils.listFromSheet(sheet); |
| | | ImportRoomFee importRoomFee = null; |
| | | for (int osIndex = 0; osIndex < oList.size(); osIndex++) { |
| | | Object[] os = oList.get(osIndex); |
| | | if (osIndex == 0 || osIndex == 1) { // 第一行是 头部信息 直接跳过 |
| | | continue; |
| | | } |
| | | if (StringUtil.isNullOrNone(os[0])) { |
| | | continue; |
| | | } |
| | | |
| | | //费用名称没有填写,默认跳过 |
| | | if (StringUtil.isNullOrNone(os[1])) { |
| | | continue; |
| | | } |
| | | Assert.hasValue(os[2], (osIndex + 1) + "行开始时间不能为空"); |
| | | Assert.hasValue(os[3], (osIndex + 1) + "行结束时间不能为空"); |
| | | Assert.hasValue(os[4], (osIndex + 1) + "行费用不能为空"); |
| | | |
| | | // |
| | | |
| | | String startTime = excelDoubleToDate(os[2].toString()); |
| | | String endTime = excelDoubleToDate(os[3].toString()); |
| | | Assert.isDate(startTime, DateUtil.DATE_FORMATE_STRING_B, (osIndex + 1) + "行开始时间格式错误 请填写YYYY-MM-DD 文本格式"); |
| | | Assert.isDate(endTime, DateUtil.DATE_FORMATE_STRING_B, (osIndex + 1) + "行结束时间格式错误 请填写YYYY-MM-DD 文本格式"); |
| | | |
| | | |
| | | importRoomFee = new ImportRoomFee(); |
| | | importRoomFee.setCarNum(os[0].toString()); |
| | | importRoomFee.setFeeName(os[1].toString()); |
| | | importRoomFee.setStartTime(startTime); |
| | | importRoomFee.setEndTime(endTime); |
| | | importRoomFee.setAmount(os[4].toString()); |
| | | cars.add(importRoomFee); |
| | | } |
| | | } |
| | | |
| | | |
| | | //解析Excel日期格式 |
| | | public static String excelDoubleToDate(String strDate) { |