我有一个继承自django用户的Patient
和Doctor
模型
class HmsUser(AbstractBaseUser, PermissionsMixin):
username = models.CharField(_('username'), max_length=30, unique=True,
help_text=_('Required. 30 characters or fewer. Letters, numbers and '
'@/./+/-/_ characters'),
validators=[
validators.RegexValidator(re.compile('^[\w.@+-]+$'), _('Enter a valid username.'), 'invalid')
])
email = models.EmailField(_('email address'), blank=True)
is_staff = models.BooleanField(_('staff status'), default=False,
help_text=_('Designates whether the user can log into this admin '
'site.'))
is_active = models.BooleanField(_('active'), default=True,
help_text=_('Designates whether this user should be treated as '
'active. Unselect this instead of deleting accounts.'))
date_joined = models.DateTimeField(_('date joined'), default=timezone.now)
objects = UserManager()
USERNAME_FIELD = 'username'
REQUIRED_FIELDS = ['email']
def __unicode__(self):
return self.get_full_name();
def get_profile(self):
# ....
def real(self, ):
try: return self.doctor
except Doctor.DoesNotExist:
try: return self.operator
except Operator.DoesNotExist:
try: return self.patient
except Patient.DoesNotExist:
try: return self.organization
except Organization.DoesNotExist:
return self
def is_doctor(self):
return self.real().__class__ == Doctor
def is_patient(self):
return self.real().__class__ == Patient
def is_operator(self):
return self.real().__class__ == Operator
def is_organization(self):
return self.real().__class__ == Organization
def really(self, user_type):
return isinstance(self.real(), user_type)
class Person(HmsUser):
GENDER_CHOICES = (
('M', 'Male'),
('F', 'Female'),
)
first_name = models.CharField(_('first name'), max_length=30, blank=True)
last_name = models.CharField(_('last name'), max_length=30, blank=True)
dob = models.DateField('Date Of Birth')
sex = models.CharField(max_length=1, choices=GENDER_CHOICES)
address = models.CharField(max_length=300, blank=True)
image = models.ImageField(upload_to=rename_image, null=True, blank=True)
class Meta:
abstract = True
# ....
class Patient(Person):
def get_full_name(self):
return '%s. %s' % ( ('Mr', 'Ms')[self.sex == 'F'], super(Patient, self).get_full_name())
def get_short_name(self):
return '%s. %s' % (('Mr', 'Ms')[self.sex == 'F'], super(Patient, self).get_short_name())
def admission(self):
admissions = self.admissions.filter(released = None)
return admissions.count() > 0 and admissions.latest('admitted') or None
def doctors(self):
id_list = self.stories.values_list('doctor', flat=True).distinct()
return Doctor.objects.filter(pk__in=set(id_list))
def visits(self):
# ....
def profile(self):
return reverse('patient', args=(self.id, ))
class Doctor(Person):
paramedic = models.BooleanField()
specialization = models.CharField(_('Specialization'), max_length=64, blank=True)
organizations = models.ManyToManyField(Organization, through='Membership', blank=True)
def get_full_name(self):
return '%s. %s' % ('Dr', super(Doctor, self).get_full_name())
def get_short_name(self):
return '%s. %s' % ('Dr', super(Doctor, self).get_short_name())
def stories(self):
# ....
def patients(self):
id_list = self.stories.values_list('patient', flat=True).distinct()
return Patient.objects.filter(pk__in=set(id_list))
def profile(self):
return reverse('doctor', args=(self.id, ))
我对医生和患者模型有不同看法
def patient(request, patient_id):
patient = Patient.objects.get(id=patient_id)
print(patient.__class__) # <class 'identity.models.Patient'>
print(patient.real().__class__) # <class 'django.db.models.fields.related_descriptors.RelatedManager'>
def doctor(request, doctor_id):
doctor = Doctor.objects.get(id=doctor_id)
print(doctor.__class__) # <class 'identity.models.Doctor'>
print(doctor.real().__class__) # <class 'identity.models.Doctor'>
doctor.real().__class__
和doctor.__class__
返回<class 'identity.models.Doctor'>
但是
patient.real().__class__
返回<class 'django.db.models.fields.related_descriptors.RelatedManager'>
然而
patient.__class__
返回<class 'identity.models.Patient'>
为什么patient.real().__class__
不是<class 'identity.models.Patient'>
shell
时,
In [15]: d = Doctor.objects.get(id=68)
In [16]: p = Patient.objects.get(id=69)
In [17]: d.doctor
Out[17]: <Doctor: Dr. Shatadal Saha>
In [18]: p.patient
Out[18]: <django.db.models.fields.related_descriptors.RelatedManager at 0x7fd86e45ee90>
答案 0 :(得分:0)
当您打印patient.real().__class__
时。
因此,这会从具有Foreignkey
或ManytoMany
的另一个模型的真实方法返回一个字段。所以patient.real().__class__
打印字段关系类而不是自我类名称