-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tramitacao customizada ordemdia expediente (#3584)
* Campo tramitação para expediente e ordem do dia das pautas de sessoes plenarias * Migration para tramitacao customizada de ordem dia e expediente da pauta de sessao * ajuste automático feito pela IDE para pep8 * Ajuste de usabilidade - encaminha além da descrição do status, também a data de tramitação, unidade local e unidade de destino de cada tramitação - recebe os dados acima na interface, monta options com data, e status. - qualquer alteração no select, monta um alert, assim como para matéria selecionada, com os dados cima da tramitação Co-authored-by: joao <[email protected]> Co-authored-by: LeandroJatai <[email protected]>
- Loading branch information
1 parent
73de9ee
commit e1a3654
Showing
7 changed files
with
197 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Generated by Django 2.2.28 on 2022-07-14 02:35 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('materia', '0081_auto_20220321_0934'), | ||
('sessao', '0063_merge_20220609_0838'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='expedientemateria', | ||
name='tramitacao', | ||
field=models.ForeignKey(blank=True, default='', null=True, on_delete=django.db.models.deletion.PROTECT, to='materia.Tramitacao', verbose_name='Situação Atual'), | ||
), | ||
migrations.AddField( | ||
model_name='ordemdia', | ||
name='tramitacao', | ||
field=models.ForeignKey(blank=True, default='', null=True, on_delete=django.db.models.deletion.PROTECT, to='materia.Tramitacao', verbose_name='Situação Atual'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.