|
@@ -1261,7 +1261,10 @@ public class InOutWarehouseTaskServiceImpl extends ServiceImpl<InOutWarehouseTas
|
|
sheet.setColumnWidth(5, 12 * 256 + 184);
|
|
sheet.setColumnWidth(5, 12 * 256 + 184);
|
|
sheet.setColumnWidth(6, 12 * 256 + 184);
|
|
sheet.setColumnWidth(6, 12 * 256 + 184);
|
|
sheet.setColumnWidth(7, 12 * 256 + 184);
|
|
sheet.setColumnWidth(7, 12 * 256 + 184);
|
|
- sheet.setColumnWidth(8, 1 * 256 + 184);
|
|
|
|
|
|
+ sheet.setColumnWidth(8, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(9, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(10, 12 * 256 + 184);
|
|
|
|
+ sheet.setColumnWidth(11, 1 * 256 + 184);
|
|
|
|
|
|
// 创建单元格对象
|
|
// 创建单元格对象
|
|
HSSFCell cell = null;
|
|
HSSFCell cell = null;
|
|
@@ -1297,6 +1300,12 @@ public class InOutWarehouseTaskServiceImpl extends ServiceImpl<InOutWarehouseTas
|
|
cell.setCellStyle(styleTitle);
|
|
cell.setCellStyle(styleTitle);
|
|
cell = row0.createCell(7);
|
|
cell = row0.createCell(7);
|
|
cell.setCellStyle(styleTitle);
|
|
cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(8);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(9);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
|
|
+ cell = row0.createCell(10);
|
|
|
|
+ cell.setCellStyle(styleTitle);
|
|
rownum++;
|
|
rownum++;
|
|
|
|
|
|
Map<String, Object> pageView = new HashMap<>();
|
|
Map<String, Object> pageView = new HashMap<>();
|
|
@@ -1318,15 +1327,24 @@ public class InOutWarehouseTaskServiceImpl extends ServiceImpl<InOutWarehouseTas
|
|
cell.setCellValue(" 未回款(元)");
|
|
cell.setCellValue(" 未回款(元)");
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = row1.createCell(4);
|
|
cell = row1.createCell(4);
|
|
- cell.setCellValue(" 保证金(元)");
|
|
|
|
|
|
+ cell.setCellValue("保证金(元)");
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = row1.createCell(5);
|
|
cell = row1.createCell(5);
|
|
- cell.setCellValue("销售任务编号");
|
|
|
|
|
|
+ cell.setCellValue("非粮款收款(元)");
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = row1.createCell(6);
|
|
cell = row1.createCell(6);
|
|
- cell.setCellValue("任务已完成量(吨)");
|
|
|
|
|
|
+ cell.setCellValue("合同重量(吨)");
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
cell = row1.createCell(7);
|
|
cell = row1.createCell(7);
|
|
|
|
+ cell.setCellValue("合同单价(元/吨)");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(8);
|
|
|
|
+ cell.setCellValue("销售任务编号");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(9);
|
|
|
|
+ cell.setCellValue("任务已完成量(吨)");
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = row1.createCell(10);
|
|
cell.setCellValue("出货库点");
|
|
cell.setCellValue("出货库点");
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
rownum++;
|
|
rownum++;
|
|
@@ -1352,12 +1370,21 @@ public class InOutWarehouseTaskServiceImpl extends ServiceImpl<InOutWarehouseTas
|
|
cell.setCellValue(editDouble(inOutWarehouseTask1.getBond()));
|
|
cell.setCellValue(editDouble(inOutWarehouseTask1.getBond()));
|
|
cell.setCellStyle(contextstyle);
|
|
cell.setCellStyle(contextstyle);
|
|
cell = rowx.createCell(5);
|
|
cell = rowx.createCell(5);
|
|
|
|
+ cell.setCellValue(editDouble(inOutWarehouseTask1.getNonGrainCollection()));
|
|
|
|
+ cell.setCellStyle(contextstyle);
|
|
|
|
+ cell = rowx.createCell(6);
|
|
|
|
+ cell.setCellValue(editDouble(inOutWarehouseTask1.getContractWeight()));
|
|
|
|
+ cell.setCellStyle(contextstyle);
|
|
|
|
+ cell = rowx.createCell(7);
|
|
|
|
+ cell.setCellValue(editString(inOutWarehouseTask1.getContractPrice()));
|
|
|
|
+ cell.setCellStyle(styleDetail);
|
|
|
|
+ cell = rowx.createCell(8);
|
|
cell.setCellValue(editString(inOutWarehouseTask1.getInOutTaskNo()));
|
|
cell.setCellValue(editString(inOutWarehouseTask1.getInOutTaskNo()));
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
- cell = rowx.createCell(6);
|
|
|
|
|
|
+ cell = rowx.createCell(9);
|
|
cell.setCellValue(editDouble(inOutWarehouseTask1.getCompletedQuantity()));
|
|
cell.setCellValue(editDouble(inOutWarehouseTask1.getCompletedQuantity()));
|
|
cell.setCellStyle(contextstyle);
|
|
cell.setCellStyle(contextstyle);
|
|
- cell = rowx.createCell(7);
|
|
|
|
|
|
+ cell = rowx.createCell(10);
|
|
cell.setCellValue(editString(inOutWarehouseTask1.getWarehouseName()));
|
|
cell.setCellValue(editString(inOutWarehouseTask1.getWarehouseName()));
|
|
cell.setCellStyle(styleDetail);
|
|
cell.setCellStyle(styleDetail);
|
|
rownum++;
|
|
rownum++;
|