|
|
|
@ -74,7 +74,7 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
@Override |
|
|
|
|
@SneakyThrows |
|
|
|
|
public List<AuctionRecord> readRecordExcel(MultipartFile file) { |
|
|
|
|
return readAuction(file.getInputStream(), 0, 7, 21); |
|
|
|
|
return readAuction(file.getInputStream(), 0, 6, 21); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@ -102,6 +102,17 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 导入土地参拍记录 |
|
|
|
|
* @author peihao |
|
|
|
|
* @param file 解析文件 |
|
|
|
|
* @param startSheet 开始sheet |
|
|
|
|
* @param startRow 开始行 |
|
|
|
|
* @param startCell 开始列 |
|
|
|
|
* @date 2021/12/9 |
|
|
|
|
* @return |
|
|
|
|
**/ |
|
|
|
|
private List<AuctionRecord> readAuction(InputStream file, int startSheet, int startRow, int startCell) throws IOException { |
|
|
|
|
// 读取excel模板
|
|
|
|
|
XSSFWorkbook wb = new XSSFWorkbook(file); |
|
|
|
@ -115,6 +126,7 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
String winnerEnterprise = getCellValue(sheet.getRow(startCell).getCell(startCell + 1)); |
|
|
|
|
//获取数据
|
|
|
|
|
List<AuctionRecord> result = new ArrayList<>(); |
|
|
|
|
int count = 0; |
|
|
|
|
for (int i = startRow; i < rowSum; i++) { |
|
|
|
|
XSSFRow sheetRow = sheet.getRow(i); |
|
|
|
|
String rank = getCellValue(sheetRow.getCell(startCell)); |
|
|
|
@ -123,7 +135,43 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
} |
|
|
|
|
AuctionRecord record = new AuctionRecord().setCity(city).setLandName(landName).setWinnerEnterprises(winnerEnterprise); |
|
|
|
|
//排名
|
|
|
|
|
record.setRanking(Integer.valueOf(rank)); |
|
|
|
|
record.setRanking(rank); |
|
|
|
|
record.setSort(count); |
|
|
|
|
setAuctionRecord(record,sheetRow,startCell,count); |
|
|
|
|
result.add(record); |
|
|
|
|
count++; |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 解析一行的数据 |
|
|
|
|
* @author peihao |
|
|
|
|
* @param record 参拍记录对象 |
|
|
|
|
* @param sheetRow 行 |
|
|
|
|
* @param startCell 开始列 |
|
|
|
|
* @param count 判断是否为第一行,特殊处理 |
|
|
|
|
* @date 2021/12/9 |
|
|
|
|
* @return |
|
|
|
|
**/ |
|
|
|
|
private void setAuctionRecord(AuctionRecord record,XSSFRow sheetRow,int startCell,int count){ |
|
|
|
|
if (count == 0){ |
|
|
|
|
//举牌企业
|
|
|
|
|
record.setRaiseEnterprise(getStringValue(sheetRow.getCell(startCell + 1))); |
|
|
|
|
//举牌价
|
|
|
|
|
record.setRaisePrice(getStringValue(sheetRow.getCell(startCell + 2))); |
|
|
|
|
//名义楼面价
|
|
|
|
|
record.setNominalFloorPrice(getStringValue(sheetRow.getCell(startCell + 3))); |
|
|
|
|
//无偿移交比例
|
|
|
|
|
record.setPercentUnpaidTransfers(getStringValue(sheetRow.getCell(startCell + 4))); |
|
|
|
|
//实际楼面价
|
|
|
|
|
record.setActualFloorPrice(getStringValue(sheetRow.getCell(startCell + 5))); |
|
|
|
|
//溢价率
|
|
|
|
|
record.setPremiumRate(getStringValue(sheetRow.getCell(startCell + 6))); |
|
|
|
|
//最后轮次
|
|
|
|
|
record.setFinalRound(getStringValue(sheetRow.getCell(startCell + 7))); |
|
|
|
|
}else { |
|
|
|
|
//举牌企业
|
|
|
|
|
record.setRaiseEnterprise(getCellValue(sheetRow.getCell(startCell + 1))); |
|
|
|
|
//举牌价
|
|
|
|
@ -138,10 +186,7 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
record.setPremiumRate(getCellPercent(sheetRow.getCell(startCell + 6))); |
|
|
|
|
//最后轮次
|
|
|
|
|
record.setFinalRound(getCellValue(sheetRow.getCell(startCell + 7))); |
|
|
|
|
result.add(record); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private List<List<String>> entityToList(List<AuctionRecord> auctionRecords){ |
|
|
|
@ -191,4 +236,14 @@ public class AuctionRecordServiceImpl extends ServiceImpl<AuctionRecordMapper, A
|
|
|
|
|
d = d * 100; |
|
|
|
|
return String.format("%.2f", d); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private String getStringValue(XSSFCell cell) { |
|
|
|
|
String cellValue = null; |
|
|
|
|
try { |
|
|
|
|
cellValue = cell.getStringCellValue(); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
return cellValue; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|