|
@@ -0,0 +1,183 @@
|
|
|
|
|
+package com.java110.front.smo.assetExport.impl;
|
|
|
|
|
+
|
|
|
|
|
+import com.alibaba.fastjson.JSONArray;
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
+import com.java110.core.component.BaseComponentSMO;
|
|
|
|
|
+import com.java110.core.context.IPageData;
|
|
|
|
|
+import com.java110.entity.component.ComponentValidateResult;
|
|
|
|
|
+import com.java110.front.smo.assetExport.IExportFeeManualCollectionSMO;
|
|
|
|
|
+import com.java110.utils.constant.ServiceConstant;
|
|
|
|
|
+import com.java110.utils.util.Assert;
|
|
|
|
|
+import com.java110.utils.util.DateUtil;
|
|
|
|
|
+import org.apache.poi.ss.usermodel.Cell;
|
|
|
|
|
+import org.apache.poi.ss.usermodel.CellStyle;
|
|
|
|
|
+import org.apache.poi.ss.usermodel.Row;
|
|
|
|
|
+import org.apache.poi.ss.usermodel.Sheet;
|
|
|
|
|
+import org.apache.poi.ss.usermodel.Workbook;
|
|
|
|
|
+import org.apache.poi.ss.util.CellRangeAddress;
|
|
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
|
|
+import org.slf4j.Logger;
|
|
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
|
+import org.springframework.http.HttpHeaders;
|
|
|
|
|
+import org.springframework.http.HttpMethod;
|
|
|
|
|
+import org.springframework.http.HttpStatus;
|
|
|
|
|
+import org.springframework.http.ResponseEntity;
|
|
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
|
|
+import org.springframework.util.MultiValueMap;
|
|
|
|
|
+import org.springframework.web.client.RestTemplate;
|
|
|
|
|
+
|
|
|
|
|
+import java.io.ByteArrayOutputStream;
|
|
|
|
|
+import java.io.IOException;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * @ClassName AssetImportSmoImpl
|
|
|
|
|
+ * @Description TODO
|
|
|
|
|
+ * @Author wuxw
|
|
|
|
|
+ * @Date 2019/9/23 23:14
|
|
|
|
|
+ * @Version 1.0
|
|
|
|
|
+ * add by wuxw 2019/9/23
|
|
|
|
|
+ **/
|
|
|
|
|
+@Service("exportFeeManualCollectionSMOImpl")
|
|
|
|
|
+public class ExportFeeManualCollectionSMOImpl extends BaseComponentSMO implements IExportFeeManualCollectionSMO {
|
|
|
|
|
+ private final static Logger logger = LoggerFactory.getLogger(ExportFeeManualCollectionSMOImpl.class);
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private RestTemplate restTemplate;
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public ResponseEntity<Object> exportExcelData(IPageData pd) throws Exception {
|
|
|
|
|
+
|
|
|
|
|
+ ComponentValidateResult result = this.validateStoreStaffCommunityRelationship(pd, restTemplate);
|
|
|
|
|
+
|
|
|
|
|
+ Assert.hasKeyAndValue(JSONObject.parseObject(pd.getReqData()), "communityId", "请求中未包含小区");
|
|
|
|
|
+
|
|
|
|
|
+ Workbook workbook = null; //工作簿
|
|
|
|
|
+ //工作表
|
|
|
|
|
+ workbook = new XSSFWorkbook();
|
|
|
|
|
+ //获取楼信息
|
|
|
|
|
+ getRoomFees(pd, result, workbook);
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ ByteArrayOutputStream os = new ByteArrayOutputStream();
|
|
|
|
|
+ MultiValueMap headers = new HttpHeaders();
|
|
|
|
|
+ headers.add("content-type", "application/octet-stream;charset=UTF-8");
|
|
|
|
|
+ headers.add("Content-Disposition", "attachment;filename=feeManualCollection_" + DateUtil.getyyyyMMddhhmmssDateString() + ".xlsx");
|
|
|
|
|
+ headers.add("Pargam", "no-cache");
|
|
|
|
|
+ headers.add("Cache-Control", "no-cache");
|
|
|
|
|
+ //headers.add("Content-Disposition", "attachment; filename=" + outParam.getString("fileName"));
|
|
|
|
|
+ headers.add("Accept-Ranges", "bytes");
|
|
|
|
|
+ byte[] context = null;
|
|
|
|
|
+ try {
|
|
|
|
|
+ workbook.write(os);
|
|
|
|
|
+ context = os.toByteArray();
|
|
|
|
|
+ os.close();
|
|
|
|
|
+ workbook.close();
|
|
|
|
|
+ } catch (IOException e) {
|
|
|
|
|
+ e.printStackTrace();
|
|
|
|
|
+ // 保存数据
|
|
|
|
|
+ return new ResponseEntity<Object>("导出失败", HttpStatus.INTERNAL_SERVER_ERROR);
|
|
|
|
|
+ }
|
|
|
|
|
+ // 保存数据
|
|
|
|
|
+ return new ResponseEntity<Object>(context, headers, HttpStatus.OK);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询存在的房屋信息
|
|
|
|
|
+ * room.queryRooms
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param pd
|
|
|
|
|
+ * @param result
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ private JSONArray getExistsRoomFee(IPageData pd, ComponentValidateResult result) {
|
|
|
|
|
+ String apiUrl = "";
|
|
|
|
|
+ ResponseEntity<String> responseEntity = null;
|
|
|
|
|
+ apiUrl = ServiceConstant.SERVICE_API_URL + "/api/feeManualCollection/queryExportCollections?communityId=" + result.getCommunityId();
|
|
|
|
|
+ responseEntity = this.callCenterService(restTemplate, pd, "", apiUrl, HttpMethod.GET);
|
|
|
|
|
+
|
|
|
|
|
+ if (responseEntity.getStatusCode() != HttpStatus.OK) { //跳过 保存单元信息
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ JSONObject savedRoomInfoResults = JSONObject.parseObject(responseEntity.getBody());
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ if (!savedRoomInfoResults.containsKey("data")) {
|
|
|
|
|
+ return null;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ return savedRoomInfoResults.getJSONArray("data");
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 获取 房屋信息
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param componentValidateResult
|
|
|
|
|
+ * @param workbook
|
|
|
|
|
+ */
|
|
|
|
|
+ private void getRoomFees(IPageData pd, ComponentValidateResult componentValidateResult, Workbook workbook) {
|
|
|
|
|
+ Sheet sheet = workbook.createSheet("人工托收");
|
|
|
|
|
+ Row row = sheet.createRow(0);
|
|
|
|
|
+ Cell cell0 = row.createCell(0);
|
|
|
|
|
+ cell0.setCellValue("小区名称: ;办公电话: ;具体交费地点: ;\n" +
|
|
|
|
|
+ "对公信息:开户名: ;对公账号: ;开户行: ;税号: ;\n" +
|
|
|
|
|
+ "对接人员姓名(包括项目上的和公司财务对接人员): ;对接人员电话: ;\n" +
|
|
|
|
|
+ "可否上门收: ;有无业委会: ;是否属前期物业: ;物业上班时间: ;" +
|
|
|
|
|
+ "物业入驻小区开始服务时间:如:2014年1月1号服务至今 ;有无涨价: ;有无涨价公告: ;" +
|
|
|
|
|
+ "有无提前收取其他费用(如:水电周转金 、装修押金 、土头清运费 )");
|
|
|
|
|
+ CellStyle cs = workbook.createCellStyle();
|
|
|
|
|
+ cs.setWrapText(true); //关键
|
|
|
|
|
+ cell0.setCellStyle(cs);
|
|
|
|
|
+ row.setHeight((short) (200 * 10));
|
|
|
|
|
+ row = sheet.createRow(1);
|
|
|
|
|
+ row.createCell(0).setCellValue("序号");
|
|
|
|
|
+ row.createCell(1).setCellValue("房号");
|
|
|
|
|
+ row.createCell(2).setCellValue("姓名");
|
|
|
|
|
+ row.createCell(3).setCellValue("联系电话");
|
|
|
|
|
+ row.createCell(4).setCellValue("收费面积/m2");
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ //查询楼栋信息
|
|
|
|
|
+ JSONArray rooms = this.getExistsRoomFee(pd, componentValidateResult);
|
|
|
|
|
+ if (rooms == null || rooms.size() < 1) {
|
|
|
|
|
+ CellRangeAddress region = new CellRangeAddress(0, 0, 0, 6);
|
|
|
|
|
+ sheet.addMergedRegion(region);
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
|
|
+ JSONObject dataObj = rooms.getJSONObject(0);
|
|
|
|
|
+ int dataKeyIndex = 1;
|
|
|
|
|
+ for (String key : dataObj.keySet()) {
|
|
|
|
|
+ if (key.contains("-")) {
|
|
|
|
|
+ row.createCell(dataKeyIndex).setCellValue(key.substring(key.indexOf("-") + 1));
|
|
|
|
|
+ } else {
|
|
|
|
|
+ row.createCell(dataKeyIndex).setCellValue(key);
|
|
|
|
|
+ }
|
|
|
|
|
+ dataKeyIndex++;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ for (int roomIndex = 0; roomIndex < rooms.size(); roomIndex++) {
|
|
|
|
|
+ row = sheet.createRow(roomIndex + 2);
|
|
|
|
|
+ dataObj = rooms.getJSONObject(roomIndex);
|
|
|
|
|
+ dataKeyIndex = 0;
|
|
|
|
|
+ for (String key : dataObj.keySet()) {
|
|
|
|
|
+ row.createCell(dataKeyIndex).setCellValue(dataObj.getString(key));
|
|
|
|
|
+ dataKeyIndex++;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ CellRangeAddress region = new CellRangeAddress(0, 0, 0, 6);
|
|
|
|
|
+ sheet.addMergedRegion(region);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public RestTemplate getRestTemplate() {
|
|
|
|
|
+ return restTemplate;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setRestTemplate(RestTemplate restTemplate) {
|
|
|
|
|
+ this.restTemplate = restTemplate;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|