forked from verdnatura/salix-front
feat: refs #7553 added new field in list and translations
This commit is contained in:
parent
07cd9d5aae
commit
34f70d026e
|
@ -122,6 +122,13 @@ const columns = computed(() => [
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'nickname',
|
name: 'nickname',
|
||||||
label: t('ticketList.nickname'),
|
label: t('ticketList.nickname'),
|
||||||
|
columnClass: 'expand',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'addressNickname',
|
||||||
|
label: t('ticketList.addressNickname'),
|
||||||
|
columnClass: 'expand',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
|
@ -543,6 +550,12 @@ function setReference(data) {
|
||||||
<CustomerDescriptorProxy :id="row.clientFk" />
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #column-addressNickname="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.addressNickname }}
|
||||||
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
<template #column-stateFk="{ row }">
|
<template #column-stateFk="{ row }">
|
||||||
<span v-if="getColor(row)">
|
<span v-if="getColor(row)">
|
||||||
<QChip :class="getColor(row)" dense square>
|
<QChip :class="getColor(row)" dense square>
|
||||||
|
|
|
@ -238,7 +238,7 @@ package:
|
||||||
removePackage: Remove package
|
removePackage: Remove package
|
||||||
ticketList:
|
ticketList:
|
||||||
id: Id
|
id: Id
|
||||||
nickname: Nickname
|
nickname: Ticket nickname
|
||||||
state: State
|
state: State
|
||||||
shipped: Shipped
|
shipped: Shipped
|
||||||
zone: Zone
|
zone: Zone
|
||||||
|
@ -269,3 +269,4 @@ ticketList:
|
||||||
hour: Hour
|
hour: Hour
|
||||||
closure: Closure
|
closure: Closure
|
||||||
toLines: Go to lines
|
toLines: Go to lines
|
||||||
|
addressNickname: Address nickname
|
||||||
|
|
|
@ -241,7 +241,7 @@ You can search by ticket id or alias: Puedes buscar por id o alias del ticket
|
||||||
Select lines to see the options: Selecciona líneas para ver las opciones
|
Select lines to see the options: Selecciona líneas para ver las opciones
|
||||||
ticketList:
|
ticketList:
|
||||||
id: Id
|
id: Id
|
||||||
nickname: Alias
|
nickname: Alias ticket
|
||||||
state: Estado
|
state: Estado
|
||||||
shipped: F. Envío
|
shipped: F. Envío
|
||||||
zone: Zona
|
zone: Zona
|
||||||
|
@ -272,3 +272,4 @@ ticketList:
|
||||||
hour: Hora
|
hour: Hora
|
||||||
closure: Cierre
|
closure: Cierre
|
||||||
toLines: Ir a lineas
|
toLines: Ir a lineas
|
||||||
|
addressNickname: Alias consignatario
|
||||||
|
|
Loading…
Reference in New Issue