2016-06-02 12:47:01 +02:00
|
|
|
from django.utils.translation import ugettext_noop
|
2013-03-11 21:32:09 +01:00
|
|
|
|
2013-09-25 10:01:01 +02:00
|
|
|
from .models import State, Workflow
|
2013-01-26 16:33:55 +01:00
|
|
|
|
2013-02-02 10:24:28 +01:00
|
|
|
|
2013-03-11 21:32:09 +01:00
|
|
|
def create_builtin_workflows(sender, **kwargs):
|
|
|
|
"""
|
2014-11-13 22:23:16 +01:00
|
|
|
Receiver function to create a simple and a complex workflow. It is
|
|
|
|
connected to the signal openslides.core.signals.post_database_setup
|
|
|
|
during app loading.
|
2013-03-11 21:32:09 +01:00
|
|
|
"""
|
2015-01-16 14:18:34 +01:00
|
|
|
if Workflow.objects.exists():
|
|
|
|
# If there is at least one workflow, then do nothing.
|
|
|
|
return
|
2013-03-11 21:32:09 +01:00
|
|
|
|
2016-01-22 20:46:20 +01:00
|
|
|
workflow_1 = Workflow.objects.create(name='Simple Workflow')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_1_1 = State.objects.create(name=ugettext_noop('submitted'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_1,
|
|
|
|
allow_create_poll=True,
|
|
|
|
allow_support=True,
|
|
|
|
allow_submitter_edit=True)
|
2016-02-09 00:11:48 +01:00
|
|
|
state_1_2 = State.objects.create(name=ugettext_noop('accepted'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_1,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Accept',
|
2015-11-03 21:38:53 +01:00
|
|
|
css_class='success')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_1_3 = State.objects.create(name=ugettext_noop('rejected'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_1,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Reject',
|
2015-11-03 21:38:53 +01:00
|
|
|
css_class='danger')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_1_4 = State.objects.create(name=ugettext_noop('not decided'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_1,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Do not decide',
|
2015-11-03 21:38:53 +01:00
|
|
|
css_class='default')
|
2015-01-16 14:18:34 +01:00
|
|
|
state_1_1.next_states.add(state_1_2, state_1_3, state_1_4)
|
|
|
|
workflow_1.first_state = state_1_1
|
|
|
|
workflow_1.save()
|
|
|
|
|
2016-01-22 20:46:20 +01:00
|
|
|
workflow_2 = Workflow.objects.create(name='Complex Workflow')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_1 = State.objects.create(name=ugettext_noop('published'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
|
|
|
allow_support=True,
|
|
|
|
allow_submitter_edit=True,
|
|
|
|
dont_set_identifier=True)
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_2 = State.objects.create(name=ugettext_noop('permitted'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Permit',
|
2015-01-16 14:18:34 +01:00
|
|
|
allow_create_poll=True,
|
|
|
|
allow_submitter_edit=True,
|
|
|
|
versioning=True,
|
|
|
|
leave_old_version_active=True)
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_3 = State.objects.create(name=ugettext_noop('accepted'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Accept',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='success')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_4 = State.objects.create(name=ugettext_noop('rejected'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Reject',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='danger')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_5 = State.objects.create(name=ugettext_noop('withdrawed'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Withdraw',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_6 = State.objects.create(name=ugettext_noop('adjourned'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Adjourn',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_7 = State.objects.create(name=ugettext_noop('not concerned'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Do not concern',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_8 = State.objects.create(name=ugettext_noop('commited a bill'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Commit a bill',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_9 = State.objects.create(name=ugettext_noop('needs review'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Needs review',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2016-02-09 00:11:48 +01:00
|
|
|
state_2_10 = State.objects.create(name=ugettext_noop('rejected (not authorized)'),
|
2015-01-16 14:18:34 +01:00
|
|
|
workflow=workflow_2,
|
2016-01-22 20:46:20 +01:00
|
|
|
action_word='Reject (not authorized)',
|
2015-11-03 21:38:53 +01:00
|
|
|
versioning=True,
|
|
|
|
css_class='default')
|
2015-01-16 14:18:34 +01:00
|
|
|
state_2_1.next_states.add(state_2_2, state_2_5, state_2_10)
|
|
|
|
state_2_2.next_states.add(state_2_3, state_2_4, state_2_5, state_2_6, state_2_7, state_2_8, state_2_9)
|
|
|
|
workflow_2.first_state = state_2_1
|
|
|
|
workflow_2.save()
|