|
@@ -1862,6 +1862,13 @@ public class CustomExcelImportUtil {
|
|
|
}
|
|
|
record.setUnit(getCellValue(row.getCell(7)));
|
|
|
record.setGgxh(getCellValue(row.getCell(4)));
|
|
|
+ record.setBrand(getCellValue(row.getCell(5)));
|
|
|
+ String stock = getCellValue(row.getCell(8));
|
|
|
+ if (StringUtils.isBlank(value)) {
|
|
|
+ record.setCurrentStock(new BigDecimal(0));
|
|
|
+ } else {
|
|
|
+ record.setCurrentStock(new BigDecimal(stock));
|
|
|
+ }
|
|
|
|
|
|
record.setLevel(getSpareLevel(getCellValue(row.getCell(11))));
|
|
|
// String usePeriod = getCellValue(row.getCell(9));
|