fix: refs #7524 select department
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-10-21 14:29:29 +02:00
parent a4358ec0ed
commit 0fbd5f45e1
3 changed files with 14 additions and 5 deletions

View File

@ -297,6 +297,7 @@ globals:
To: To
stateFk: State
myTeam: My team
departmentFk: Department
errors:
statusUnauthorized: Access denied
statusInternalServerError: An internal server error has ocurred

View File

@ -301,6 +301,7 @@ globals:
To: Hasta
stateFk: Estado
myTeam: Mi equipo
departmentFk: Departamento
errors:
statusUnauthorized: Acceso denegado
statusInternalServerError: Ha ocurrido un error interno del servidor

View File

@ -129,11 +129,18 @@ onMounted(async () => await getItemPackingTypes());
toggle-indeterminate
@update:model-value="searchFn()"
/>
<QCheckbox
:label="t('globals.params.myTeam')"
v-model="params.myTeam"
toggle-indeterminate
@update:model-value="searchFn()"
</QItemSection>
</QItem>
<QItem>
<QItemSection>
<VnSelect
:label="t('globals.params.departmentFk')"
v-model="params.departmentFk"
url="Departments"
:fields="['id', 'name']"
dense
outlined
rounded
/>
</QItemSection>
</QItem>