|
@@ -1398,6 +1398,9 @@ public class SyPreAssembledPackingListController extends JeecgController<SyPreAs
|
|
|
list.add("净净重");
|
|
|
for (int x=0;x<=sheet.getLastRowNum();x++){
|
|
|
Row row=sheet.getRow(x);//列
|
|
|
+ if(row==null){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Cell cell2=row.getCell(0);
|
|
|
if(cell2==null){//如果这一列为空就退出
|
|
|
continue;
|
|
@@ -1514,6 +1517,9 @@ public class SyPreAssembledPackingListController extends JeecgController<SyPreAs
|
|
|
for (int x=0;x<=sheet.getLastRowNum();x++){
|
|
|
//System.out.println("sheet.getLastRowNum()\t"+sheet.getLastRowNum());
|
|
|
Row row=sheet.getRow(x);//列
|
|
|
+ if(row==null){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
Cell cell2=row.getCell(0);
|
|
|
if(cell2==null){//如果这一列为空就退出
|
|
|
continue;
|