| | |
| | | Integer proSts = 0; |
| | | Row row = sheet.getRow(i); |
| | | //单据类型 |
| | | String docName = dataFormatter.formatCellValue(row.getCell(0)); |
| | | String docName = dataFormatter.formatCellValue(row.getCell(0)).trim(); |
| | | //单据编号 |
| | | String uuid = dataFormatter.formatCellValue(row.getCell(1)); |
| | | String uuid = dataFormatter.formatCellValue(row.getCell(1)).trim(); |
| | | //物料号 |
| | | String matnr = dataFormatter.formatCellValue(row.getCell(2)); |
| | | String matnr = dataFormatter.formatCellValue(row.getCell(2)).trim(); |
| | | //销售单号 |
| | | String csocode = dataFormatter.formatCellValue(row.getCell(3)); |
| | | String csocode = dataFormatter.formatCellValue(row.getCell(3)).trim(); |
| | | //自由项 |
| | | String isocode = dataFormatter.formatCellValue(row.getCell(4)); |
| | | String isocode = dataFormatter.formatCellValue(row.getCell(4)).trim(); |
| | | // 数量 |
| | | if(Cools.isEmpty(dataFormatter.formatCellValue(row.getCell(5)))){ |
| | | continue; |