#2359: Phone and ZIP/Postal code are not added on alternate Address after merging two persons

svn: r11048
This commit is contained in:
Jérôme Rapinat 2008-09-09 07:59:04 +00:00
parent 51b0faa473
commit 6e89f69278

View File

@ -195,7 +195,8 @@ class PersonCompare(ManagedWindow.ManagedWindow):
self.add(tobj, title, _("Addresses"))
for addr in alist:
location = ", ".join([addr.get_street(), addr.get_city(),
addr.get_state(), addr.get_country()])
addr.get_state(), addr.get_country(),
addr.get_postal_code(), addr.get_phone()])
self.add(tobj, normal, location.strip())
def get_parent_info(self, fid):