2020-05-13 15:54:40 +02:00
|
|
|
from django.db import models
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
|
|
from lib.models.base import MetaDataModel
|
|
|
|
from apps.hospital.models import Hospital
|
|
|
|
# Create your models here.
|
|
|
|
|
|
|
|
class Polyclinic(MetaDataModel):
|
2020-05-15 10:31:22 +02:00
|
|
|
|
|
|
|
class Meta:
|
2020-05-15 12:54:16 +02:00
|
|
|
verbose_name = _('polyclinic')
|
|
|
|
verbose_name_plural = _('polyclinics')
|
2020-05-15 10:31:22 +02:00
|
|
|
|
2020-05-13 15:54:40 +02:00
|
|
|
hospital = models.ForeignKey(Hospital, on_delete=models.CASCADE, help_text=_('To which hospital belongs this polyclinic'))
|
|
|
|
name = models.CharField(_('Name'), max_length=200, blank=True, help_text=_('The name of this polyclinic'))
|
|
|
|
phone = models.CharField(_('Phone number'), max_length=18, blank=True, help_text=_('The general/direct phone number of this polyclinic'))
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
"""str: Returns a readable name for the hospital. Format is [hospital_name] ([city])."""
|
|
|
|
return '{} ({})'.format(self.name, self.hospital)
|