#7524 add my team filter #849

Merged
jgallego merged 3 commits from 7524-hotfix-myTeamFilter into master 2024-10-22 12:00:04 +00:00
3 changed files with 14 additions and 5 deletions
Showing only changes of commit 0fbd5f45e1 - Show all commits

View File

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

View File

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

View File

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