feat(project_management): Add attribute table_fields to Project model

ref:  #248 #345 #346
This commit is contained in:
2024-10-13 18:32:13 +09:30
parent 396566c3be
commit 8ffffab395

View File

@ -253,6 +253,16 @@ class Project(ProjectCommonFieldsName):
]
table_fields: list = [
'code',
'name',
'project_type'
'state',
'organization',
'modified'
]
fields_all: list = []
fields_import: list = []