修改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("plannedBpLaunchBatchList", plannedBpLaunchBatchList);
|
||||||
result.put("carSet", carSet);
|
result.put("carSet", carList);
|
||||||
result.put("marketSet", marketSet);
|
result.put("marketSet", marketSet);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
@@ -1036,7 +1038,9 @@ public class OtaManageApplyEOServiceImpl extends ServiceImpl<OtaManageApplyEOMap
|
|||||||
} else {
|
} else {
|
||||||
resList.add("All");
|
resList.add("All");
|
||||||
}
|
}
|
||||||
resList.addAll(vehicleSet);
|
List<String> carList = new ArrayList<>(vehicleSet);
|
||||||
|
Collections.sort(carList);
|
||||||
|
resList.addAll(carList);
|
||||||
return resList;
|
return resList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user