Browse Source

修改bug

master
liuchen864 6 months ago
parent
commit
3dcad78923
  1. 38
      win-admin/src/main/java/com/win/web/controller/base/ExcelController.java
  2. 3
      win-admin/src/main/resources/logback-spring.xml
  3. 2
      win-common/src/main/java/com/win/common/constant/HttpStatus.java

38
win-admin/src/main/java/com/win/web/controller/base/ExcelController.java

@ -98,6 +98,9 @@ public class ExcelController {
JSONArray headerJsonArray = JSONArray.parse(jsonObject.getString("ttsupplierrsheader")); JSONArray headerJsonArray = JSONArray.parse(jsonObject.getString("ttsupplierrsheader"));
JSONArray lineJsonArray = JSONArray.parse(jsonObject.getString("ttsupplierrsline")); JSONArray lineJsonArray = JSONArray.parse(jsonObject.getString("ttsupplierrsline"));
List<String> fileNames = new ArrayList<>(); List<String> fileNames = new ArrayList<>();
if(headerJsonArray == null) {
return AjaxResult.error(HttpStatus.TTSUPPLIERRSHEADER_FAIL, "数据不存在ttsupplierrsheader");
}
for(int i = 0; i < headerJsonArray.size(); i++) { for(int i = 0; i < headerJsonArray.size(); i++) {
JSONObject jsonObjectHeader = headerJsonArray.getJSONObject(i); JSONObject jsonObjectHeader = headerJsonArray.getJSONObject(i);
String schmHeaderOrder = jsonObjectHeader.getString("schm_header_order"); String schmHeaderOrder = jsonObjectHeader.getString("schm_header_order");
@ -333,9 +336,11 @@ public class ExcelController {
nextCell.setCellStyle(cellStyle7); nextCell.setCellStyle(cellStyle7);
} }
} }
if (!forecastArray.isEmpty()) {
// 合并单元格 // 合并单元格
CellRangeAddress cellRangeAddress3 = new CellRangeAddress(14, 14, firmArray.size() + 6, firmArray.size() + forecastArray.size() + 5); CellRangeAddress cellRangeAddress3 = new CellRangeAddress(14, 14, firmArray.size() + 6, firmArray.size() + forecastArray.size() + 5);
sheet.addMergedRegion(cellRangeAddress3); sheet.addMergedRegion(cellRangeAddress3);
}
inputStream.close(); inputStream.close();
FileOutputStream outputStream = new FileOutputStream(filePath + "/" + fileName); FileOutputStream outputStream = new FileOutputStream(filePath + "/" + fileName);
workbook.write(outputStream); workbook.write(outputStream);
@ -392,7 +397,7 @@ public class ExcelController {
CellStyle cellStyle7 = getCellStyle(sheet, 16, 10);//Forecast数据样式 CellStyle cellStyle7 = getCellStyle(sheet, 16, 10);//Forecast数据样式
Row row14 = sheet.getRow(14); Row row14 = sheet.getRow(14);
Row row15 = sheet.getRow(15); Row row15 = sheet.getRow(15);
for(int i = 0; i < firmArray.size(); i++) { for (int i = 0; i < firmArray.size(); i++) {
int cellIndex = 8 + i; int cellIndex = 8 + i;
JSONObject firm = firmArray.getJSONObject(i); JSONObject firm = firmArray.getJSONObject(i);
//设置firm标题 //设置firm标题
@ -410,7 +415,7 @@ public class ExcelController {
firmDateCell.setCellValue(firm.getString("schd_line_date")); firmDateCell.setCellValue(firm.getString("schd_line_date"));
firmDateCell.setCellStyle(cellStyle4); firmDateCell.setCellStyle(cellStyle4);
//设置每个firm订单数据 //设置每个firm订单数据
for(int count = 0; count < orderArray.size(); count++) { for (int count = 0; count < orderArray.size(); count++) {
String cellValue = ""; String cellValue = "";
JSONObject object = orderArray.getJSONObject(count); JSONObject object = orderArray.getJSONObject(count);
JSONObject order = firm.getJSONObject(object.getString("schd_line_line")); JSONObject order = firm.getJSONObject(object.getString("schd_line_line"));
@ -419,13 +424,13 @@ public class ExcelController {
if (nextCell == null) { if (nextCell == null) {
nextCell = nextRow.createCell(cellIndex); nextCell = nextRow.createCell(cellIndex);
} }
if(order != null) { if (order != null) {
cellValue = order.getString("schd_line_qty"); cellValue = order.getString("schd_line_qty");
} }
if(cellValue.equals("0")) { if (cellValue.equals("0")) {
cellValue = ""; cellValue = "";
} }
if(!cellValue.isEmpty()) { if (!cellValue.isEmpty()) {
nextCell.setCellValue(new BigDecimal(cellValue).intValue()); nextCell.setCellValue(new BigDecimal(cellValue).intValue());
} else { } else {
nextCell.setCellValue(""); nextCell.setCellValue("");
@ -434,7 +439,7 @@ public class ExcelController {
} }
} }
//设置firm前的Pick Up Date 提货日期列 //设置firm前的Pick Up Date 提货日期列
for(int count = 0; count < orderArray.size(); count++) { for (int count = 0; count < orderArray.size(); count++) {
Row beforeRow = sheet.getRow(16 + count); Row beforeRow = sheet.getRow(16 + count);
Cell beforeCell = beforeRow.getCell(7); Cell beforeCell = beforeRow.getCell(7);
if (beforeCell == null) { if (beforeCell == null) {
@ -444,7 +449,7 @@ public class ExcelController {
beforeCell.setCellStyle(cellStyle1); beforeCell.setCellStyle(cellStyle1);
} }
//设置forecast前的Pick Up Date 提货日期列 //设置forecast前的Pick Up Date 提货日期列
for(int count = 0; count < orderArray.size() + 2; count++) { for (int count = 0; count < orderArray.size() + 2; count++) {
int cellIndex = 8 + firmArray.size(); int cellIndex = 8 + firmArray.size();
Row nextRow = sheet.getRow(14 + count); Row nextRow = sheet.getRow(14 + count);
Cell nextCell = nextRow.getCell(cellIndex); Cell nextCell = nextRow.getCell(cellIndex);
@ -453,23 +458,23 @@ public class ExcelController {
} }
nextCell.setCellValue(""); nextCell.setCellValue("");
nextCell.setCellStyle(cellStyle2); nextCell.setCellStyle(cellStyle2);
if(count == 0) { if (count == 0) {
nextCell.setCellValue("Pick Up Date 提货日期"); nextCell.setCellValue("Pick Up Date 提货日期");
nextCell.setCellStyle(cellStyle2); nextCell.setCellStyle(cellStyle2);
} else if(count == 1) { } else if (count == 1) {
nextCell.setCellValue("ETA " + jsonObjectHeader.getString("schm_header_arrive_us") + "\n到达" + jsonObjectHeader.getString("schm_header_arrive_ch") + "时间"); nextCell.setCellValue("ETA " + jsonObjectHeader.getString("schm_header_arrive_us") + "\n到达" + jsonObjectHeader.getString("schm_header_arrive_ch") + "时间");
} else { } else {
nextCell.setCellValue(""); nextCell.setCellValue("");
} }
} }
for(int i = 0; i < forecastArray.size(); i++) { for (int i = 0; i < forecastArray.size(); i++) {
int cellIndex = 9 + firmArray.size() + i; int cellIndex = 9 + firmArray.size() + i;
//设置forecast标题 //设置forecast标题
Cell forecastCell = row14.getCell(cellIndex); Cell forecastCell = row14.getCell(cellIndex);
if (forecastCell == null) { if (forecastCell == null) {
forecastCell = row14.createCell(cellIndex); forecastCell = row14.createCell(cellIndex);
} }
if(i == 0) { if (i == 0) {
forecastCell.setCellValue("forecast 预测"); forecastCell.setCellValue("forecast 预测");
} else { } else {
forecastCell.setCellValue(""); forecastCell.setCellValue("");
@ -484,22 +489,22 @@ public class ExcelController {
forecastDateCell.setCellValue(forecast.getString("schd_line_date")); forecastDateCell.setCellValue(forecast.getString("schd_line_date"));
forecastDateCell.setCellStyle(cellStyle5); forecastDateCell.setCellStyle(cellStyle5);
//设置forecast每个订单数据 //设置forecast每个订单数据
for(int count = 0; count < orderArray.size(); count++) { for (int count = 0; count < orderArray.size(); count++) {
String cellValue = ""; String cellValue = "";
JSONObject object = orderArray.getJSONObject(count); JSONObject object = orderArray.getJSONObject(count);
JSONObject order = forecast.getJSONObject(object.getString("schd_line_line")); JSONObject order = forecast.getJSONObject(object.getString("schd_line_line"));
Row nextRow = sheet.getRow(16 + count); Row nextRow = sheet.getRow(16 + count);
if(order != null) { if (order != null) {
cellValue = order.getString("schd_line_qty"); cellValue = order.getString("schd_line_qty");
} }
if(cellValue.equals("0")) { if (cellValue.equals("0")) {
cellValue = ""; cellValue = "";
} }
Cell nextCell = nextRow.getCell(cellIndex); Cell nextCell = nextRow.getCell(cellIndex);
if (nextCell == null) { if (nextCell == null) {
nextCell = nextRow.createCell(cellIndex); nextCell = nextRow.createCell(cellIndex);
} }
if(!cellValue.isEmpty()) { if (!cellValue.isEmpty()) {
nextCell.setCellValue(new BigDecimal(cellValue).intValue()); nextCell.setCellValue(new BigDecimal(cellValue).intValue());
} else { } else {
nextCell.setCellValue(""); nextCell.setCellValue("");
@ -507,9 +512,11 @@ public class ExcelController {
nextCell.setCellStyle(cellStyle7); nextCell.setCellStyle(cellStyle7);
} }
} }
if (!forecastArray.isEmpty()) {
// 合并单元格 // 合并单元格
CellRangeAddress cellRangeAddress3 = new CellRangeAddress(14, 14, firmArray.size() + 9, firmArray.size() + forecastArray.size() + 8); CellRangeAddress cellRangeAddress3 = new CellRangeAddress(14, 14, firmArray.size() + 9, firmArray.size() + forecastArray.size() + 8);
sheet.addMergedRegion(cellRangeAddress3); sheet.addMergedRegion(cellRangeAddress3);
}
inputStream.close(); inputStream.close();
FileOutputStream outputStream = new FileOutputStream(filePath + "/" + fileName); FileOutputStream outputStream = new FileOutputStream(filePath + "/" + fileName);
workbook.write(outputStream); workbook.write(outputStream);
@ -696,6 +703,7 @@ public class ExcelController {
private String fillGuowai2(String orderNo, JSONObject jsonObjectHeader, JSONArray orderArray, JSONArray firmArray, JSONArray forecastArray) throws IOException { private String fillGuowai2(String orderNo, JSONObject jsonObjectHeader, JSONArray orderArray, JSONArray firmArray, JSONArray forecastArray) throws IOException {
ClassPathResource templateFile = new ClassPathResource("guowai2.xls"); ClassPathResource templateFile = new ClassPathResource("guowai2.xls");
String filePath = WinConfig.getUploadPath(); String filePath = WinConfig.getUploadPath();
orderNo = orderNo.toUpperCase();
String fileName = orderNo + ".xls"; String fileName = orderNo + ".xls";
File file = new File(filePath); File file = new File(filePath);
if (!file.exists()) { if (!file.exists()) {

3
win-admin/src/main/resources/logback-spring.xml

@ -130,7 +130,8 @@
</springProfile> </springProfile>
<!-- test环境 --> <!-- test环境 -->
<springProfile name="test"> <springProfile name="test">
<root level="ERROR"> <root level="INFO">
<appender-ref ref="console"/>
<appender-ref ref="file_warn"/> <appender-ref ref="file_warn"/>
<appender-ref ref="file_error"/> <appender-ref ref="file_error"/>
</root> </root>

2
win-common/src/main/java/com/win/common/constant/HttpStatus.java

@ -127,6 +127,8 @@ public class HttpStatus
*/ */
public static final int EXECUTE_FAIL = 502; public static final int EXECUTE_FAIL = 502;
public static final int TTSUPPLIERRSHEADER_FAIL = 503;
/** /**
* 系统警告消息 * 系统警告消息
*/ */

Loading…
Cancel
Save