Skip to content
Snippets Groups Projects
Commit 7805ed2e authored by Piotr Gawron's avatar Piotr Gawron
Browse files

appointment type has information about possibility to scheule type of

appointment in parallel
parent 48a71f5e
No related branches found
No related tags found
1 merge request!8Resolve "Adding appointment"
...@@ -297,6 +297,10 @@ class AppointmentType (models.Model): ...@@ -297,6 +297,10 @@ class AppointmentType (models.Model):
verbose_name='Suggested rest time', verbose_name='Suggested rest time',
default=0 default=0
) )
can_be_parallelized = models.BooleanField(
verbose_name='Can be parallelized',
default=False
)
REQ_ROLE_CHOICES = ( REQ_ROLE_CHOICES = (
('DOCTOR', 'Doctor'), ('DOCTOR', 'Doctor'),
('NURSE', 'Nurse'), ('NURSE', 'Nurse'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment