bug 9842; fix lineage quickreport when started from person with no parent

This commit is contained in:
prculley 2016-12-18 14:47:32 -06:00 committed by Nick Hall
parent ce884b6578
commit 55edefd4b8

View File

@ -138,13 +138,15 @@ def make_details(gender, person, sa, sd, database, stab) :
family.get_child_ref_list()
if ref.ref == person_handle]
if gender == Person.MALE:
person = database.get_person_from_handle(
family.get_father_handle())
parent_handle = family.get_father_handle()
refnr = 1
else:
person = database.get_person_from_handle(
family.get_mother_handle())
parent_handle = family.get_mother_handle()
refnr = 0
if parent_handle:
person = database.get_person_from_handle(parent_handle)
else:
person = None
#We do not allow for same sex marriages when going up
# that would complicate the code