Source code for xerparser.model.classes.pcatval

# 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 PCatVal: def __init__(self, params): # %F proj_catg_id proj_catg_type_id seq_num proj_catg_short_name parent_proj_catg_id proj_catg_name
[docs] self.proj_catg_id = params.get('proj_catg_id').strip() if params.get('proj_catg_id') else None
[docs] self.proj_catg_type_id = params.get('proj_catg_type_id').strip() if params.get('proj_catg_type_id') else None
[docs] self.seq_num = params.get('seq_num').strip() if params.get('seq_num') else None
[docs] self.proj_catg_short_name = params.get('proj_catg_short_name').strip() if params.get( 'proj_catg_short_name') else None
[docs] self.parent_proj_catg_id = params.get('parent_proj_catg_id').strip() if params.get( 'parent_proj_catg_id') else None
[docs] self.proj_catg_name = params.get('proj_catg_name').strip() if params.get('proj_catg_name') else None
[docs] def get_id(self): return self.proj_catg_id
[docs] def get_tsv(self): tsv = ['%R', self.proj_catg_id, self.proj_catg_type_id, self.seq_num, self.proj_catg_short_name, self.parent_proj_catg_id, self.proj_catg_name] return tsv
[docs] def __repr__(self): return self.proj_catg_name