[6.7.2]接管记录上报增加BagId字段

This commit is contained in:
xuxinchao
2024-10-30 20:53:14 +08:00
parent 94835eb31f
commit c3ed29f29e
14 changed files with 94 additions and 10 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", ""),0L
SharedPrefsMgr.getInstance().getString("och_account", "")
)
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",""),0L)
SharedPrefsMgr.getInstance().getString("och_account",""))
padProblemList.add(padProblemInfo)
val padAddProblemReq = PadAddProblemReq(padProblemList, AppConfigInfo.plateNumber)
CallerDevaToolsManager.problemPadAdd(padAddProblemReq)