[fea]
[删除 清理 数据]
This commit is contained in:
yangyakun
2024-12-20 11:53:11 +08:00
parent c743e92884
commit f86f1b15d7
3 changed files with 2 additions and 4 deletions

View File

@@ -262,7 +262,7 @@ object LineManager : CallerBase<ILineCallback>() {
e(M_BUS + TAG, "AutopilotControlParameters is empty.")
return@getStationsWithLine
}
d(M_BUS + TAG, "AutopilotControlParameters is update.")
d(M_BUS + TAG, "AutopilotControlParameters is update. ${parameters}")
CallerAutoPilotStatusListenerManager.updateAutopilotControlParameters(parameters)
val startStationLocation = MogoLocation()
startStationLocation.latitude = start.gcjLat

View File

@@ -277,7 +277,7 @@ data class TrajectoryListRespBean(var data: MutableList<Result>?) : BaseData() {
}
val tempblackPoints = mutableListOf<BusStationBean>()
blackPoints?.forEach {
tempPassPoints.add(it.toBusStationBean())
tempblackPoints.add(it.toBusStationBean())
}
val result = ContraiInfo(lineId,csvFileUrl,csvFileMd5,txtFileUrl,txtFileMd5,contrailSaveTime,tempPassPoints,tempblackPoints,source)
return result

View File

@@ -1061,8 +1061,6 @@ object TaxiTaskModel {
mCurrentTaskTrajectory = it.first { currentTaskLineId == it.lineId }
mCurrentTaskTrajectory?.let {traj->
LineManager.setLineInfo(LineInfo(traj.lineId,traj.lineName, orderId = mCurrentTaskWithOrder?.order?.orderNo?:""))
traj.blackPoints?.clear()
traj.passPoints?.clear()
LineManager.setContraiInfo(traj.toCommonContraiInfo())
}
}