[TMP]Add test on zip and city

This commit is contained in:
michel 2018-01-23 11:36:54 +01:00
parent 1a57c993e1
commit 5714cab5ad
1 changed files with 3 additions and 2 deletions

View File

@ -101,8 +101,9 @@ class GolemFamily(models.Model):
@api.onchange('member_ids')
def onchange_member(self):
""" Sets as member address if there was no precedence """
for family in self:
if family.member_ids and not any((family.street, family.street2)):
for family in self:
if family.member_ids and not any((family.street, family.street2,\
family.zip, family.city)):
family.update({'street': family.member_ids[0].street,
'street2': family.member_ids[0].street2,
'zip': family.member_ids[0].zip,