(self, project)
| 153 | } |
| 154 | |
| 155 | def parse_wbs_xml(self, project): |
| 156 | for wbs in project.findall("pr:WBS", self.ns): |
| 157 | self.wbs[wbs.find("pr:ObjectId", self.ns).text] = { |
| 158 | "Name": wbs.find("pr:Name", self.ns).text, |
| 159 | "Code": wbs.find("pr:Code", self.ns).text, |
| 160 | "ParentObjectId": wbs.find("pr:ParentObjectId", self.ns).text, |
| 161 | "ifc": None, |
| 162 | "rel": None, |
| 163 | "activities": [], |
| 164 | } |
| 165 | |
| 166 | def parse_activity_xml(self, project): |
| 167 | for activity in project.findall("pr:Activity", self.ns): |