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',
|
||||
name: 'nickname',
|
||||
label: t('ticketList.nickname'),
|
||||
columnClass: 'expand',
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
name: 'addressNickname',
|
||||
label: t('ticketList.addressNickname'),
|
||||
columnClass: 'expand',
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
|
@ -543,6 +550,12 @@ function setReference(data) {
|
|||
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||
</span>
|
||||
</template>
|
||||
<template #column-addressNickname="{ row }">
|
||||
<span class="link" @click.stop>
|
||||
{{ row.addressNickname }}
|
||||
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||
</span>
|
||||
</template>
|
||||
<template #column-stateFk="{ row }">
|
||||
<span v-if="getColor(row)">
|
||||
<QChip :class="getColor(row)" dense square>
|
||||
|
|
|
@ -238,7 +238,7 @@ package:
|
|||
removePackage: Remove package
|
||||
ticketList:
|
||||
id: Id
|
||||
nickname: Nickname
|
||||
nickname: Ticket nickname
|
||||
state: State
|
||||
shipped: Shipped
|
||||
zone: Zone
|
||||
|
@ -269,3 +269,4 @@ ticketList:
|
|||
hour: Hour
|
||||
closure: Closure
|
||||
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
|
||||
ticketList:
|
||||
id: Id
|
||||
nickname: Alias
|
||||
nickname: Alias ticket
|
||||
state: Estado
|
||||
shipped: F. Envío
|
||||
zone: Zona
|
||||
|
@ -272,3 +272,4 @@ ticketList:
|
|||
hour: Hora
|
||||
closure: Cierre
|
||||
toLines: Ir a lineas
|
||||
addressNickname: Alias consignatario
|
||||
|
|
Loading…
Reference in New Issue