|
@@ -499,17 +499,18 @@ public class OrderBaseExcelLogic {
|
|
|
String userName = row.get(3);
|
|
|
String userMobile = row.get(4);
|
|
|
String userMobile2 = row.get(5);
|
|
|
- String address = row.get(6);
|
|
|
- String mainName = row.get(7);
|
|
|
- String smallName = row.get(8);
|
|
|
- String productName = row.get(9);
|
|
|
- String workerName = row.get(10);
|
|
|
- String workerMobile = row.get(11);
|
|
|
- String orderStatus = row.get(12);
|
|
|
- String orderSmallType = row.get(13);
|
|
|
- String brandName = row.get(14);
|
|
|
- Integer num = StringUtils.isBlank(row.get(15)) ? 1 : Integer.parseInt(row.get(15));
|
|
|
- BigDecimal amount = StringUtils.isBlank(row.get(16)) ? BigDecimal.ZERO : new BigDecimal(row.get(16));
|
|
|
+
|
|
|
+ String address = row.get(9);
|
|
|
+ String mainName = row.get(10);
|
|
|
+ String smallName = row.get(11);
|
|
|
+ String productName = row.get(12);
|
|
|
+ String workerName = row.get(13);
|
|
|
+ String workerMobile = row.get(14);
|
|
|
+ String orderStatus = row.get(15);
|
|
|
+ String orderSmallType = row.get(16);
|
|
|
+ String brandName = row.get(17);
|
|
|
+ Integer num = StringUtils.isBlank(row.get(18)) ? 1 : Integer.parseInt(row.get(18));
|
|
|
+ BigDecimal amount = StringUtils.isBlank(row.get(19)) ? BigDecimal.ZERO : new BigDecimal(row.get(19));
|
|
|
|
|
|
if (StringUtils.isAnyBlank(orderBaseId, orderChannel, userName, userMobile, address, mainName, smallName, productName, orderSmallType, brandName)) {
|
|
|
throw new RemoteServiceException(errPrefix + "黄色区域为必填项");
|