完成挂账管理相关需求

This commit is contained in:
谭凯凯
2024-11-25 17:12:43 +08:00
committed by Tankaikai
parent 1be72037da
commit 83242a5398

View File

@@ -273,7 +273,7 @@ public class TbShopTableBookingServiceImpl extends ServiceImpl<TbShopTableBookin
for (String phoneNo : phoneNos) {
fillData.put("phoneNumber", phoneNo);
Map<String, Object> data = list.stream().filter(item -> phoneNo.equals(item.get("phoneNumber"))).findFirst().orElse(fillData);
result.put("Tel_"+phoneNo, data);
result.put(phoneNo, data);
}
return result;
}