user selection compoleted tested

This commit is contained in:
2025-06-15 19:05:48 +03:00
parent a48e560ece
commit 9fb517fa15
24 changed files with 574 additions and 313 deletions

View File

@@ -89,7 +89,7 @@ class OccupantTokenObject(ApplicationToken):
# Occupant Token Object -> Requires selection of the occupant type for a specific build part
available_occupants: dict = None
selected_occupant: Optional[OccupantToken] = None # Selected Occupant Type
selected_occupant: Optional[dict] = None # Selected Occupant Type
@property
def is_employee(self) -> bool:
@@ -109,7 +109,7 @@ class EmployeeTokenObject(ApplicationToken):
duty_id_list: list[int] # List of duty objects
duty_uu_id_list: list[str] # List of duty objects
selected_company: Optional[CompanyToken] = None # Selected Company Object
selected_company: Optional[dict] = None # Selected Company Object
@property
def is_employee(self) -> bool: