mirror of https://github.com/interlegis/sapl.git
Browse Source
* Fix #2828 - Adiciona tipo de cronômetro * Corrige migrações * Altera view do painel em Sessao * Cronometros da tela de sessao funcionando * Melhoria no Form de Cronometro * Muda nome do cronometro da ordem * Cria PainelConfig * Adiciona opção de tempo de disparo previo * Corrigido formato do cronometro * Disparo prévio do cronômetro configurável * Adiciona opção de duração do disparo * Fix verbose name * Remove migrations desnecessáriaspull/2770/head
Cesar Augusto de Carvalho
6 years ago
committed by
Edward
10 changed files with 154 additions and 80 deletions
@ -1,48 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
# Generated by Django 1.11.20 on 2019-06-03 13:33 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
from django.db import migrations, models |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('painel', '0002_auto_20180523_1430'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.AlterModelOptions( |
|
||||
name='cronometro', |
|
||||
options={'ordering': ['ordenacao'], 'verbose_name': 'Cronômetro', 'verbose_name_plural': 'Cronômetros'}, |
|
||||
), |
|
||||
migrations.RemoveField( |
|
||||
model_name='cronometro', |
|
||||
name='data_cronometro', |
|
||||
), |
|
||||
migrations.AddField( |
|
||||
model_name='cronometro', |
|
||||
name='ativo', |
|
||||
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=False, verbose_name='Ativo?'), |
|
||||
), |
|
||||
migrations.AddField( |
|
||||
model_name='cronometro', |
|
||||
name='duracao_cronometro', |
|
||||
field=models.DurationField(verbose_name='Duração do cronômetro'), |
|
||||
), |
|
||||
migrations.AddField( |
|
||||
model_name='cronometro', |
|
||||
name='ordenacao', |
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Ordenação'), |
|
||||
), |
|
||||
migrations.AlterField( |
|
||||
model_name='cronometro', |
|
||||
name='status', |
|
||||
field=models.CharField(choices=[('I', 'Start'), ('R', 'Reset'), ('S', 'Stop'), ('C', 'Increment')], default='S', max_length=1, verbose_name='Status do cronômetro'), |
|
||||
), |
|
||||
migrations.AlterField( |
|
||||
model_name='cronometro', |
|
||||
name='tipo', |
|
||||
field=models.CharField(max_length=100, unique=True, verbose_name='Tipo Cronômetro'), |
|
||||
), |
|
||||
] |
|
@ -1,25 +0,0 @@ |
|||||
# -*- coding: utf-8 -*- |
|
||||
# Generated by Django 1.11.20 on 2019-06-03 13:33 |
|
||||
from __future__ import unicode_literals |
|
||||
|
|
||||
from django.db import migrations |
|
||||
|
|
||||
|
|
||||
def create_default_cronometros(apps, schema_editor): |
|
||||
tipos_default = ['Cronômetro do Discurso', 'Cronômetro do Aparte', |
|
||||
'Cronômetro da Questão de Ordem', 'Cronômetro de Considerações Finais'] |
|
||||
Cronometro = apps.get_model('painel', 'Cronometro') |
|
||||
|
|
||||
for i,tipo in enumerate(tipos_default): |
|
||||
Cronometro.objects.get_or_create(tipo=tipo, duracao_cronometro='00:05:00', status='S', ativo=True, ordenacao=i+1) |
|
||||
|
|
||||
|
|
||||
class Migration(migrations.Migration): |
|
||||
|
|
||||
dependencies = [ |
|
||||
('painel', '0003_auto_20190603_1033'), |
|
||||
] |
|
||||
|
|
||||
operations = [ |
|
||||
migrations.RunPython(create_default_cronometros) |
|
||||
] |
|
@ -0,0 +1,25 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.11.20 on 2019-06-12 16:47 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('painel', '0005_painelconfig'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='painelconfig', |
||||
|
name='disparo_cronometro', |
||||
|
field=models.BooleanField(choices=[(True, 'Sim'), (False, 'Não')], default=True, verbose_name='Cronômetros devem disparar com antecedência?'), |
||||
|
), |
||||
|
migrations.AddField( |
||||
|
model_name='painelconfig', |
||||
|
name='tempo_disparo_antecedencia', |
||||
|
field=models.DurationField(blank=True, default='00:00:30', null=True, verbose_name='Cronômetros devem disparar com quanto tempo de antecedência?'), |
||||
|
), |
||||
|
] |
@ -0,0 +1,20 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Generated by Django 1.11.20 on 2019-06-14 14:04 |
||||
|
from __future__ import unicode_literals |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('painel', '0006_auto_20190612_1347'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AddField( |
||||
|
model_name='painelconfig', |
||||
|
name='tempo_disparo_termino', |
||||
|
field=models.DurationField(blank=True, default='00:00:05', null=True, verbose_name='Cronômetros devem permanecer tocando por quanto tempo ao término?'), |
||||
|
), |
||||
|
] |
Loading…
Reference in new issue