Changed Date Type in contracts
AAdded Sign Date and SEPA Date
This commit is contained in:
@@ -43,6 +43,8 @@ import driver from "~/components/columnRenderings/driver.vue"
|
||||
import quantity from "~/components/helpRenderings/quantity.vue"
|
||||
import {useZipCheck} from "~/composables/useZipCheck.js";
|
||||
import {useFunctions} from "~/composables/useFunctions.js";
|
||||
import signDate from "~/components/columnRenderings/signDate.vue";
|
||||
import sepaDate from "~/components/columnRenderings/sepaDate.vue";
|
||||
|
||||
// @ts-ignore
|
||||
export const useDataStore = defineStore('data', () => {
|
||||
@@ -515,22 +517,26 @@ export const useDataStore = defineStore('data', () => {
|
||||
key: 'startDate',
|
||||
label: "Vertragsstart",
|
||||
inputType: "date",
|
||||
inputColumn: "Allgemeines"
|
||||
inputColumn: "Allgemeines",
|
||||
component: startDate
|
||||
},{
|
||||
key: 'endDate',
|
||||
label: "Vertragsende",
|
||||
inputType: "date",
|
||||
inputColumn: "Allgemeines"
|
||||
inputColumn: "Allgemeines",
|
||||
component: endDate
|
||||
},{
|
||||
key: 'signDate',
|
||||
label: "Unterschrieben am",
|
||||
inputType: "date",
|
||||
inputColumn: "Allgemeines"
|
||||
inputColumn: "Allgemeines",
|
||||
component: signDate
|
||||
},{
|
||||
key: 'sepaDate',
|
||||
label: "SEPA Datum",
|
||||
inputType: "date",
|
||||
inputColumn: "Abrechnung"
|
||||
inputColumn: "Abrechnung",
|
||||
component: sepaDate
|
||||
},{
|
||||
key: 'sepaRef',
|
||||
label: "Mandatsreferenz",
|
||||
|
||||
Reference in New Issue
Block a user