# 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 SchedOption:
def __init__(self, params):
[docs]
self.schedoptions_id = params.get('schedoptions_id').strip() if params.get('schedoptions_id') else None
[docs]
self.proj_id = params.get('proj_id').strip() if params.get('proj_id') else None
[docs]
self.sched_outer_depend_type = params.get('sched_outer_depend_type').strip() if params.get('sched_outer_depend_type') else None
[docs]
self.sched_open_critical_flag = params.get('sched_open_critical_flag').strip() if params.get('sched_open_critical_flag') else None
[docs]
self.sched_lag_early_start_flag = params.get('sched_lag_early_start_flag').strip() if params.get('sched_lag_early_start_flag') else None
[docs]
self.sched_retained_logic = params.get('sched_retained_logic').strip() if params.get('sched_retained_logic') else None
[docs]
self.sched_setplantoforecast = params.get('sched_setplantoforecast').strip() if params.get('sched_setplantoforecast') else None
[docs]
self.sched_float_type = params.get('sched_float_type').strip() if params.get('sched_float_type') else None
[docs]
self.sched_calendar_on_relationship_lag = params.get('sched_calendar_on_relationship_lag').strip() if params.get('sched_calendar_on_relationship_lag') else None
[docs]
self.sched_use_expect_end_flag = params.get('sched_use_expect_end_flag').strip() if params.get('sched_use_expect_end_flag') else None
[docs]
self.sched_progress_override = params.get('sched_progress_override').strip() if params.get('sched_progress_override') else None
[docs]
self.level_float_thrs_cnt = params.get('level_float_thrs_cnt').strip() if params.get('level_float_thrs_cnt') else None
[docs]
self.level_outer_assign_flag = params.get('level_outer_assign_flag').strip() if params.get('level_outer_assign_flag') else None
[docs]
self.level_outer_assign_priority = params.get('level_outer_assign_priority').strip() if params.get('level_outer_assign_priority') else None
[docs]
self.level_over_alloc_pct = params.get('level_over_alloc_pct').strip() if params.get('level_over_alloc_pct') else None
[docs]
self.level_within_float_flag = params.get('level_within_float_flag').strip() if params.get('level_within_float_flag') else None
[docs]
self.level_keep_sched_date_flag = params.get('level_keep_sched_date_flag').strip() if params.get('level_keep_sched_date_flag') else None
[docs]
self.level_all_rsrc_flag = params.get('level_all_rsrc_flag').strip() if params.get('level_all_rsrc_flag') else None
[docs]
self.sched_use_project_end_date_for_float = params.get('sched_use_project_end_date_for_float').strip() if params.get('sched_use_project_end_date_for_float') else None
[docs]
self.enable_multiple_longest_path_calc = params.get('enable_multiple_longest_path_calc').strip() if params.get('enable_multiple_longest_path_calc') else None
[docs]
self.limit_multiple_longest_path_calc = params.get('limit_multiple_longest_path_calc').strip() if params.get('limit_multiple_longest_path_calc') else None
[docs]
self.max_multiple_longest_path = params.get('max_multiple_longest_path').strip() if params.get('max_multiple_longest_path') else None
[docs]
self.use_total_float_multiple_longest_paths = params.get('use_total_float_multiple_longest_paths').strip() if params.get('use_total_float_multiple_longest_paths') else None
[docs]
self.key_activity_for_multiple_longest_paths = params.get('key_activity_for_multiple_longest_paths').strip() if params.get('use_total_float_multiple_longest_paths') else None
[docs]
self.LevelPriorityList = params.get('LevelPriorityList').strip() if params.get('LevelPriorityList') else None
SchedOption.obj_list.append(self)
[docs]
def get_id(self):
return self.schedoptions_id
[docs]
def get_tsv(self):
tsv = ['%R', self.schedoptions_id, self.proj_id, self.sched_outer_depend_type, self.sched_open_critical_flag,
self.sched_lag_early_start_flag, self.sched_retained_logic, self.sched_setplantoforecast,
self.sched_float_type, self.sched_calendar_on_relationship_lag, self.sched_use_expect_end_flag,
self.sched_progress_override, self.level_float_thrs_cnt, self.level_outer_assign_flag,
self.level_outer_assign_priority, self.level_over_alloc_pct, self.level_within_float_flag,
self.level_keep_sched_date_flag, self.level_all_rsrc_flag, self.sched_use_project_end_date_for_float,
self.enable_multiple_longest_path_calc, self.limit_multiple_longest_path_calc,
self.max_multiple_longest_path, self.use_total_float_multiple_longest_paths,
self.key_activity_for_multiple_longest_paths, self.LevelPriorityList
]
return tsv
[docs]
def __repr__(self):
return self.proj_id