# 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>.
[docs]
class TaskPred:
def __init__(self, params):
[docs]
self.task_pred_id = params.get('task_pred_id').strip() if params.get('task_pred_id') else None
[docs]
self.task_id = int(params.get('task_id')) if params.get('task_id') else None
[docs]
self.pred_task_id = int(params.get('pred_task_id')) if params.get('pred_task_id') else None
[docs]
self.proj_id = int(params.get('proj_id').strip()) if params.get('proj_id') else None
[docs]
self.pred_proj_id = int(params.get('proj_id').strip()) if params.get('pred_proj_id') else None
[docs]
self.pred_type = params.get('pred_type').strip() if params.get('pred_type') else None
[docs]
self.lag_hr_cnt = float(params.get('lag_hr_cnt').strip()) if params.get('lag_hr_cnt') else None
[docs]
self.float_path = params.get('float_path').strip() if params.get('float_path') else None
[docs]
self.aref = params.get('aref').strip() if params.get('aref') else None
[docs]
self.arls = params.get('arls').strip() if params.get('arls') else None
TaskPred.obj_list.append(self)
[docs]
def get_id(self):
return self.task_pred_id
[docs]
def get_tsv(self):
tsv = ['%R', self.task_pred_id, self.task_id, self.pred_task_id, self.proj_id, self.pred_proj_id,
self.pred_type, self.lag_hr_cnt, self.comments, self.float_path, self.aref, self.arls]
return tsv
[docs]
def __repr__(self):
return str(self.pred_task_id) + '- ' + self.pred_type + ' ->' + str(self.task_id) + ' lag: ' + str(self.lag_hr_cnt)