forked from verdnatura/salix-front
Add translation
This commit is contained in:
parent
a65db2f4cf
commit
612fe9d605
|
@ -596,6 +596,11 @@ export default {
|
||||||
items: 'Items',
|
items: 'Items',
|
||||||
orderTicketList: 'Order Ticket List',
|
orderTicketList: 'Order Ticket List',
|
||||||
details: 'Details',
|
details: 'Details',
|
||||||
|
item: 'Item',
|
||||||
|
description: 'Description',
|
||||||
|
quantity: 'Quantity',
|
||||||
|
price: 'Price',
|
||||||
|
amount: 'Amount'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
worker: {
|
worker: {
|
||||||
|
|
|
@ -457,6 +457,61 @@ export default {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
order: {
|
||||||
|
pageTitles: {
|
||||||
|
order: 'Cesta',
|
||||||
|
orderList: 'Listado',
|
||||||
|
create: 'Crear',
|
||||||
|
summary: 'Resumen',
|
||||||
|
basicData: 'Datos básicos',
|
||||||
|
catalog: 'Catálogo',
|
||||||
|
},
|
||||||
|
field: {
|
||||||
|
salesPersonFk: 'Comercial',
|
||||||
|
clientFk: 'Cliente',
|
||||||
|
isConfirmed: 'Confirmada',
|
||||||
|
created: 'Creado',
|
||||||
|
landed: 'F. entrega',
|
||||||
|
hour: 'Hora',
|
||||||
|
agency: 'Agencia',
|
||||||
|
total: 'Total'
|
||||||
|
},
|
||||||
|
form: {
|
||||||
|
clientFk: 'Cliente',
|
||||||
|
addressFk: 'Dirección',
|
||||||
|
landed: 'F. entrega',
|
||||||
|
agencyModeFk: 'Agencia',
|
||||||
|
},
|
||||||
|
list: {
|
||||||
|
newOrder: 'Nuevo Pedido'
|
||||||
|
},
|
||||||
|
summary: {
|
||||||
|
basket: 'Cesta',
|
||||||
|
nickname: 'Alias',
|
||||||
|
company: 'Empresa',
|
||||||
|
confirmed: 'Confirmada',
|
||||||
|
notConfirmed: 'No confirmada',
|
||||||
|
created: 'Creado',
|
||||||
|
landed: 'F. entrega',
|
||||||
|
phone: 'Teléfono',
|
||||||
|
createdFrom: 'Creado desde',
|
||||||
|
address: 'Dirección',
|
||||||
|
notes: 'Notas',
|
||||||
|
subtotal: 'Subtotal',
|
||||||
|
total: 'Total',
|
||||||
|
vat: 'IVA',
|
||||||
|
state: 'Estado',
|
||||||
|
alias: 'Alias',
|
||||||
|
items: 'Items',
|
||||||
|
orderTicketList: 'Tickets del pedido',
|
||||||
|
details: 'Detalles',
|
||||||
|
item: 'Item',
|
||||||
|
description: 'Descripción',
|
||||||
|
quantity: 'Cantidad',
|
||||||
|
price: 'Precio',
|
||||||
|
amount: 'Monto'
|
||||||
|
}
|
||||||
|
},
|
||||||
shelving: {
|
shelving: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
shelving: 'Carros',
|
shelving: 'Carros',
|
||||||
|
|
|
@ -24,28 +24,28 @@ const entityId = computed(() => $props.id || route.params.id);
|
||||||
const detailsColumns = ref([
|
const detailsColumns = ref([
|
||||||
{
|
{
|
||||||
name: 'item',
|
name: 'item',
|
||||||
label: t('claim.summary.item'),
|
label: t('order.summary.item'),
|
||||||
field: (row) => row?.item?.id,
|
field: (row) => row?.item?.id,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'description',
|
name: t('order.summary.description'),
|
||||||
label: t('claim.summary.description'),
|
label: t('order.summary.description'),
|
||||||
field: (row) => row?.item?.name,
|
field: (row) => row?.item?.name,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'quantity',
|
name: t('order.summary.quantity'),
|
||||||
label: t('claim.summary.description'),
|
label: t('order.summary.quantity'),
|
||||||
field: (row) => row?.quantity,
|
field: (row) => row?.quantity,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'price',
|
name: t('order.summary.price'),
|
||||||
label: t('claim.summary.description'),
|
label: t('order.summary.price'),
|
||||||
field: (row) => toCurrency(row?.price),
|
field: (row) => toCurrency(row?.price),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'amount',
|
name: t('order.summary.amount'),
|
||||||
label: t('claim.summary.description'),
|
label: t('order.summary.amount'),
|
||||||
field: (row) => toCurrency(row?.quantity * row?.price),
|
field: (row) => toCurrency(row?.quantity * row?.price),
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Reference in New Issue