first commit
This commit is contained in:
0
api_events/tasks2events/occupant_tasks/__init__.py
Normal file
0
api_events/tasks2events/occupant_tasks/__init__.py
Normal file
37
api_events/tasks2events/occupant_tasks/asd.py
Normal file
37
api_events/tasks2events/occupant_tasks/asd.py
Normal file
@@ -0,0 +1,37 @@
|
||||
"""
|
||||
|
||||
Toplantı Başkanı Toplantı Başkanı MT-PRS Toplantı
|
||||
Toplantı Katip Toplantıda tutanak tutan kişi MT-WRT Toplantı
|
||||
Toplantı Katılımcısı Toplantıda sadece katılan kişi MT-ATT Toplantı
|
||||
Toplantı Danışman Toplantıda danışmanlık yapan kişi MT-ADV Toplantı
|
||||
Daire Sahibi Daire Sahibi FL-OWN Daire
|
||||
Daire Kiracısı Daire Kiracısı FL-TEN Daire
|
||||
Daire Sakini Daire Sakini FL-RES Daire
|
||||
Daire Sakini Vekili Daire Sakini Vekili FL-REP Daire
|
||||
Bina Avukatı Bina Avukatı BU-ATT Bina
|
||||
Bina Avukatı Yardımcısı Bina Avukatı Yardımcısı BU-ATA Bina
|
||||
Bina Denetmen Yardımcısı Bina Denetmen Yardımcısı BU-SPA Bina
|
||||
Bina Denetmeni Bina Denetmeni BU-SPV Bina
|
||||
Bina Yönetici Yardımcısı Bina Yönetici Yardımcısı BU-MNA Bina
|
||||
Bina Yöneticisi Bina Yöneticisi BU-MNG Bina
|
||||
Bina Muhasabecisi Bina Muhasabecisi BU-ACC Bina
|
||||
|
||||
|
||||
"""
|
||||
|
||||
MT_PRS = []
|
||||
MT_WRT = []
|
||||
MT_ATT = []
|
||||
MT_ADV = []
|
||||
FL_OWN = []
|
||||
FL_TEN = []
|
||||
FL_RES = []
|
||||
FL_REP = []
|
||||
BU_ATT = []
|
||||
BU_ATA = []
|
||||
BU_SPA = []
|
||||
BU_SPV = []
|
||||
BU_MNA = []
|
||||
|
||||
|
||||
BU_ACC = []
|
||||
21
api_events/tasks2events/occupant_tasks/build_manager.py
Normal file
21
api_events/tasks2events/occupant_tasks/build_manager.py
Normal file
@@ -0,0 +1,21 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildManager(AddEventFunctionality):
|
||||
service_code = "SRO-BU-MNG"
|
||||
related_code = "BU-MNG"
|
||||
events = [
|
||||
{"function_code": "dce10509-0da5-46fb-af3c-a81d54d5481c"},
|
||||
{"function_code": "0d2bc5c9-d4b1-4951-8305-69da4a687fdc"},
|
||||
{"function_code": "0a68cb44-271a-4829-81f6-cd99a5f326b4"},
|
||||
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
||||
{"function_code": "d0bfa20c-841d-421c-98e6-d308f938d16a"},
|
||||
{"function_code": "68b3b5ed-b74c-4a27-820f-3959214e94e9"},
|
||||
{"function_code": "f6900cb5-ac5b-478e-8e7c-fa87e65cd2e5"},
|
||||
{"function_code": "92413636-53a8-4a05-842c-1485a64e00d1"},
|
||||
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
||||
{"function_code": "c0b65098-9c79-4212-b1d0-c7e7836cf141"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
13
api_events/tasks2events/occupant_tasks/build_owner.py
Normal file
13
api_events/tasks2events/occupant_tasks/build_owner.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildOwner(AddEventFunctionality):
|
||||
|
||||
service_code = "SRO-FL-OWN"
|
||||
related_code = "FL-OWN"
|
||||
events = [
|
||||
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
13
api_events/tasks2events/occupant_tasks/build_represent.py
Normal file
13
api_events/tasks2events/occupant_tasks/build_represent.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildRepresent(AddEventFunctionality):
|
||||
|
||||
service_code = "SRO-FL-REP"
|
||||
related_code = "FL-REP"
|
||||
events = [
|
||||
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
12
api_events/tasks2events/occupant_tasks/build_resident.py
Normal file
12
api_events/tasks2events/occupant_tasks/build_resident.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildResident(AddEventFunctionality):
|
||||
service_code = "SRO-FL-RES"
|
||||
related_code = "FL-RES"
|
||||
events = [
|
||||
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
12
api_events/tasks2events/occupant_tasks/build_tenant.py
Normal file
12
api_events/tasks2events/occupant_tasks/build_tenant.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildTenant(AddEventFunctionality):
|
||||
service_code = "SRO-FL-TEN"
|
||||
related_code = "FL-TEN"
|
||||
events = [
|
||||
{"function_code": "bdcba521-0116-441c-ace1-84c5b68c86c7"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
13
api_events/tasks2events/occupant_tasks/meeting_advisor.py
Normal file
13
api_events/tasks2events/occupant_tasks/meeting_advisor.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildMeetingAdvisor(AddEventFunctionality):
|
||||
service_code = "SRO-MT-ADV"
|
||||
related_code = "MT-ADV"
|
||||
events = [
|
||||
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
||||
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
13
api_events/tasks2events/occupant_tasks/meeting_attendance.py
Normal file
13
api_events/tasks2events/occupant_tasks/meeting_attendance.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildMeetingAttendance(AddEventFunctionality):
|
||||
service_code = "SRO-MT-ATT"
|
||||
related_code = "MT-ATT"
|
||||
events = [
|
||||
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
||||
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
13
api_events/tasks2events/occupant_tasks/meeting_president.py
Normal file
13
api_events/tasks2events/occupant_tasks/meeting_president.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildMeetingPresident(AddEventFunctionality):
|
||||
service_code = "SRO-MT-PRS"
|
||||
related_code = "MT-PRS"
|
||||
events = [
|
||||
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
||||
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
@@ -0,0 +1,12 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildMeetingVotedPresident(AddEventFunctionality):
|
||||
service_code = "SRO-MT-VPR"
|
||||
related_code = "MT-VPR"
|
||||
events = [
|
||||
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
14
api_events/tasks2events/occupant_tasks/meeting_writer.py
Normal file
14
api_events/tasks2events/occupant_tasks/meeting_writer.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from api_events.tasks2events.default_abstract import AddEventFunctionality
|
||||
|
||||
|
||||
class BuildMeetingWriter(AddEventFunctionality):
|
||||
service_code = "SRO-MT-WRT"
|
||||
related_code = "MT-WRT"
|
||||
events = [
|
||||
{"function_code": "dce10509-0da5-46fb-af3c-a81d54d5481c"},
|
||||
{"function_code": "eb36de59-8268-4d96-80b6-5d01c12bf0b1"},
|
||||
{"function_code": "5c10d6ae-2aee-4243-a7c3-94826d028d13"},
|
||||
]
|
||||
|
||||
def __new__(cls, *args, **kwargs):
|
||||
return super().retrieve_events(cls.events)
|
||||
Reference in New Issue
Block a user