Skip to content

Commit

Permalink
Update users/models.py
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
urchinpro and github-actions[bot] authored Jul 2, 2024
1 parent 906904e commit ed6b742
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions users/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,14 @@ class DoctorProfile(models.Model):
replace_doctor_cda = models.ForeignKey('self', related_name='used_doctor_cda', help_text="Замена доктора для cda", blank=True, null=True, default=None, on_delete=models.SET_NULL)
additional_info = models.TextField(default='', blank=True, help_text='Дополнительная информация описывать словарем {}')
hosp_research_template = models.ForeignKey(
'directory.Researches', related_name='hosp_research_template', blank=True, default=None, null=True, verbose_name="Услуга стационара по котрой по умолчанию подгружаются шаблоны",
on_delete=models.CASCADE)
'directory.Researches',
related_name='hosp_research_template',
blank=True,
default=None,
null=True,
verbose_name="Услуга стационара по котрой по умолчанию подгружаются шаблоны",
on_delete=models.CASCADE,
)

@staticmethod
def get_system_profile():
Expand Down

0 comments on commit ed6b742

Please sign in to comment.