Files
ihrm/recruitment/forms.py

1371 lines
42 KiB
Python

"""
forms.py
This module contains the form classes used in the application.
Each form represents a specific functionality or data input in the
application. They are responsible for validating
and processing user input data.
Classes:
- YourForm: Represents a form for handling specific data input.
Usage:
from django import forms
class YourForm(forms.Form):
field_name = forms.CharField()
def clean_field_name(self):
# Custom validation logic goes here
pass
"""
import logging
import uuid
from ast import Dict
from datetime import date, datetime
from typing import Any
from django import forms
from django.apps import apps
from django.core.exceptions import NON_FIELD_ERRORS, ValidationError
from django.template.loader import render_to_string
from django.utils.translation import gettext_lazy as _
from base.forms import Form
from base.forms import ModelForm as BaseModelForm
from base.methods import reload_queryset
from employee.filters import EmployeeFilter
from employee.models import Employee
from horilla import horilla_middlewares
from horilla.horilla_middlewares import _thread_locals
from horilla_widgets.widgets.horilla_multi_select_field import HorillaMultiSelectField
from horilla_widgets.widgets.select_widgets import HorillaMultiSelectWidget
from recruitment import widgets
from recruitment.models import (
Candidate,
CandidateDocument,
CandidateDocumentRequest,
InterviewSchedule,
JobPosition,
LinkedInAccount,
Recruitment,
RecruitmentSurvey,
RejectedCandidate,
RejectReason,
Resume,
Skill,
SkillZone,
SkillZoneCandidate,
Stage,
StageFiles,
StageNote,
SurveyTemplate,
)
logger = logging.getLogger(__name__)
class ModelForm(forms.ModelForm):
"""
Override of Django ModelForm to add initial styling and defaults.
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
reload_queryset(self.fields)
request = getattr(horilla_middlewares._thread_locals, "request", None)
today = date.today()
now = datetime.now()
default_input_class = "oh-input w-100"
select_class = "oh-select oh-select-2"
checkbox_class = "oh-switch__checkbox"
for field_name, field in self.fields.items():
widget = field.widget
label = _(field.label) if field.label else ""
# Date field
if isinstance(widget, forms.DateInput):
field.initial = today
widget.input_type = "date"
widget.format = "%Y-%m-%d"
field.input_formats = ["%Y-%m-%d"]
existing_class = widget.attrs.get("class", default_input_class)
widget.attrs.update(
{
"class": f"{existing_class} form-control",
"placeholder": label,
}
)
# Time field
elif isinstance(widget, forms.TimeInput):
field.initial = now.strftime("%H:%M")
widget.input_type = "time"
widget.format = "%H:%M"
field.input_formats = ["%H:%M"]
existing_class = widget.attrs.get("class", default_input_class)
widget.attrs.update(
{
"class": f"{existing_class} form-control",
"placeholder": label,
}
)
# Number, Email, Text, File, URL fields
elif isinstance(
widget,
(
forms.NumberInput,
forms.EmailInput,
forms.TextInput,
forms.FileInput,
forms.URLInput,
),
):
existing_class = widget.attrs.get("class", default_input_class)
widget.attrs.update(
{
"class": f"{existing_class} form-control",
"placeholder": _(field.label.title()) if field.label else "",
}
)
# Select fields
elif isinstance(widget, forms.Select):
if not isinstance(field, forms.ModelMultipleChoiceField):
field.empty_label = _("---Choose {label}---").format(label=label)
existing_class = widget.attrs.get("class", select_class)
widget.attrs.update({"class": existing_class})
# Textarea
elif isinstance(widget, forms.Textarea):
existing_class = widget.attrs.get("class", default_input_class)
widget.attrs.update(
{
"class": f"{existing_class} form-control",
"placeholder": label,
"rows": 2,
"cols": 40,
}
)
# Checkbox types
elif isinstance(
widget, (forms.CheckboxInput, forms.CheckboxSelectMultiple)
):
existing_class = widget.attrs.get("class", checkbox_class)
widget.attrs.update({"class": existing_class})
# Set employee_id and company_id once
if request:
employee = getattr(request.user, "employee_get", None)
if employee:
if "employee_id" in self.fields and self._meta.model.__name__ not in [
"DisciplinaryAction"
]:
self.fields["employee_id"].initial = employee
if "company_id" in self.fields:
company_field = self.fields["company_id"]
company = getattr(employee, "get_company", None)
if company:
queryset = company_field.queryset
company_field.initial = (
company if company in queryset else queryset.first()
)
class RegistrationForm(forms.ModelForm):
"""
Overriding django default model form to apply some styles
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
reload_queryset(self.fields)
for field_name, field in self.fields.items():
widget = field.widget
if isinstance(widget, (forms.Select,)):
label = ""
if field.label is not None:
label = _(field.label)
field.empty_label = _("---Choose {label}---").format(label=label)
self.fields[field_name].widget.attrs.update(
{"id": uuid.uuid4, "class": "oh-select-2 oh-select--sm w-100"}
)
elif isinstance(widget, (forms.TextInput)):
field.widget.attrs.update(
{
"class": "oh-input w-100",
}
)
elif isinstance(
widget,
(
forms.CheckboxInput,
forms.CheckboxSelectMultiple,
),
):
field.widget.attrs.update({"class": "oh-switch__checkbox "})
class DropDownForm(forms.ModelForm):
"""
Overriding django default model form to apply some styles
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
reload_queryset(self.fields)
for field_name, field in self.fields.items():
widget = field.widget
if isinstance(
widget,
(
forms.NumberInput,
forms.EmailInput,
forms.TextInput,
forms.FileInput,
forms.URLInput,
),
):
if field.label is not None:
label = _(field.label)
field.widget.attrs.update(
{
"class": "oh-input oh-input--small oh-table__add-new-row d-block w-100",
"placeholder": label,
}
)
elif isinstance(widget, (forms.Select,)):
self.fields[field_name].widget.attrs.update(
{
"class": "oh-select-2 oh-select--xs-forced ",
"id": uuid.uuid4(),
}
)
elif isinstance(widget, (forms.Textarea)):
if field.label is not None:
label = _(field.label)
field.widget.attrs.update(
{
"class": "oh-input oh-input--small oh-input--textarea",
"placeholder": label,
"rows": 1,
"cols": 40,
}
)
elif isinstance(
widget,
(
forms.CheckboxInput,
forms.CheckboxSelectMultiple,
),
):
field.widget.attrs.update({"class": "oh-switch__checkbox "})
class RecruitmentCreationForm(BaseModelForm):
"""
Form for Recruitment model
"""
# survey_templates = forms.ModelMultipleChoiceField(
# queryset=SurveyTemplate.objects.all(),
# widget=forms.SelectMultiple(),
# label=_("Survey Templates"),
# required=False,
# )
# linkedin_account_id = forms.ModelChoiceField(
# queryset=LinkedInAccount.objects.filter(is_active=True)
# label=_('')
# )
class Meta:
"""
Meta class to add the additional info
"""
model = Recruitment
fields = "__all__"
exclude = ["is_active", "linkedin_post_id"]
widgets = {
"description": forms.Textarea(attrs={"data-summernote": ""}),
}
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("horilla_form.html", context)
return table_html
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
reload_queryset(self.fields)
if not self.instance.pk:
self.fields["recruitment_managers"] = HorillaMultiSelectField(
queryset=Employee.objects.filter(is_active=True),
widget=HorillaMultiSelectWidget(
filter_route_name="employee-widget-filter",
filter_class=EmployeeFilter,
filter_instance_contex_name="f",
filter_template_path="employee_filters.html",
required=True,
),
label=f"{self._meta.model()._meta.get_field('recruitment_managers').verbose_name}",
)
skill_choices = [("", _("---Choose Skills---"))] + list(
self.fields["skills"].queryset.values_list("id", "title")
)
self.fields["skills"].choices = skill_choices
self.fields["skills"].choices += [("create", _("Create new skill "))]
self.fields["linkedin_account_id"].queryset = LinkedInAccount.objects.filter(
is_active=True
)
self.fields["publish_in_linkedin"].widget.attrs.update(
{"onchange": "toggleLinkedIn()"}
)
# def create_option(self, *args,**kwargs):
# option = super().create_option(*args,**kwargs)
# if option.get('value') == "create":
# option['attrs']['class'] = 'text-danger'
# return option
def clean(self):
if isinstance(self.fields["recruitment_managers"], HorillaMultiSelectField):
ids = self.data.getlist("recruitment_managers")
if ids:
self.errors.pop("recruitment_managers", None)
open_positions = self.cleaned_data.get("open_positions")
is_published = self.cleaned_data.get("is_published")
if is_published and not open_positions:
raise forms.ValidationError(
_("Job position is required if the recruitment is publishing.")
)
if (
self.cleaned_data.get("publish_in_linkedin")
and not self.cleaned_data["linkedin_account_id"]
):
raise forms.ValidationError(
{
"linkedin_account_id": _(
"LinkedIn account is required for publishing."
)
}
)
super().clean()
class StageCreationForm(BaseModelForm):
"""
Form for Stage model
"""
class Meta:
"""
Meta class to add the additional info
"""
model = Stage
fields = "__all__"
exclude = ["sequence", "is_active"]
labels = {
"stage": _("Stage"),
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
reload_queryset(self.fields)
if not self.instance.pk:
self.fields["stage_managers"] = HorillaMultiSelectField(
queryset=Employee.objects.filter(is_active=True),
widget=HorillaMultiSelectWidget(
filter_route_name="employee-widget-filter",
filter_class=EmployeeFilter,
filter_instance_contex_name="f",
filter_template_path="employee_filters.html",
required=True,
),
label=f"{self._meta.model()._meta.get_field('stage_managers').verbose_name}",
)
def clean(self):
if isinstance(self.fields["stage_managers"], HorillaMultiSelectField):
ids = self.data.getlist("stage_managers")
if ids:
self.errors.pop("stage_managers", None)
super().clean()
class CandidateCreationForm(BaseModelForm):
"""
Form for Candidate model
"""
load = forms.CharField(widget=widgets.RecruitmentAjaxWidget, required=False)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["source"].initial = "software"
self.fields["profile"].widget.attrs["accept"] = ".jpg, .jpeg, .png"
self.fields["profile"].required = False
self.fields["resume"].widget.attrs["accept"] = ".pdf"
self.fields["resume"].required = False
if self.instance.recruitment_id is not None:
if self.instance is not None:
self.fields["job_position_id"] = forms.ModelChoiceField(
queryset=self.instance.recruitment_id.open_positions.all(),
label="Job Position",
)
self.fields["recruitment_id"].widget.attrs = {"data-widget": "ajax-widget"}
self.fields["job_position_id"].widget.attrs = {"data-widget": "ajax-widget"}
class Meta:
"""
Meta class to add the additional info
"""
model = Candidate
fields = [
"profile",
"name",
"portfolio",
"email",
"mobile",
"recruitment_id",
"job_position_id",
"dob",
"gender",
"address",
"source",
"country",
"state",
"zip",
"resume",
"referral",
"canceled",
"is_active",
]
def save(self, commit: bool = ...):
candidate = self.instance
recruitment = candidate.recruitment_id
stage = candidate.stage_id
candidate.hired = False
candidate.start_onboard = False
if stage is not None:
if stage.stage_type == "hired" and candidate.canceled is False:
candidate.hired = True
candidate.start_onboard = True
candidate.recruitment_id = recruitment
candidate.stage_id = stage
job_id = self.data.get("job_position_id")
if job_id:
job_position = JobPosition.objects.get(id=job_id)
self.instance.job_position_id = job_position
return super().save(commit)
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string(
"candidate/candidate_create_form_as_p.html", context
)
return table_html
def clean(self):
errors = {}
profile = self.cleaned_data["profile"]
resume = self.cleaned_data["resume"]
recruitment: Recruitment = self.cleaned_data["recruitment_id"]
if not resume and not recruitment.optional_resume:
errors["resume"] = _("This field is required")
if not profile and not recruitment.optional_profile_image:
errors["profile"] = _("This field is required")
if self.instance.name is not None:
self.errors.pop("job_position_id", None)
if (
self.instance.job_position_id is None
or self.data.get("job_position_id") == ""
):
errors["job_position_id"] = _("This field is required")
if (
self.instance.job_position_id
not in self.instance.recruitment_id.open_positions.all()
):
errors["job_position_id"] = _("Choose valid choice")
if errors:
raise ValidationError(errors)
return super().clean()
class ApplicationForm(RegistrationForm):
"""
Form for create Candidate
"""
load = forms.CharField(widget=widgets.RecruitmentAjaxWidget, required=False)
active_recruitment = Recruitment.objects.filter(
is_active=True, closed=False, is_published=True
)
recruitment_id = forms.ModelChoiceField(queryset=active_recruitment)
class Meta:
"""
Meta class to add the additional info
"""
model = Candidate
exclude = (
"stage_id",
"schedule_date",
"referral",
"start_onboard",
"hired",
"is_active",
"canceled",
"joining_date",
"sequence",
"offerletter_status",
"source",
)
widgets = {
"recruitment_id": forms.TextInput(
attrs={
"required": "required",
}
),
"dob": forms.DateInput(
attrs={
"type": "date",
}
),
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
request = getattr(_thread_locals, "request", None)
self.fields["profile"].widget.attrs["accept"] = ".jpg, .jpeg, .png"
self.fields["profile"].required = False
self.fields["resume"].widget.attrs["accept"] = ".pdf"
self.fields["resume"].required = False
self.fields["recruitment_id"].widget.attrs = {"data-widget": "ajax-widget"}
self.fields["job_position_id"].widget.attrs = {"data-widget": "ajax-widget"}
if request and request.user.has_perm("recruitment.add_candidate"):
self.fields["profile"].required = False
def clean(self, *args, **kwargs):
name = self.cleaned_data.get("name")
request = getattr(_thread_locals, "request", None)
errors = {}
profile = self.cleaned_data.get("profile")
resume = self.cleaned_data.get("resume")
recruitment: Recruitment = self.cleaned_data.get("recruitment_id")
if recruitment:
if not resume and not recruitment.optional_resume:
errors["resume"] = _("This field is required")
if not profile and not recruitment.optional_profile_image:
errors["profile"] = _("This field is required")
if errors:
raise ValidationError(errors)
if (
not profile
and request
and request.user.has_perm("recruitment.add_candidate")
):
profile_pic_url = f"https://ui-avatars.com/api/?name={name}"
self.cleaned_data["profile"] = profile_pic_url
super().clean()
return self.cleaned_data
class RecruitmentDropDownForm(DropDownForm):
"""
Form for Recruitment model
"""
class Meta:
"""
Meta class to add the additional info
"""
fields = "__all__"
model = Recruitment
widgets = {
"start_date": forms.DateInput(attrs={"type": "date"}),
"end_date": forms.DateInput(attrs={"type": "date"}),
"description": forms.Textarea(attrs={"data-summernote": ""}),
}
labels = {"description": _("Description"), "vacancy": _("Vacancy")}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["job_position_id"].widget.attrs.update({"id": uuid.uuid4})
self.fields["recruitment_managers"].widget.attrs.update({"id": uuid.uuid4})
field = self.fields["is_active"]
field.widget = field.hidden_widget()
class AddCandidateForm(ModelForm):
"""
Form for Candidate model
"""
verbose_name = "Add Candidate"
class Meta:
"""
Meta class to add the additional info
"""
model = Candidate
fields = [
"profile",
"resume",
"name",
"email",
"mobile",
"gender",
"stage_id",
"job_position_id",
]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
initial = kwargs["initial"].get("stage_id")
if initial:
recruitment = Stage.objects.get(id=initial).recruitment_id
self.instance.recruitment_id = recruitment
self.fields["stage_id"].queryset = self.fields["stage_id"].queryset.filter(
recruitment_id=recruitment
)
self.fields["job_position_id"].queryset = recruitment.open_positions
self.fields["profile"].widget.attrs["accept"] = ".jpg, .jpeg, .png"
self.fields["resume"].widget.attrs["accept"] = ".pdf"
if recruitment.optional_profile_image:
self.fields["profile"].required = False
if recruitment.optional_resume:
self.fields["resume"].required = False
self.fields["gender"].empty_label = None
self.fields["job_position_id"].empty_label = None
self.fields["stage_id"].empty_label = None
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class StageDropDownForm(DropDownForm):
"""
Form for Stage model
"""
class Meta:
"""
Meta class to add the additional info
"""
model = Stage
fields = "__all__"
exclude = ["sequence", "is_active"]
labels = {
"stage": _("Stage"),
}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
stage = Stage.objects.last()
if stage is not None and stage.sequence is not None:
self.instance.sequence = stage.sequence + 1
else:
self.instance.sequence = 1
class MultipleFileInput(forms.ClearableFileInput):
allow_multiple_selected = True
class MultipleFileField(forms.FileField):
def __init__(self, *args, **kwargs):
kwargs.setdefault("widget", MultipleFileInput())
super().__init__(*args, **kwargs)
def clean(self, data, initial=None):
single_file_clean = super().clean
if isinstance(data, (list, tuple)):
result = [single_file_clean(d, initial) for d in data]
else:
result = [
single_file_clean(data, initial),
]
return result[0] if result else []
class StageNoteForm(ModelForm):
"""
Form for StageNote model
"""
class Meta:
"""
Meta class to add the additional info
"""
model = StageNote
# exclude = (
# "updated_by",
# "stage_id",
# )
fields = ["description"]
exclude = ["is_active"]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# field = self.fields["candidate_id"]
# field.widget = field.hidden_widget()
self.fields["stage_files"] = MultipleFileField(label="files")
self.fields["stage_files"].required = False
def save(self, commit: bool = ...) -> Any:
attachment = []
multiple_attachment_ids = []
attachments = None
if self.files.getlist("stage_files"):
attachments = self.files.getlist("stage_files")
self.instance.attachement = attachments[0]
multiple_attachment_ids = []
for attachment in attachments:
file_instance = StageFiles()
file_instance.files = attachment
file_instance.save()
multiple_attachment_ids.append(file_instance.pk)
instance = super().save(commit)
if commit:
instance.stage_files.add(*multiple_attachment_ids)
return instance, multiple_attachment_ids
class StageNoteUpdateForm(ModelForm):
class Meta:
"""
Meta class to add the additional info
"""
model = StageNote
exclude = ["updated_by", "stage_id", "stage_files", "is_active"]
fields = "__all__"
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
field = self.fields["candidate_id"]
field.widget = field.hidden_widget()
class QuestionForm(ModelForm):
"""
QuestionForm
"""
verbose_name = "Survey Questions"
recruitment = forms.ModelMultipleChoiceField(
queryset=Recruitment.objects.filter(is_active=True),
required=False,
label=_("Recruitment"),
)
options = forms.CharField(
widget=forms.TextInput, label=_("Options"), required=False
)
class Meta:
"""
Class Meta for additional options
"""
model = RecruitmentSurvey
fields = "__all__"
exclude = ["recruitment_ids", "job_position_ids", "is_active", "options"]
labels = {
"question": _("Question"),
"sequence": _("Sequence"),
"type": _("Type"),
"options": _("Options"),
"is_mandatory": _("Is Mandatory"),
}
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string(
"survey/question_template_organized_form.html", context
)
return table_html
def clean(self):
cleaned_data = super().clean()
recruitment = self.cleaned_data["recruitment"]
question_type = self.cleaned_data["type"]
options = self.cleaned_data.get("options")
if not recruitment.exists(): # or jobs.exists()):
raise ValidationError(
{"recruitment": _("Choose any recruitment to apply this question")}
)
self.recruitment = recruitment
if question_type in ["options", "multiple"] and (
options is None or options == ""
):
raise ValidationError({"options": "Options field is required"})
return cleaned_data
def save(self, commit=True):
instance = super().save(commit=False)
if instance.type in ["options", "multiple"]:
additional_options = []
for key, value in self.cleaned_data.items():
if key.startswith("options") and value:
additional_options.append(value)
instance.options = ", ".join(additional_options)
if commit:
instance.save()
self.save_m2m()
else:
instance.options = ""
return instance
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
instance = kwargs.get("instance", None)
self.option_count = 1
def create_options_field(option_key, initial=None):
self.fields[option_key] = forms.CharField(
widget=forms.TextInput(
attrs={
"name": option_key,
"id": f"id_{option_key}",
"class": "oh-input w-100",
}
),
label=_("Options"),
required=False,
initial=initial,
)
if instance:
split_options = instance.options.split(",")
for i, option in enumerate(split_options):
if i == 0:
create_options_field("options", option)
else:
self.option_count += 1
create_options_field(f"options{i}", option)
if instance:
self.fields["recruitment"].initial = instance.recruitment_ids.all()
self.fields["type"].widget.attrs.update(
{"class": " w-100", "style": "border:solid 1px #6c757d52;height:50px;"}
)
for key, value in self.data.items():
if key.startswith("options"):
self.option_count += 1
create_options_field(key, initial=value)
fields_order = list(self.fields.keys())
fields_order.remove("recruitment")
fields_order.insert(2, "recruitment")
self.fields = {field: self.fields[field] for field in fields_order}
class SurveyForm(forms.Form):
"""
SurveyTemplateForm
"""
def __init__(self, recruitment, *args, **kwargs) -> None:
super().__init__(recruitment, *args, **kwargs)
questions = recruitment.recruitmentsurvey_set.all()
all_questions = RecruitmentSurvey.objects.none() | questions
for template in recruitment.survey_templates.all():
questions = template.recruitmentsurvey_set.all()
all_questions = all_questions | questions
context = {"form": self, "questions": all_questions.distinct()}
form = render_to_string("survey_form.html", context)
self.form = form
return
# for question in questions:
# self
class SurveyPreviewForm(forms.Form):
"""
SurveyTemplateForm
"""
def __init__(self, template, *args, **kwargs) -> None:
super().__init__(template, *args, **kwargs)
all_questions = RecruitmentSurvey.objects.filter(template_id__in=[template])
context = {"form": self, "questions": all_questions.distinct()}
form = render_to_string("survey_preview_form.html", context)
self.form = form
return
# for question in questions:
# self
class TemplateForm(BaseModelForm):
"""
TemplateForm
"""
class Meta:
model = SurveyTemplate
fields = "__all__"
exclude = ["is_active"]
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class AddQuestionForm(Form):
"""
AddQuestionForm
"""
verbose_name = "Add Question"
question_ids = forms.ModelMultipleChoiceField(
queryset=RecruitmentSurvey.objects.all(), label="Questions"
)
template_ids = forms.ModelMultipleChoiceField(
queryset=SurveyTemplate.objects.all(), label="Templates"
)
def save(self):
"""
Manual save/adding of questions to the templates
"""
for question in self.cleaned_data["question_ids"]:
question.template_id.add(*self.data["template_ids"])
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
exclude_fields = [
"id",
"profile",
"portfolio",
"resume",
"sequence",
"schedule_date",
"created_at",
"created_by",
"modified_by",
"is_active",
"last_updated",
"horilla_history",
]
class CandidateExportForm(forms.Form):
model_fields = Candidate._meta.get_fields()
field_choices = [
(field.name, field.verbose_name.capitalize())
for field in model_fields
if hasattr(field, "verbose_name") and field.name not in exclude_fields
]
field_choices = field_choices + [
("rejected_candidate__description", "Rejected Description"),
]
selected_fields = forms.MultipleChoiceField(
choices=field_choices,
widget=forms.CheckboxSelectMultiple,
initial=[
"name",
"recruitment_id",
"job_position_id",
"stage_id",
"email",
"mobile",
"hired",
"joining_date",
],
)
class SkillZoneCreateForm(BaseModelForm):
class Meta:
"""
Class Meta for additional options
"""
model = SkillZone
fields = "__all__"
exclude = ["is_active"]
class SkillZoneCandidateForm(BaseModelForm):
verbose_name = _("Skill Zone Candidate")
candidate_id = forms.ModelMultipleChoiceField(
queryset=Candidate.objects.all(),
widget=forms.SelectMultiple,
label=_("Candidate"),
)
class Meta:
"""
Class Meta for additional options
"""
model = SkillZoneCandidate
fields = "__all__"
exclude = [
"added_on",
"is_active",
]
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
def clean_candidate_id(self):
selected_candidates = self.cleaned_data["candidate_id"]
# Ensure all selected candidates are instances of the Candidate model
for candidate in selected_candidates:
if not isinstance(candidate, Candidate):
raise forms.ValidationError("Invalid candidate selected.")
return selected_candidates.first()
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.fields["candidate_id"].empty_label = None
if self.instance.pk:
self.verbose_name = (
self.instance.candidate_id.name
+ " / "
+ self.instance.skill_zone_id.title
)
def save(self, commit: bool = True) -> SkillZoneCandidate:
if not self.instance.pk:
candidates = Candidate.objects.filter(
id__in=list((self.data.getlist("candidate_id")))
)
skill_zone = self.cleaned_data["skill_zone_id"]
reason = self.cleaned_data["reason"]
for candidate in candidates:
zone_cand = SkillZoneCandidate()
zone_cand.skill_zone_id = skill_zone
zone_cand.candidate_id = candidate
zone_cand.reason = reason
zone_cand.save()
else:
instance = super().save()
return self.instance
class ToSkillZoneForm(BaseModelForm):
verbose_name = _("Add To Skill Zone")
skill_zone_ids = forms.ModelMultipleChoiceField(
queryset=SkillZone.objects.all(), label=_("Skill Zones")
)
class Meta:
"""
Class Meta for additional options
"""
model = SkillZoneCandidate
fields = "__all__"
exclude = [
"skill_zone_id",
"is_active",
"candidate_id",
]
error_messages = {
NON_FIELD_ERRORS: {
"unique_together": "This candidate alreay exist in this skill zone",
}
}
def clean(self):
cleaned_data = super().clean()
candidate = cleaned_data.get("candidate_id")
skill_zones = cleaned_data.get("skill_zone_ids")
skill_zone_list = []
for skill_zone in skill_zones:
# Check for the unique together constraint manually
if SkillZoneCandidate.objects.filter(
candidate_id=candidate, skill_zone_id=skill_zone
).exists():
# Raise a ValidationError with a custom error message
skill_zone_list.append(skill_zone)
if len(skill_zone_list) > 0:
skill_zones_str = ", ".join(
str(skill_zone) for skill_zone in skill_zone_list
)
raise ValidationError(f"{candidate} already exists in {skill_zones_str}.")
# cleaned_data['skill_zone_id'] =skill_zone
return cleaned_data
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class RejectReasonForm(ModelForm):
"""
RejectReasonForm
"""
verbose_name = "Reject Reason"
class Meta:
model = RejectReason
fields = "__all__"
exclude = ["is_active"]
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class RejectedCandidateForm(ModelForm):
"""
RejectedCandidateForm
"""
verbose_name = "Rejected Candidate"
class Meta:
model = RejectedCandidate
fields = "__all__"
exclude = ["is_active"]
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["reject_reason_id"].empty_label = None
self.fields["candidate_id"].widget = self.fields["candidate_id"].hidden_widget()
class ScheduleInterviewForm(BaseModelForm):
"""
ScheduleInterviewForm
"""
class Meta:
model = InterviewSchedule
fields = "__all__"
exclude = ["is_active"]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["interview_time"].widget = forms.TimeInput(
attrs={"type": "time", "class": "oh-input w-100"}
)
def clean(self):
instance = self.instance
cleaned_data = super().clean()
interview_date = cleaned_data.get("interview_date")
interview_time = cleaned_data.get("interview_time")
managers = cleaned_data["employee_id"]
if not instance.pk and interview_date and interview_date < date.today():
self.add_error("interview_date", _("Interview date cannot be in the past."))
if not instance.pk and interview_time:
now = datetime.now().time()
if (
not instance.pk
and interview_date == date.today()
and interview_time < now
):
self.add_error(
"interview_time", _("Interview time cannot be in the past.")
)
if apps.is_installed("leave"):
from leave.models import LeaveRequest
leave_employees = LeaveRequest.objects.filter(
employee_id__in=managers, status="approved"
)
else:
leave_employees = []
employees = [
leave.employee_id.get_full_name()
for leave in leave_employees
if interview_date in leave.requested_dates()
]
if employees:
self.add_error(
"employee_id", _(f"{employees} have approved leave on this date")
)
return cleaned_data
def as_p(self, *args, **kwargs):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class SkillsForm(ModelForm):
class Meta:
model = Skill
fields = ["title"]
class ResumeForm(ModelForm):
class Meta:
model = Resume
fields = ["file", "recruitment_id"]
widgets = {"recruitment_id": forms.HiddenInput()}
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["file"].widget.attrs.update(
{
"onchange": "submitForm($(this))",
}
)
class CandidateDocumentRequestForm(ModelForm):
class Meta:
model = CandidateDocumentRequest
fields = "__all__"
exclude = ["is_active"]
class CandidateDocumentUpdateForm(ModelForm):
"""form to Update a Document"""
verbose_name = "CandidateDocument"
class Meta:
model = CandidateDocument
fields = "__all__"
exclude = ["is_active", "document_request_id"]
class CandidateDocumentRejectForm(ModelForm):
"""form to add rejection reason while rejecting a Document"""
class Meta:
model = CandidateDocument
fields = ["reject_reason"]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["reject_reason"].widget.attrs["required"] = True
class CandidateDocumentForm(ModelForm):
"""form to create a new Document"""
verbose_name = "Document"
class Meta:
model = CandidateDocument
fields = "__all__"
exclude = ["document_request_id", "status", "reject_reason", "is_active"]
widgets = {
"employee_id": forms.HiddenInput(),
}
def as_p(self):
"""
Render the form fields as HTML table rows with Bootstrap styling.
"""
context = {"form": self}
table_html = render_to_string("common_form.html", context)
return table_html
class LinkedInAccountForm(BaseModelForm):
"""
LinkedInAccount form
"""
class Meta:
model = LinkedInAccount
fields = [
"username",
"email",
"api_token",
"is_active",
"company_id",
]