sgj
2026-02-26 1fdfbf546f16ed346ebde4d3a25619f089f217da
fzzy-igdss-core/src/main/java/com/fzzy/igds/service/ExportService.java
@@ -214,6 +214,18 @@
            }
        }
        //通知单编码
        cell = row.getCell(cellNum++);
        if(cell == null || cell.getCellType() == CellType.BLANK){
            resultData.setNoticeId("");
        }else {
            cell.setCellType(CellType.STRING);
            String noticeId = cell.getStringCellValue().trim();
            if(StringUtils.isNotEmpty(noticeId)){
                resultData.setNoticeId(noticeId);
            }
        }
        //装卸仓库
        cell = row.getCell(cellNum++);
        if(cell == null || cell.getCellType() == CellType.BLANK){
@@ -348,6 +360,9 @@
            }
        }
        if(null != resultData.getFullWeight() && null != resultData.getEmptyWeight()){
            resultData.setNetWeight(resultData.getFullWeight() - resultData.getEmptyWeight());
        }
        return resultData;
    }