[fea]
[自驾添加 routeInfo 和 orderId]
This commit is contained in:
yangyakun
2024-12-18 11:39:57 +08:00
parent b59997f2bc
commit e8608da149
3 changed files with 4 additions and 7 deletions

View File

@@ -132,7 +132,7 @@ object OffLineTrajectoryManager : com.mogo.och.bridge.autopilot.trajectory.ITraj
true,
OchChainLogManager.EVENT_KEY_INFE_WITH_TRAJECTORY
)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(mAutopilotControlParameters!!.autoPilotLine!!,0,mAutopilotControlParameters!!.orderId)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(mAutopilotControlParameters!!,0)
d(
SceneConstant.M_BUS + TAG, "sendTrajectoryReq(): "
+ GsonUtils.toJson(mAutopilotControlParameters)

View File

@@ -157,8 +157,7 @@ object BusTrajectoryManager : ITrajectoryListListener {
"轨迹监控",
"sendTrajectoryReq() 下发轨迹 轨迹id:${it.autoPilotLine!!.lineId}"
)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(it.autoPilotLine!!, 0,
it.orderId)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(it, 0)
}
d(TAG, "sendTrajectoryReq(): " + GsonUtils.toJson(mAutopilotControlParameters))

View File

@@ -241,9 +241,8 @@ object TaxiTrajectoryManager : ITrajectoryListListener {
"sendTrajectoryReq() 下发轨迹 轨迹id${mAutopilotControlParameters?.autoPilotLine?.lineId}"
)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(
mAutopilotControlParameters!!.autoPilotLine!!,
mAutopilotControlParameters!!,
COMMON_LOADING,
mAutopilotControlParameters!!.orderId
)
} else {
e(TAG, "sendTrajectoryReq(): mAutoPilotLine is null!!!")
@@ -252,9 +251,8 @@ object TaxiTrajectoryManager : ITrajectoryListListener {
if (mPreAutopilotControlParameters != null && mPreAutopilotControlParameters?.autoPilotLine != null) {
printInfoMsg("[下发预加载轨迹] sendTrajectoryDownloadReq, lindId=" + mPreAutopilotControlParameters?.autoPilotLine?.lineId + ", lineName=" + mPreAutopilotControlParameters?.autoPilotLine?.lineName)
CallerAutoPilotControlManager.sendTrajectoryDownloadReq(
mPreAutopilotControlParameters!!.autoPilotLine!!,
mPreAutopilotControlParameters!!,
PRE_LOADING,
mPreAutopilotControlParameters!!.orderId
)
} else {
e(TAG, "sendTrajectoryReq(): mPreAutoPilotLine is null!!!")