Exemplo n.º 1
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitDetail 
#from .models import VisitDetailForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit', VisitDetail)
#UI.register('OPD_Visit_Form', VisitDetailForm)
Exemplo n.º 2
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitAssessmentAndPlan

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitAssessmentAndPlan', VisitAssessmentAndPlan)
Exemplo n.º 3
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitROS

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_ROS', VisitROS)
Exemplo n.º 4
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import FamilyHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('FamilyHistory',  FamilyHistory )
Exemplo n.º 5
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Phone
from AuShadha.apps.ui.ui import ui as UI

UI.register('Phone',  Phone )
Exemplo n.º 6
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import MedicalHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('MedicalHistory', MedicalHistory)
Exemplo n.º 7
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Guardian
from AuShadha.apps.ui.ui import ui as UI

UI.register('Guardian', Guardian)
Exemplo n.º 8
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import DrugBankCaDrugs
from AuShadha.apps.ui.ui import ui as UI

# UI.register('ReferenceApp', DrugBankCaDrugs)
# UI.register('RegistryApp',DrugBankCaDrugs)
UI.register("DrugReference", DrugBankCaDrugs)
Exemplo n.º 9
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import PhyExamBaseModel, VitalExam, GenExam, SysExam, NeuroExam, VascExam, MusculoSkeletalExam
from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_PhysicalExamination', PhyExamBaseModel)
UI.register('OPD_Visit_VitalExam', VitalExam)
UI.register('OPD_Visit_GenExam', GenExam)
UI.register('OPD_Visit_SysExam', SysExam)
UI.register('OPD_Visit_MusculoSkeletalExam', MusculoSkeletalExam)
UI.register('OPD_Visit_NeuroExam', NeuroExam)
UI.register('OPD_Visit_VascExam', VascExam)
Exemplo n.º 10
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Section,BodySystem,Operation 
from AuShadha.apps.ui.ui import ui as UI

UI.register('ProcedureCodes', Section)
UI.register('RegistryApp',Section)
UI.register('ReferenceApp',Section)

Exemplo n.º 11
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitSOAP

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitSOAP', VisitSOAP)
Exemplo n.º 12
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import FamilyHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('FamilyHistory', FamilyHistory)
Exemplo n.º 13
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import SurgicalHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('SurgicalHistory', SurgicalHistory )
Exemplo n.º 14
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import MedicationList
from AuShadha.apps.ui.ui import ui as UI

UI.register('MedicationList', MedicationList)
Exemplo n.º 15
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitDetail
#from .models import VisitDetailForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit', VisitDetail)
#UI.register('OPD_Visit_Form', VisitDetailForm)
Exemplo n.º 16
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import FDADrugs
from AuShadha.apps.ui.ui import ui as UI

UI.register('ReferenceApp', FDADrugs)
UI.register('RegistryApp', FDADrugs)
UI.register('DrugDb', FDADrugs)
Exemplo n.º 17
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitDetail, VisitFollowUp, VisitComplaint, \
                    VisitHPI, VisitPastHistory, VisitROS, \
                    VisitInv, VisitImaging, VisitSOAP

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit', VisitDetail)
UI.register('OPD_Visit_Complaint', VisitComplaint)
UI.register('OPD_Visit_HPI', VisitHPI)
UI.register('OPD_Visit_PastHistory', VisitPastHistory)
UI.register('OPD_Visit_ROS', VisitROS)
UI.register('OPD_Visit_Inv', VisitInv)
UI.register('OPD_Visit_Imaging', VisitImaging)
UI.register('OPD_Visit_SOAP', VisitSOAP)
UI.register('OPD_Visit_FollowUp', VisitFollowUp)
Exemplo n.º 18
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitComplaint, VisitComplaintAddForm, VisitComplaintEditForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_Complaint', VisitComplaint)
UI.register('OPD_Add_Visit_ComplaintForm', VisitComplaintAddForm)
UI.register('OPD_Edit_Visit_ComplaintForm', VisitComplaintEditForm)
Exemplo n.º 19
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import PatientDetail
from AuShadha.apps.ui.ui import ui as UI

UI.register('PatientRegistration', PatientDetail)
Exemplo n.º 20
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import PhyExamBaseModel, VitalExam, GenExam, SysExam, NeuroExam, VascExam, MusculoSkeletalExam
from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_PhysicalExamination', PhyExamBaseModel )
UI.register('OPD_Visit_VitalExam', VitalExam )
UI.register('OPD_Visit_GenExam', GenExam )
UI.register('OPD_Visit_SysExam', SysExam )
UI.register('OPD_Visit_MusculoSkeletalExam', MusculoSkeletalExam )
UI.register('OPD_Visit_NeuroExam', NeuroExam )
UI.register('OPD_Visit_VascExam', VascExam )

Exemplo n.º 21
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import SurgicalHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('SurgicalHistory', SurgicalHistory)
Exemplo n.º 22
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Allergy
from AuShadha.apps.ui.ui import ui as UI

UI.register('AllergyList', Allergy)
Exemplo n.º 23
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitSOAP

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitSOAP', VisitSOAP)
Exemplo n.º 24
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Guardian
from AuShadha.apps.ui.ui import ui as UI

UI.register('Guardian',  Guardian )
Exemplo n.º 25
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitHPI, VisitHPIForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitHPI', VisitHPI)
UI.register('OPD_VisitHPIForm', VisitHPIForm)
Exemplo n.º 26
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitComplaint, VisitComplaintAddForm, VisitComplaintEditForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_Complaint', VisitComplaint)
UI.register('OPD_Add_Visit_ComplaintForm', VisitComplaintAddForm)
UI.register('OPD_Edit_Visit_ComplaintForm', VisitComplaintEditForm)
Exemplo n.º 27
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitROS

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit_ROS', VisitROS)
Exemplo n.º 28
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import EmailAndFax
from AuShadha.apps.ui.ui import ui as UI

UI.register('EmailAndFax',  EmailAndFax )
Exemplo n.º 29
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VaccineDetail 
from AuShadha.apps.ui.ui import ui as UI

#UI.register('ReferenceApp', VaccineDetail)
#UI.register('RegistryApp',VaccineDetail)
UI.register('VaccineRegistry',VaccineDetail)

Exemplo n.º 30
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import MedicalHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('MedicalHistory',  MedicalHistory )
Exemplo n.º 31
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Chapter, Section, Diagnosis
from AuShadha.apps.ui.ui import ui as UI

UI.register('RegistryApp', Chapter)
UI.register('DiseaseCodes', Chapter)
UI.register('ReferenceApp', Chapter)
Exemplo n.º 32
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import FDADrugs 
from AuShadha.apps.ui.ui import ui as UI

UI.register('ReferenceApp', FDADrugs)
UI.register('RegistryApp',FDADrugs)
UI.register('DrugDb',FDADrugs)
Exemplo n.º 33
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import AdmissionDetail

from AuShadha.apps.ui.ui import ui as UI

UI.register('Admission', AdmissionDetail)
Exemplo n.º 34
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VisitDetail, VisitDetailForm

from AuShadha.apps.ui.ui import ui as UI

UI.register("OPD_Visit", VisitDetail)
UI.register("OPD_Visit_Form", VisitDetailForm)
Exemplo n.º 35
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import SocialHistory
from AuShadha.apps.ui.ui import ui as UI

UI.register('SocialHistory', SocialHistory )
Exemplo n.º 36
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Immunisation
from AuShadha.apps.ui.ui import ui as UI

UI.register('Immunisation', Immunisation )
Exemplo n.º 37
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitDetail, VisitFollowUp, VisitComplaint, \
                    VisitHPI, VisitPastHistory, VisitROS, \
                    VisitInv, VisitImaging, VisitSOAP

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_Visit', VisitDetail)
UI.register('OPD_Visit_Complaint', VisitComplaint)
UI.register('OPD_Visit_HPI', VisitHPI)
UI.register('OPD_Visit_PastHistory', VisitPastHistory)
UI.register('OPD_Visit_ROS', VisitROS)
UI.register('OPD_Visit_Inv', VisitInv)
UI.register('OPD_Visit_Imaging', VisitImaging)
UI.register('OPD_Visit_SOAP', VisitSOAP)
UI.register('OPD_Visit_FollowUp', VisitFollowUp)
Exemplo n.º 38
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Contact
from AuShadha.apps.ui.ui import ui as UI

UI.register('Contact', Contact)
Exemplo n.º 39
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Immunisation
from AuShadha.apps.ui.ui import ui as UI

UI.register('Immunisation', Immunisation)
Exemplo n.º 40
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Chapter, Section,Diagnosis 
from AuShadha.apps.ui.ui import ui as UI

UI.register('RegistryApp',Chapter )
UI.register('DiseaseCodes',Chapter)
UI.register('ReferenceApp',Chapter)
Exemplo n.º 41
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import DrugBankCaDrugs
from AuShadha.apps.ui.ui import ui as UI

#UI.register('ReferenceApp', DrugBankCaDrugs)
#UI.register('RegistryApp',DrugBankCaDrugs)
UI.register('DrugReference', DrugBankCaDrugs)
Exemplo n.º 42
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import EmailAndFax
from AuShadha.apps.ui.ui import ui as UI

UI.register("EmailAndFax", EmailAndFax)
Exemplo n.º 43
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Contact
from AuShadha.apps.ui.ui import ui as UI

UI.register('Contact', Contact )
Exemplo n.º 44
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitHPI, VisitHPIForm

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitHPI', VisitHPI)
UI.register('OPD_VisitHPIForm', VisitHPIForm)
Exemplo n.º 45
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import AdmissionComplaint

from AuShadha.apps.ui.ui import ui as UI

UI.register('AdmissionComplaint', AdmissionComplaint )
Exemplo n.º 46
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Demographics
from AuShadha.apps.ui.ui import ui as UI

UI.register('Demographics', Demographics)
Exemplo n.º 47
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import VaccineDetail
from AuShadha.apps.ui.ui import ui as UI

#UI.register('ReferenceApp', VaccineDetail)
#UI.register('RegistryApp',VaccineDetail)
UI.register('VaccineRegistry', VaccineDetail)
Exemplo n.º 48
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import VisitAssessmentAndPlan

from AuShadha.apps.ui.ui import ui as UI

UI.register('OPD_VisitAssessmentAndPlan', VisitAssessmentAndPlan)
Exemplo n.º 49
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Phone
from AuShadha.apps.ui.ui import ui as UI

UI.register('Phone', Phone)
Exemplo n.º 50
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import PatientDetail
from AuShadha.apps.ui.ui import ui as UI

UI.register('PatientRegistration', PatientDetail)
Exemplo n.º 51
0
################################################################################
# Create a Registration with the UI for a Role.
# Each module's aushadha.py is screened for this
#
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later.
#
# As of now string base role assignement is done.
# This can be later extended to class based role
################################################################################

from .models import Allergy
from AuShadha.apps.ui.ui import ui as UI

UI.register("AllergyList", Allergy)
Exemplo n.º 52
0
################################################################################
# Create a Registration with the UI for a Role. 
# Each module's aushadha.py is screened for this
# 
# Each Class is registered for a Role in UI
# These can be used to generate Role based UI elements later. 
# 
# As of now string base role assignement is done. 
# This can be later extended to class based role
################################################################################

from .models import Demographics
from AuShadha.apps.ui.ui import ui as UI

UI.register('Demographics', Demographics )