# PyP6XER
# Copyright (C) 2020, 2021 Hassan Emam <hassan@constology.com>
#
# This file is part of PyP6XER.
#
# PyP6XER library is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License v2.1 as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# PyP6XER is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PyP6XER. If not, see <https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html>.
from xerparser.model.classes.taskrsrc import TaskRsrc
from xerparser.model.classes.rsrc import Resource
[docs]
class ActivityResources:
def __init__(self):
self._taskrsrc = []
[docs]
def add(self, params, data):
self._taskrsrc.append(TaskRsrc(params, data))
[docs]
def find_by_id(self, id) -> TaskRsrc:
obj = list(filter(lambda x: x.taskrsrc_id == id, self._taskrsrc))
if len(obj) > 0:
return obj[0]
return None
[docs]
def get_tsv(self):
if len(self._taskrsrc) > 0:
tsv = []
tsv.append(['%T', 'TASKRSRC'])
tsv.append(['%F', 'taskrsrc_id', 'task_id', 'proj_id', 'cost_qty_link_flag', 'role_id', 'acct_id',
'rsrc_id', 'pobs_id', 'skill_level', 'remain_qty', 'target_qty', 'remain_qty_per_hr',
'target_lag_drtn_hr_cnt', 'target_qty_per_hr', 'act_ot_qty', 'act_reg_qty',
'relag_drtn_hr_cnt', 'ot_factor', 'cost_per_qty', 'target_cost', 'act_reg_cost',
'act_ot_cost', 'remain_cost', 'act_start_date', 'act_end_date', 'restart_date',
'reend_date', 'target_start_date', 'target_end_date', 'rem_late_start_date',
'rem_late_end_date', 'rollup_dates_flag', 'target_crv', 'remain_crv', 'actual_crv',
'ts_pend_act_end_flag', 'guid', 'rate_type', 'act_this_per_cost', 'act_this_per_qty',
'curv_id', 'rsrc_type', 'cost_per_qty_source_type', 'create_user', 'create_date', 'cbs_id',
'has_rsrchours', 'taskrsrc_sum_id'])
for taskrsrc in self._taskrsrc:
tsv.append(taskrsrc.get_tsv())
return tsv
return []
[docs]
def find_by_rsrc_id(self, id) -> TaskRsrc:
obj = list(filter(lambda x: x.rsrc_id == id, self._taskrsrc))
return obj
[docs]
def find_by_activity_id(self, id):
obj = list(filter(lambda x: x.task_id == id and x.rsrc_id, self._taskrsrc))
return obj
@property
[docs]
def count(self):
return len(self._taskrsrc)
[docs]
def __len__(self):
return len(ActivityResources._taskrsrc)
[docs]
def __iter__(self):
return self
[docs]
def __next__(self) -> TaskRsrc:
if self.index >= len(self._taskrsrc):
raise StopIteration
idx = self.index
self.index += 1
return self._taskrsrc[idx]