| | |
| | | Row row = sheet.getRow(i); |
| | | // 订单编号 |
| | | String uuid = dataFormatter.formatCellValue(row.getCell(0)); |
| | | // 商品名称 |
| | | String maktx = dataFormatter.formatCellValue(row.getCell(1)); |
| | | // 商品编码 |
| | | String matnr = dataFormatter.formatCellValue(row.getCell(2)); |
| | | // 数量 |
| | | Double anfme = Double.parseDouble(dataFormatter.formatCellValue(row.getCell(3))); |
| | | // 下单时间 |
| | | Date time = DateUtils.convert(dataFormatter.formatCellValue(row.getCell(4)), DateUtils.yyyyMMddHHmmsssss_F); |
| | | // 商品系列 |
| | | String tagName = dataFormatter.formatCellValue(row.getCell(5)); |
| | | // 规格 |
| | | String specs = dataFormatter.formatCellValue(row.getCell(6)); |
| | | |
| | | |
| | | } |
| | | return R.ok(); |