feat: refs #7936 add dueDated field
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
4ec78aa1c0
commit
e075e13076
|
@ -28,6 +28,12 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
|||
const tableRef = ref();
|
||||
const companies = ref([]);
|
||||
const cols = computed(() => [
|
||||
{
|
||||
align: 'left',
|
||||
name: 'isBooked',
|
||||
label: t('InvoiceIn.isBooked'),
|
||||
columnFilter: false,
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
name: 'id',
|
||||
|
@ -68,9 +74,13 @@ const cols = computed(() => [
|
|||
},
|
||||
{
|
||||
align: 'left',
|
||||
name: 'isBooked',
|
||||
label: t('InvoiceIn.isBooked'),
|
||||
columnFilter: false,
|
||||
label: t('InvoiceIn.list.dueDated'),
|
||||
name: 'dueDated',
|
||||
component: null,
|
||||
columnFilter: {
|
||||
component: 'date',
|
||||
},
|
||||
format: (row, dashIfEmpty) => dashIfEmpty(toDate(row.dueDated)),
|
||||
},
|
||||
{
|
||||
align: 'left',
|
||||
|
|
|
@ -7,6 +7,7 @@ InvoiceIn:
|
|||
supplierRef: Supplier ref.
|
||||
file: File
|
||||
issued: Issued
|
||||
dueDated: Due dated
|
||||
awb: AWB
|
||||
amount: Amount
|
||||
descriptor:
|
||||
|
|
|
@ -5,9 +5,9 @@ InvoiceIn:
|
|||
ref: Referencia
|
||||
supplier: Proveedor
|
||||
supplierRef: Ref. proveedor
|
||||
shortIssued: F. emisión
|
||||
issued: F. emisión
|
||||
dueDated: F. vencimiento
|
||||
file: Fichero
|
||||
issued: Fecha emisión
|
||||
awb: AWB
|
||||
amount: Importe
|
||||
descriptor:
|
||||
|
|
Loading…
Reference in New Issue