Source code for xerparser.model.classes.p6codes

# 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 ActivityStatus:
[docs] Complete = "TK_Complete"
[docs] InProgress = "TK_Active"
[docs] NotStarted = "TK_NotStart"
[docs] class ActivityType:
[docs] Task = "TT_Task"
[docs] StartMilestone = "TT_Mile"
[docs] FinishMilestone = "TT_FinMile"
[docs] LevelOfEffort = "TT_LOE"
[docs] WBSSummary = "TT_WBS"
[docs] class RelationshipType:
[docs] FF = "PR_FF"
[docs] FS = "PR_FS"
[docs] SS = "PR_SS"
[docs] SF = "PR_SF"
[docs] class DurationTypes:
[docs] FixedQuantity = "DT_FixedQty"
[docs] FixedDurationAndUnits = "DT_FixedDrtn"
[docs] FixedRate = "DT_FixedRate"
[docs] FixedDuration = "DT_FixedDUR2"