Fix Name formats to show all parts (#608)

Fixes #10420

Allows reports to use the name format specified by the user.
This commit is contained in:
Sam Manzi 2018-06-02 10:26:23 +10:00 committed by GitHub
parent 8735f8a014
commit 9c21b98601
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -306,6 +306,9 @@ class LivingProxyDb(ProxyDbBase):
new_name.set_first_name(old_name.get_first_name()) new_name.set_first_name(old_name.get_first_name())
new_name.set_suffix(old_name.get_suffix()) new_name.set_suffix(old_name.get_suffix())
new_name.set_title(old_name.get_title()) new_name.set_title(old_name.get_title())
new_name.set_call_name(old_name.get_call_name())
new_name.set_nick_name(old_name.get_nick_name())
new_name.set_family_nick_name(old_name.get_family_nick_name())
surnlst = [] surnlst = []
if self.mode == self.MODE_REPLACE_COMPLETE_NAME: if self.mode == self.MODE_REPLACE_COMPLETE_NAME: