[6.7.2]接管记录增加bag Id上报

This commit is contained in:
xuxinchao
2024-10-28 15:09:13 +08:00
parent b7d91c92a6
commit 89a0b5caae
11 changed files with 22 additions and 16 deletions

View File

@@ -337,7 +337,7 @@ class FaultReasonView @JvmOverloads constructor(
val padProblemInfo = PadProblemInfo(
address, faultCodeList, millis2String(workOrderOccurrenceTime), level1Id,
level2Id, level3Id, BadCaseConfig.lineName, note, reportType,
SharedPrefsMgr.getInstance().getString("och_account", "")
SharedPrefsMgr.getInstance().getString("och_account", ""),0L
)
padProblemList.add(padProblemInfo)
val padAddProblemReq =

View File

@@ -102,7 +102,7 @@ class ReportTypeView @JvmOverloads constructor(
val padProblemList= ArrayList<PadProblemInfo>()
val padProblemInfo = PadProblemInfo(address,faultCodeList,millis2String(System.currentTimeMillis()),level1Id,
level2Id,level3Id,BadCaseConfig.lineName,"${level1Name}-${level2Name}-${level3Name}",reportType,
SharedPrefsMgr.getInstance().getString("och_account",""))
SharedPrefsMgr.getInstance().getString("och_account",""),0L)
padProblemList.add(padProblemInfo)
val padAddProblemReq = PadAddProblemReq(padProblemList, AppConfigInfo.plateNumber)
CallerDevaToolsManager.problemPadAdd(padAddProblemReq)