retreive contact list

This commit is contained in:
2024-04-10 23:47:47 +02:00
parent 9d72a10df5
commit a19f37858f
@@ -18,6 +18,15 @@ def generate_list_to_register():
break
if _to_add:
_contact_list_to_register.append(_contact)
_all_contacts = MONGO_STORE_MANAGER.get_all_contacts_to_book()
for _contact in _contact_list_to_register:
if _contact.last_name is None or len(_contact.last_name) == 0:
for _true_contact in _all_contacts:
if _true_contact.mail == _contact.mail:
_contact.last_name = _true_contact.last_name
_contact.phone = _true_contact.phone
_contact.passport = _true_contact.passport
_contact.first_name = _true_contact.first_name
return _contact_list_to_register