Add a short-name to organizations

This commit is contained in:
Eike Kettner
2021-02-17 22:47:49 +01:00
parent 20ccdda609
commit 5181283b1b
8 changed files with 78 additions and 28 deletions

View File

@ -386,7 +386,8 @@ trait Conversions {
Address(ro.street, ro.zip, ro.city, ro.country),
v.contacts.map(mkContact).toList,
ro.notes,
ro.created
ro.created,
ro.shortName
)
}
@ -407,7 +408,8 @@ trait Conversions {
v.address.country,
v.notes,
now,
now
now,
v.shortName
)
} yield OOrganization.OrgAndContacts(org, cont)
}
@ -431,7 +433,8 @@ trait Conversions {
v.address.country,
v.notes,
v.created,
now
now,
v.shortName
)
} yield OOrganization.OrgAndContacts(org, cont)
}