forked from verdnatura/salix-front
Correcciones solicitadas
This commit is contained in:
parent
083094b25d
commit
bd8acbe084
|
@ -102,8 +102,7 @@ const tableColumnComponents = {
|
|||
},
|
||||
};
|
||||
|
||||
const columns = computed(() => {
|
||||
return [
|
||||
const columns = computed(() => [
|
||||
{
|
||||
align: 'left',
|
||||
field: 'clientName',
|
||||
|
@ -170,8 +169,7 @@ const columns = computed(() => {
|
|||
label: t('From'),
|
||||
name: 'from',
|
||||
},
|
||||
];
|
||||
});
|
||||
]);
|
||||
|
||||
const selectCustomerId = (id) => {
|
||||
workerId.value = 0;
|
||||
|
|
|
@ -262,8 +262,7 @@ const tableColumnComponents = {
|
|||
},
|
||||
};
|
||||
|
||||
const columns = computed(() => {
|
||||
return [
|
||||
const columns = computed(() => [
|
||||
{
|
||||
align: 'left',
|
||||
field: '',
|
||||
|
@ -469,8 +468,7 @@ const columns = computed(() => {
|
|||
label: '',
|
||||
name: 'actions',
|
||||
},
|
||||
];
|
||||
});
|
||||
]);
|
||||
|
||||
const stopEventPropagation = (event, col) => {
|
||||
if (!['id', 'salesPersonFk'].includes(col.name)) return;
|
||||
|
|
|
@ -57,8 +57,7 @@ const tableColumnComponents = {
|
|||
},
|
||||
};
|
||||
|
||||
const columns = computed(() => {
|
||||
return [
|
||||
const columns = computed(() => [
|
||||
{
|
||||
align: 'left',
|
||||
field: 'id',
|
||||
|
@ -89,8 +88,7 @@ const columns = computed(() => {
|
|||
label: t('Email'),
|
||||
name: 'email',
|
||||
},
|
||||
];
|
||||
});
|
||||
]);
|
||||
|
||||
const selectCustomerId = (id) => {
|
||||
selectedCustomerId.value = id;
|
||||
|
|
|
@ -49,8 +49,7 @@ const tableColumnComponents = {
|
|||
},
|
||||
};
|
||||
|
||||
const columns = computed(() => {
|
||||
return [
|
||||
const columns = computed(() => [
|
||||
{ label: 'Id', field: 'clientId', name: 'clientId', align: 'left' },
|
||||
{
|
||||
label: t('invoiceOut.globalInvoices.table.client'),
|
||||
|
@ -71,8 +70,7 @@ const columns = computed(() => {
|
|||
align: 'left',
|
||||
},
|
||||
{ label: 'Error', field: 'message', name: 'message', align: 'left' },
|
||||
];
|
||||
});
|
||||
]);
|
||||
|
||||
const rows = computed(() => {
|
||||
if (!errors && !errors.length > 0) return [];
|
||||
|
|
|
@ -103,8 +103,7 @@ const tableColumnComponents = {
|
|||
},
|
||||
};
|
||||
|
||||
const columns = computed(() => {
|
||||
return [
|
||||
const columns = computed(() => [
|
||||
{
|
||||
label: 'id',
|
||||
field: 'id',
|
||||
|
@ -206,8 +205,7 @@ const columns = computed(() => {
|
|||
format: (value) => toDate(value.substring(0, 10)),
|
||||
showValue: true,
|
||||
},
|
||||
];
|
||||
});
|
||||
]);
|
||||
|
||||
async function getData() {
|
||||
await arrayData.fetch({ append: false });
|
||||
|
|
Loading…
Reference in New Issue