src/plugins/DetAncestralReport.py: print children when no mother exists

svn: r7143
This commit is contained in:
Brian Matherly 2006-08-07 02:53:28 +00:00
parent 7c742ec66a
commit 693a413471
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2006-08-06 Brian Matherly <brian@gramps-project.org>
* src/plugins/DetAncestralReport.py: print children when no mother exists
2006-08-06 Alex Roitman <shura@gramps-project.org>
* src/DataViews/_PlaceView.py: Add sidebar filter.
* src/FilterEditor/_EditRule.py: Support place filters.

View File

@ -177,11 +177,13 @@ class DetAncestorReport(Report):
self.gen_handles[person_handle] = key
dupPerson = self.write_person(key)
if dupPerson == 0: # Is this a duplicate ind record
if person.get_gender() == RelLib.Person.FEMALE and \
self.listChildren:
if self.listChildren:
for family_handle in person.get_family_handle_list():
family = self.database.get_family_from_handle(family_handle)
self.write_children(family)
mother_handle = family.get_mother_handle()
if mother_handle == None or \
person.get_gender() == RelLib.Person.FEMALE:
self.write_children(family)
if self.includeSources:
self.write_endnotes()