维修审核模块优化

This commit is contained in:
sxu 2024-11-19 16:11:41 +08:00
parent ff162d0cd5
commit 1658a72fd0
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ public class RepairAuditDetailsServiceImpl implements IRepairAuditDetailsService
for (ScrapApplyDetailsVO scrapApplyDetailsVO : repairQuestList) {
Long taskId = scrapApplyDetailsVO.getTaskId();
if (taskId != null) {
String typeName = keyValueMap.get(taskId);
String typeName = keyValueMap.get(String.valueOf(taskId));
if (typeName != null) {
scrapApplyDetailsVO.setItemType(typeName);
}