Browse Source
feat: adiciona a coluna assunto na list de correspondencias do expediente do dia (#3640)
Co-authored-by: joao <joao@mezzoplanejamento.com.br>
pull/3645/head
joaohortsenado
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
sapl/sessao/views.py
|
@ -5191,7 +5191,7 @@ class CorrespondenciaCrud(MasterDetailCrud): |
|
|
|
|
|
|
|
|
class BaseMixin(MasterDetailCrud.BaseMixin): |
|
|
class BaseMixin(MasterDetailCrud.BaseMixin): |
|
|
list_field_names = ['numero_ordem', |
|
|
list_field_names = ['numero_ordem', |
|
|
('documento__data', 'documento__interessado'), 'documento'] |
|
|
('documento__data', 'documento__interessado'), 'documento', 'documento__assunto'] |
|
|
|
|
|
|
|
|
def get_context_data(self, **kwargs): |
|
|
def get_context_data(self, **kwargs): |
|
|
context = super().get_context_data(**kwargs) |
|
|
context = super().get_context_data(**kwargs) |
|
|