|
|
|
@ -1,10 +1,29 @@
|
|
|
|
|
package com.air.land.service.impl; |
|
|
|
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil; |
|
|
|
|
import cn.hutool.core.io.FileUtil; |
|
|
|
|
import cn.hutool.core.io.IoUtil; |
|
|
|
|
import cn.hutool.core.util.RandomUtil; |
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import cn.hutool.core.util.ZipUtil; |
|
|
|
|
import cn.hutool.json.JSONUtil; |
|
|
|
|
import com.air.land.entity.AuctionRecord; |
|
|
|
|
import com.air.land.mapper.AuctionRecordMapper; |
|
|
|
|
import com.air.land.service.AuctionRecordService; |
|
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
|
|
|
|
import lombok.SneakyThrows; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFCell; |
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFRow; |
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFSheet; |
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.web.multipart.MultipartFile; |
|
|
|
|
|
|
|
|
|
import java.io.*; |
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Objects; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 参拍记录表 |
|
|
|
@ -13,6 +32,124 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
* @date 2021-05-18 09:39:41 |
|
|
|
|
*/ |
|
|
|
|
@Service |
|
|
|
|
@Slf4j |
|
|
|
|
public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, AuctionRecord> implements AuctionRecordService { |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public void importRecordExcel(MultipartFile file) { |
|
|
|
|
String tempPath = RandomUtil.randomString(6); |
|
|
|
|
File dir = FileUtil.mkdir(tempPath); |
|
|
|
|
File tempFile = FileUtil.createTempFile("record-", "tmp", dir, true); |
|
|
|
|
try { |
|
|
|
|
IoUtil.copy(file.getInputStream(), new FileOutputStream(tempFile)); |
|
|
|
|
} catch (IOException e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
File zipFile = new File(dir.getPath() + "/record.zip"); |
|
|
|
|
FileUtil.move(tempFile, zipFile, true); |
|
|
|
|
ZipUtil.unzip(zipFile); |
|
|
|
|
|
|
|
|
|
List<File> files = new ArrayList<>(); |
|
|
|
|
getAllDirFiles(dir, files); |
|
|
|
|
files.forEach(f -> { |
|
|
|
|
if (!f.getName().startsWith(StrUtil.DOT) && f.getName().endsWith(".xlsx")) { |
|
|
|
|
log.info(f.getName()); |
|
|
|
|
List<AuctionRecord> lists = null; |
|
|
|
|
try { |
|
|
|
|
lists = readAuction(new FileInputStream(f), 0, 7, 21); |
|
|
|
|
} catch (IOException e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
System.out.println(JSONUtil.toJsonPrettyStr(lists)); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
dir.delete(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
@SneakyThrows |
|
|
|
|
public List<AuctionRecord> readRecordExcel(MultipartFile file) { |
|
|
|
|
return readAuction(file.getInputStream(), 0, 7, 21); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private void getAllDirFiles(File file, List<File> files) { |
|
|
|
|
for (File f : Objects.requireNonNull(file.listFiles())) { |
|
|
|
|
if (f.isDirectory()) { |
|
|
|
|
getAllDirFiles(f, files); |
|
|
|
|
} else { |
|
|
|
|
files.add(f); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<AuctionRecord> readAuction(InputStream file, int startSheet, int startRow, int startCell) throws IOException { |
|
|
|
|
// 读取excel模板
|
|
|
|
|
XSSFWorkbook wb = new XSSFWorkbook(file); |
|
|
|
|
XSSFSheet sheet = wb.getSheetAt(startSheet); |
|
|
|
|
int rowSum = sheet.getPhysicalNumberOfRows(); |
|
|
|
|
//取值
|
|
|
|
|
String city = sheet.getRow(2).getCell(1).toString(); |
|
|
|
|
String landName = sheet.getRow(0).getCell(0).toString(); |
|
|
|
|
String landCode = sheet.getRow(2).getCell(2).getRawValue(); |
|
|
|
|
String date = DateUtil.formatDate(sheet.getRow(2).getCell(10).getDateCellValue()); |
|
|
|
|
String winnerEnterprise = getCellValue(sheet.getRow(startCell).getCell(startCell + 1)); |
|
|
|
|
//获取数据
|
|
|
|
|
List<AuctionRecord> result = new ArrayList<>(); |
|
|
|
|
for (int i = startRow; i < rowSum; i++) { |
|
|
|
|
XSSFRow sheetRow = sheet.getRow(i); |
|
|
|
|
String rank = getCellValue(sheetRow.getCell(startCell)); |
|
|
|
|
if (StrUtil.isBlank(rank)) { |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
AuctionRecord record = new AuctionRecord().setCity(city).setLandName(landName).setWinnerEnterprises(winnerEnterprise); |
|
|
|
|
//排名
|
|
|
|
|
record.setRanking(rank); |
|
|
|
|
//举牌企业
|
|
|
|
|
record.setRaiseEnterprise(getCellValue(sheetRow.getCell(startCell + 1))); |
|
|
|
|
//举牌价
|
|
|
|
|
record.setRaisePrice(getCellPrice(sheetRow.getCell(startCell + 2))); |
|
|
|
|
//名义楼面价
|
|
|
|
|
record.setNominalFloorPrice(getCellPrice(sheetRow.getCell(startCell + 3))); |
|
|
|
|
//无偿移交比例
|
|
|
|
|
record.setPercentUnpaidTransfers(getCellPercent(sheetRow.getCell(startCell + 4))); |
|
|
|
|
//实际楼面价
|
|
|
|
|
record.setActualFloorPrice(getCellPrice(sheetRow.getCell(startCell + 5))); |
|
|
|
|
//溢价率
|
|
|
|
|
record.setPremiumRate(getCellPercent(sheetRow.getCell(startCell + 6))); |
|
|
|
|
//最后轮次
|
|
|
|
|
record.setFinalRound(getCellValue(sheetRow.getCell(startCell + 7))); |
|
|
|
|
result.add(record); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getCellValue(XSSFCell cell) { |
|
|
|
|
String value; |
|
|
|
|
try { |
|
|
|
|
cell.getCellFormula(); |
|
|
|
|
value = cell.getRawValue(); |
|
|
|
|
} catch (IllegalStateException e){ |
|
|
|
|
value = cell.toString(); |
|
|
|
|
} |
|
|
|
|
return value; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getCellPrice(XSSFCell cell) { |
|
|
|
|
String price = getCellValue(cell); |
|
|
|
|
if ("未举牌".equals(price)) { |
|
|
|
|
return price; |
|
|
|
|
} |
|
|
|
|
return String.format("%.0f", Double.valueOf(price)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getCellPercent(XSSFCell cell) { |
|
|
|
|
String price = getCellValue(cell); |
|
|
|
|
if ("未举牌".equals(price)) { |
|
|
|
|
return price; |
|
|
|
|
} |
|
|
|
|
Double d = Double.valueOf(price); |
|
|
|
|
d = d * 100; |
|
|
|
|
return String.format("%.2f", d); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|