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