-- {{ "NONE" | translate }} --
@for (user of userStore.users(); track user) {
{{ user.firstName }} {{ user.lastName }}
}
@if(complaintInvestigationForm.get('investigatorId')?.touched &&
complaintInvestigationForm.get('investigatorId')?.errors){
@if(complaintInvestigationForm.get('investigatorId')?.errors?.['required']){
{{'INVESTIGATOR_USER_IS_REQUIRED' | translate}}
}
}
-- {{ "NONE" | translate }} --
@for (status of statusList; track status) {
{{ status.name | translate }}
}
@if(complaintInvestigationForm.get('status')?.touched &&
complaintInvestigationForm.get('status')?.errors){
@if(complaintInvestigationForm.get('status')?.errors?.['required']){
{{'INVESTIGATION_STATUS_IS_REQUIRED' | translate}}
}
}
@if(complaintInvestigationForm.get('investigationDate')?.touched &&
complaintInvestigationForm.get('investigationDate')?.errors){
@if(complaintInvestigationForm.get('investigationDate')?.errors?.['required']){
{{'INVESTIGATION_DATE_IS_REQUIRED' | translate}}
}
}
@if(complaintInvestigationForm.get('findings')?.touched &&
complaintInvestigationForm.get('findings')?.errors){
@if(complaintInvestigationForm.get('findings')?.errors?.['required']){
{{'FINDINGS_IS_REQUIRED' | translate}}
}
}
@if(complaintInvestigationForm.get('recommendations')?.touched &&
complaintInvestigationForm.get('recommendations')?.errors){
@if(complaintInvestigationForm.get('recommendations')?.errors?.['required']){
{{'RECOMMENDATION_IS_REQUIRED' | translate}}
}
}
{{'ACTION_REQUIRED' | translate}}