-
Notifications
You must be signed in to change notification settings - Fork 1
Data Base WIP
Dimitris Koutsonikolis edited this page Jan 27, 2022
·
2 revisions
class EpisodeChoices(TextChoices):
INGUINAL = ("INGUINAL", "Inguinal Mesh Hernia Repair")
INCISIONAL = ("INCISIONAL", "Incisional Mesh Hernia Repair")
FEMORAL = ("FEMORAL", "Femoral Mesh Hernia Repair")
HIATUS = ("HIATUS", "Hiatus Mesh Hernia Repair")
UMBILICAL = (
"UMBILICAL",
"Umbilical/Periumbilicial Mesh Hernia Repair",
)
class CepodChoices(TextChoices):
PLANNED = ("PLANNED", "Planned")
EMERGENCY = ("EMERGENCY", "Emergency")
class SideChoices(TextChoices):
LEFT = ("LEFT", "Left")
RIGHT = ("RIGHT", "Right")
class OccurenceChoices(TextChoices):
PRIMARY = ("PRIMARY", "Primary")
RECURRENT = ("RECURRENT", "Recurrent")
RERECURRENT = ("RERECURRENT", "Rerecurrent")
class TypeChoices(TextChoices):
DIRECT = ("DIRECT", "Direct")
INDIRECT = ("INDIRECT", "Indirect")
PANTALOON = ("PANTALOON", "Pantaloon")
class ComplexityChoices(TextChoices):
SIMPLE = ("SIMPLE", "Simple")
INCARCERATED = ("INCARCERATED", "Incarcerated")
OBSTRUCTED = ("OBSTRUCTED", "Obstructed")
STRANGULATED = ("STRANGULATED", "Strangulated")
class MeshTypeChoices(TextChoices):
TNMHP = ("TNMHP", "TNMHP Mesh")
KCMC = ("KCMC", "KCMC Generic Mesh")
COMMERCIAL = ("COMMERCIAL", "Commercial Mesh")
class AnaestheticChoices(TextChoices):
LOCAL = ("LOCAL", "Local Anaesthetic")
SPINAL = ("SPINAL", "Spinal Anaesthetic")
GENERAL = ("GENERAL", "General Anaesthetic")