Changed Date Type in contracts

AAdded Sign Date and SEPA Date
This commit is contained in:
2025-03-27 15:25:17 +01:00
parent b33ad857b1
commit c019b2608c
3 changed files with 40 additions and 4 deletions

View File

@@ -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",