8315-devToTest #1094
|
@ -43,7 +43,6 @@ const getLocale = (label) => {
|
||||||
(groupedStates = data.map((x) => Object.assign(x, { code: t(x.code) })))
|
(groupedStates = data.map((x) => Object.assign(x, { code: t(x.code) })))
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
<FetchData url="departments" auto-load />
|
|
||||||
<VnFilterPanel
|
<VnFilterPanel
|
||||||
:data-key="dataKey"
|
:data-key="dataKey"
|
||||||
:search-button="true"
|
:search-button="true"
|
||||||
|
@ -211,6 +210,18 @@ const getLocale = (label) => {
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
<QItem>
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelect
|
||||||
|
outlined
|
||||||
|
dense
|
||||||
|
rounded
|
||||||
|
:label="t('globals.params.departmentFk')"
|
||||||
|
v-model="params.department"
|
||||||
|
url="Departments"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
|
|
|
@ -48,6 +48,7 @@ function exprBuilder(param, value) {
|
||||||
case 'nickname':
|
case 'nickname':
|
||||||
return { [`t.nickname`]: { like: `%${value}%` } };
|
return { [`t.nickname`]: { like: `%${value}%` } };
|
||||||
case 'zoneFk':
|
case 'zoneFk':
|
||||||
|
case 'departmentId':
|
||||||
case 'totalWithVat':
|
case 'totalWithVat':
|
||||||
return { [`t.${param}`]: value };
|
return { [`t.${param}`]: value };
|
||||||
}
|
}
|
||||||
|
@ -222,6 +223,26 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: t('salesTicketsTable.department'),
|
||||||
|
name: 'department',
|
||||||
|
align: 'left',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Departments',
|
||||||
|
optionValue: 'name',
|
||||||
|
optionLabel: 'name',
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
url: 'Departments',
|
||||||
|
attrs: {
|
||||||
|
optionValue: 'name',
|
||||||
|
optionLabel: 'name',
|
||||||
|
dense: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
align: 'right',
|
||||||
name: 'tableActions',
|
name: 'tableActions',
|
||||||
|
|
|
@ -43,6 +43,7 @@ salesTicketsTable:
|
||||||
total: Total
|
total: Total
|
||||||
preparation: Preparation
|
preparation: Preparation
|
||||||
payMethod: Pay method
|
payMethod: Pay method
|
||||||
|
department: Department
|
||||||
searchBar:
|
searchBar:
|
||||||
label: Search tickets
|
label: Search tickets
|
||||||
info: Search tickets by id or alias
|
info: Search tickets by id or alias
|
||||||
|
|
|
@ -43,6 +43,7 @@ salesTicketsTable:
|
||||||
total: Total
|
total: Total
|
||||||
preparation: Preparación
|
preparation: Preparación
|
||||||
payMethod: Método de pago
|
payMethod: Método de pago
|
||||||
|
department: Departamento
|
||||||
searchBar:
|
searchBar:
|
||||||
label: Buscar tickets
|
label: Buscar tickets
|
||||||
info: Buscar tickets por identificador o alias
|
info: Buscar tickets por identificador o alias
|
||||||
|
|
Loading…
Reference in New Issue