修改ota车型排序
This commit is contained in:
+6
-2
@@ -999,8 +999,10 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
|
||||
}
|
||||
}
|
||||
}
|
||||
List<String> carList = new ArrayList<>(carSet);
|
||||
Collections.sort(carList);
|
||||
result.put("plannedBpLaunchBatchList", plannedBpLaunchBatchList);
|
||||
result.put("carSet", carSet);
|
||||
result.put("carSet", carList);
|
||||
result.put("marketSet", marketSet);
|
||||
}
|
||||
return result;
|
||||
@@ -1036,7 +1038,9 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
|
||||
} else {
|
||||
resList.add("All");
|
||||
}
|
||||
resList.addAll(vehicleSet);
|
||||
List<String> carList = new ArrayList<>(vehicleSet);
|
||||
Collections.sort(carList);
|
||||
resList.addAll(carList);
|
||||
return resList;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user