Updated event location related. General code clean up and updates.

This commit is contained in:
Scott Idem
2022-09-23 18:31:17 -04:00
parent d2d6136bc4
commit a56a4b9647
7 changed files with 47 additions and 16 deletions

View File

@@ -50,6 +50,7 @@ class Event_Location_Base(BaseModel):
internal_notes_staff: Optional[str] # staffing and labor
file_count: Optional[int]
internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"???
alert: Optional[bool]
alert_msg: Optional[str]
@@ -82,6 +83,7 @@ class Event_Location_Base(BaseModel):
event_abstract_list: Optional[list] # Optional[Event_Abstract_Base]
event_device_list: Optional[list] # Optional[Event_Device_Base]
event_file_list: Optional[list] # Optional[Event_File_Base]
event_file_internal_use_list: Optional[list] # Optional[Event_File_Base]
event_presentation_list: Optional[list] # Optional[Event_Presentation_Base]
event_presenter_list: Optional[list] # Optional[Event_Presenter_Base]
event_session_list: Optional[list] # Optional[Event_Session_Base]

View File

@@ -93,7 +93,7 @@ class Event_Session_Base(BaseModel):
internal_notes_staff: Optional[str] # staffing and labor
file_count: Optional[int]
internal_use_count: Optional[int]
internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"???
status: Optional[int]
review: Optional[bool]