Working on membership, person, user, and order

This commit is contained in:
Scott Idem
2021-06-28 14:23:06 -04:00
parent f55d9c2c62
commit a0514b5179
8 changed files with 225 additions and 49 deletions

View File

@@ -233,7 +233,7 @@ def create_update_contact_obj(
contact_obj.id = contact_id
else:
# Insert record now and update later
contact_dict_in = contact_obj.dict(by_alias=False, exclude_unset=True, exclude={'contact', 'organization', 'user'})
contact_dict_in = contact_obj.dict(by_alias=False, exclude_unset=True, exclude={'address', 'contact', 'organization', 'user'})
log.debug(contact_dict_in)
contact_in_result = sql_insert(
data = contact_dict_in,