feat: change columns order
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
e6f6577fc1
commit
fa755bf608
|
@ -79,6 +79,22 @@ const columns = computed(() => [
|
||||||
format: (row) => toDate(row.issued),
|
format: (row) => toDate(row.issued),
|
||||||
columnField: { component: null },
|
columnField: { component: null },
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'created',
|
||||||
|
label: t('globals.created'),
|
||||||
|
component: 'date',
|
||||||
|
columnField: { component: null },
|
||||||
|
format: (row) => toDate(row.created),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'dued',
|
||||||
|
label: t('invoiceOut.summary.expirationDate'),
|
||||||
|
component: 'date',
|
||||||
|
columnField: { component: null },
|
||||||
|
format: (row) => toDate(row.dued),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'clientFk',
|
name: 'clientFk',
|
||||||
|
@ -118,22 +134,6 @@ const columns = computed(() => [
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
format: (row) => toCurrency(row.amount),
|
format: (row) => toCurrency(row.amount),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
name: 'created',
|
|
||||||
label: t('globals.created'),
|
|
||||||
component: 'date',
|
|
||||||
columnField: { component: null },
|
|
||||||
format: (row) => toDate(row.created),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
name: 'dued',
|
|
||||||
label: t('invoiceOut.summary.dued'),
|
|
||||||
component: 'date',
|
|
||||||
columnField: { component: null },
|
|
||||||
format: (row) => toDate(row.dued),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
name: 'customsAgentFk',
|
name: 'customsAgentFk',
|
||||||
|
|
Loading…
Reference in New Issue