mirror of https://github.com/interlegis/sapl.git
7 changed files with 25 additions and 84 deletions
@ -1,18 +0,0 @@ |
|||||
# Generated by Django 2.2.28 on 2023-08-29 13:47 |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('base', '0057_appconfig_google_analytics_id_metrica'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AddField( |
|
||||
model_name='appconfig', |
|
||||
name='ordem_sequencia_regimental', |
|
||||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=True, verbose_name='Ordem da Matéria pela Sequência Regimental?'), |
|
||||
), |
|
||||
] |
|
@ -0,0 +1,18 @@ |
|||||
|
# Generated by Django 2.2.28 on 2023-09-04 17:01 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('base', '0057_appconfig_google_analytics_id_metrica'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='appconfig', |
||||
|
name='ordenacao_pesquisa_materia', |
||||
|
field=models.CharField(choices=[('S', 'Alfabética por Sigla'), ('R', 'Sequência Regimental')], default='S', max_length=1, verbose_name='Ordenação de Pesquisa da Matéria?'), |
||||
|
), |
||||
|
] |
@ -1,18 +0,0 @@ |
|||||
# Generated by Django 2.2.28 on 2023-08-29 14:33 |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('base', '0058_appconfig_ordem_sequencia_regimental'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AlterField( |
|
||||
model_name='appconfig', |
|
||||
name='ordem_sequencia_regimental', |
|
||||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, help_text='Ao utilizar a opção SIM, na tela de pesquisa da Matéria Legislativa, as matérias obedecerão a ordem da Sequencia Regimental, que foi, definido no cadastro de Tipo de Matéria Legislativa.', verbose_name='Ordem da Matéria pela Sequência Regimental?'), |
|
||||
), |
|
||||
] |
|
@ -1,18 +0,0 @@ |
|||||
# Generated by Django 2.2.28 on 2023-08-29 14:39 |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('base', '0059_auto_20230829_1033'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AlterField( |
|
||||
model_name='appconfig', |
|
||||
name='ordem_sequencia_regimental', |
|
||||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, help_text='Ao utilizar a opção SIM, na tela de pesquisa da Matéria Legislativa, a ordem será da Sequencia Regimental, que foi, definido no cadastro de Tipo de Matéria Legislativa. Se informado NÃO, a ordem será Alfabética da Sigla.', verbose_name='Ordem da Matéria pela Sequência Regimental?'), |
|
||||
), |
|
||||
] |
|
@ -1,22 +0,0 @@ |
|||||
# Generated by Django 2.2.28 on 2023-08-31 12:32 |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('base', '0060_auto_20230829_1039'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.RemoveField( |
|
||||
model_name='appconfig', |
|
||||
name='ordem_sequencia_regimental', |
|
||||
), |
|
||||
migrations.AddField( |
|
||||
model_name='appconfig', |
|
||||
name='ordenacao_pesquisa_materia', |
|
||||
field=models.CharField(choices=[('A', 'Alfabetica pela Sigla'), ('R', 'Sequencia Regimental')], default='A', max_length=1, verbose_name='Ordem de Pesquisa da Matéria?'), |
|
||||
), |
|
||||
] |
|
Loading…
Reference in new issue