# 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>.
import json
[docs]
class Resource:
def __init__(self, params):
[docs]
self.rsrc_id = int(params.get('rsrc_id').strip()) if params.get('rsrc_id') else None
[docs]
self.parent_rsrc_id = int(params.get('parent_rsrc_id').strip()) if params.get('parent_rsrc_id') else None
[docs]
self.clndr_id = int(params.get('clndr_id').strip()) if params.get('clndr_id') else None
[docs]
self.role_id = int(params.get('role_id').strip()) if params.get('role_id') else None
[docs]
self.shift_id = params.get('shift_id').strip() if params.get('shift_id') else None
[docs]
self.user_id = params.get('user_id').strip() if params.get('user_id') else None
[docs]
self.pobs_id = params.get('pobs_id').strip() if params.get('pobs_id') else None
[docs]
self.guid = params.get('guid').strip() if params.get('guid') else None
[docs]
self.rsrc_seq_num = params.get('rsrc_seq_num').strip() if params.get('rsrc_seq_num') else None
[docs]
self.email_addr = params.get('email_addr').strip() if params.get('email_addr') else None
[docs]
self.employee_code = params.get('employee_code').strip() if params.get('employee_code') else None
[docs]
self.office_phone = params.get('office_phone').strip() if params.get('office_phone') else None
[docs]
self.other_phone = params.get('other_phone').strip() if params.get('other_phone') else None
[docs]
self.rsrc_name = params.get('rsrc_name').strip() if params.get('rsrc_name') else None
[docs]
self.rsrc_short_name = params.get('rsrc_short_name').strip() if params.get('rsrc_short_name') else None
[docs]
self.rsrc_title_name = params.get('rsrc_title_name').strip() if params.get('rsrc_title_name') else None
[docs]
self.def_qty_per_hr = params.get('def_qty_per_hr').strip() if params.get('def_qty_per_hr') else None
[docs]
self.cost_qty_type = params.get('cost_qty_type').strip() if params.get('cost_qty_type') else None
[docs]
self.ot_factor = params.get('ot_factor').strip() if params.get('ot_factor') else None
[docs]
self.active_flag = params.get('active_flag').strip() if params.get('active_flag') else None
[docs]
self.auto_compute_act_flag = params.get('auto_compute_act_flag').strip() if params.get('auto_compute_act_flag') else None
[docs]
self.def_cost_qty_link_flag = params.get('def_cost_qty_link_flag').strip() if params.get('def_cost_qty_link_flag') else None
[docs]
self.ot_flag = params.get('ot_flag').strip() if params.get('ot_flag') else None
[docs]
self.curr_id = int(params.get('curr_id').strip()) if params.get('curr_id') else None
[docs]
self.unit_id = int(params.get('unit_id').strip()) if params.get('unit_id') else None
[docs]
self.rsrc_type = params.get('rsrc_type').strip() if params.get('rsrc_type') else None
[docs]
self.location_id = int(params.get('location_id').strip()) if params.get('location_id') else None
[docs]
self.rsrc_notes = params.get('rsrc_notes').strip() if params.get('rsrc_notes') else None
[docs]
self.load_tasks_flag = params.get('load_tasks_flag').strip() if params.get('load_tasks_flag') else None
[docs]
self.level_flag = params.get('level_flag').strip() if params.get('level_flag') else None
[docs]
self.last_checksum = params.get('level_flag').strip() if params.get('level_flag') else None
Resource.obj_list.append(self)
[docs]
def get_id(self):
return self.rsrc_id
[docs]
def get_tsv(self):
tsv = ['%R', self.rsrc_id, self.parent_rsrc_id, self.clndr_id,
self.role_id, self.shift_id, self.user_id, self.pobs_id,
self.guid, self.rsrc_seq_num, self.email_addr, self.employee_code,
self.office_phone, self.other_phone, self.rsrc_name, self.rsrc_short_name,
self.rsrc_title_name, self.def_qty_per_hr, self.cost_qty_type, self.ot_factor,
self.active_flag, self.auto_compute_act_flag, self.def_cost_qty_link_flag,
self.ot_flag, self.curr_id, self.unit_id, self.rsrc_type, self.location_id, self.rsrc_notes,
self.load_tasks_flag, self.level_flag, self.last_checksum
]
return tsv
@classmethod
[docs]
def find_by_id(cls, id):
obj = list(filter(lambda x: x.rsrc_id == id, cls.obj_list))
if obj:
return obj[0]
return obj
@property
[docs]
def parent(self):
return self.parent_rsrc_id
[docs]
def __repr__(self):
return self.rsrc_name
[docs]
def __str__(self):
return self.rsrc_name
[docs]
def toJson(self):
return json.dumps(self, default=lambda o: o.__dict__)