대상 필드의 경우 클래스에서 함수를 만들고 싶습니다. 이 함수는 필드 income_source
이 Employed
과 다를 때마다 대상 필드를 제외한 모든 필드를 비 웁니다. 수업 시간에 각 분야를 비우라고 어떻게 요청할 수 있습니까?클래스의 빈 필드
미리 감사드립니다.
@python_2_unicode_compatible
class EmployerProfile(AbstractAddress):
income_source = models.CharField(_('Income source'), max_length=20,
choices=settings.LOANWOLF_INCOME_SOURCE_CHOICES,
default='employed')
company_name = models.CharField(_('Company name'),
max_length=50, blank=True, null=True)
phone = PhoneField(_('Phone'), max_length=50, blank=True, null=True)
phone_extension = models.CharField(_('Extension'), max_length=10,
blank=True, null=True)
job_title = models.CharField(_('Job title'), max_length=50, blank=True,
null=True)
date_hired = models.DateField(_('Date hired'), blank=True, null=True)
supervisor_name = models.CharField(_('Supervisor name'), max_length=50,
blank=True, null=True)
has_missing_fields = models.BooleanField(_('Has missing informations'),
default=True)
manual_validation = GenericRelation(ManualFieldValidation)
을 보여주십시오 – Julien
@Julien 끝났습니다! :) –