|
|
|
@ -259,9 +259,12 @@ public class YbsjHandsetServiceImpl implements YbsjHandsetService { |
|
|
|
|
} |
|
|
|
|
List<Map<String, Object>> getVisitorList = ybsjHandsetMapper.getVisitorList(getHaveTicketsDetails.get("id").toString()); |
|
|
|
|
for (Map<String, Object> map : getVisitorList) { |
|
|
|
|
map.put("documents_number", Encryption.decrypt(map.get("documents_number").toString(), rule)); |
|
|
|
|
if (Integer.parseInt(getHaveTicketsDetails.get("documentsType").toString()) == 5501) { |
|
|
|
|
map.put("documents_number", Encryption.decrypt(map.get("documents_number").toString(), rule)); |
|
|
|
|
} |
|
|
|
|
map.put("phone", Encryption.decrypt(map.get("phone").toString(), rule)); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
param.put("essentialInformation", getHaveTicketsDetails); |
|
|
|
|
param.put("visitorList", getVisitorList); |
|
|
|
|
param.put("visitorListCount", 1); |
|
|
|
@ -278,7 +281,9 @@ public class YbsjHandsetServiceImpl implements YbsjHandsetService { |
|
|
|
|
} |
|
|
|
|
List<Map<String, Object>> getVisitorList = ybsjHandsetMapper.getVisitorList(getAppointmentRecordDetails.get("id").toString()); |
|
|
|
|
for (Map<String, Object> map : getVisitorList) { |
|
|
|
|
map.put("documents_number", Encryption.decrypt(map.get("documents_number").toString(), rule)); |
|
|
|
|
if (Integer.parseInt(getAppointmentRecordDetails.get("documentsType").toString()) == 5501) { |
|
|
|
|
map.put("documents_number", Encryption.decrypt(map.get("documents_number").toString(), rule)); |
|
|
|
|
} |
|
|
|
|
map.put("phone", Encryption.decrypt(map.get("phone").toString(), rule)); |
|
|
|
|
} |
|
|
|
|
param.put("essentialInformation", getAppointmentRecordDetails); |
|
|
|
|