diff --git a/src/pages/Customer/Card/CustomerSummary.vue b/src/pages/Customer/Card/CustomerSummary.vue index 167926698..af7231d6f 100644 --- a/src/pages/Customer/Card/CustomerSummary.vue +++ b/src/pages/Customer/Card/CustomerSummary.vue @@ -181,7 +181,7 @@ const sumRisk = ({ clientRisks }) => { [ inWhere: true, }, }, + { + align: 'left', + name: 'issued', + label: t('invoiceOut.summary.issued'), + component: 'date', + format: (row) => toDate(row.issued), + 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', name: 'clientFk', @@ -132,22 +156,6 @@ const columns = computed(() => [ cardVisible: true, 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', name: 'customsAgentFk',