fix: Un problème d'import des contacts

This commit is contained in:
Simon 2023-01-11 11:22:05 +01:00
parent 60c6676755
commit 8abc53adbe
1 changed files with 15 additions and 11 deletions

View File

@ -41,6 +41,7 @@ const config = {
const bureau = [] const bureau = []
for (const contact of association.bureau) { for (const contact of association.bureau) {
const detail = contact.Contact_id const detail = contact.Contact_id
if (detail) {
let c = { let c = {
denomination: detail.denomination, denomination: detail.denomination,
prenom: detail.prenom, prenom: detail.prenom,
@ -53,6 +54,9 @@ const config = {
c.telephone = detail.telephone c.telephone = detail.telephone
} }
bureau.push(c) bureau.push(c)
} else {
console.log("problème sur un contact")
}
} }
association.bureau = bureau association.bureau = bureau
} else { } else {