Restructured Workingtimes without date to start and end
Added Page to Edit Workingtimes
This commit is contained in:
189
imports/specht/addDates.js
Normal file
189
imports/specht/addDates.js
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
|
||||||
|
const csv = require("csv-parser")
|
||||||
|
const fs = require("fs")
|
||||||
|
const path = require("path")
|
||||||
|
const {createClient} = require("@supabase/supabase-js")
|
||||||
|
const dayjs = require("dayjs")
|
||||||
|
const customParseFormat = require('dayjs/plugin/customParseFormat')
|
||||||
|
dayjs.extend(customParseFormat)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const supabase = createClient("https://uwppvcxflrcsibuzsbil.supabase.co","eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InV3cHB2Y3hmbHJjc2lidXpzYmlsIiwicm9sZSI6InNlcnZpY2Vfcm9sZSIsImlhdCI6MTcwMDkzODE5NCwiZXhwIjoyMDE2NTE0MTk0fQ.6hOkD1J8XBkVJUm-swv0ngLQ74xrEYr28EEbo0rUrts")
|
||||||
|
let rows = []
|
||||||
|
|
||||||
|
const addDates = async () => {
|
||||||
|
const {data: workingTimesData,error: workingTimesError} = await supabase.from("workingtimes").select()
|
||||||
|
console.log(workingTimesData.length)
|
||||||
|
|
||||||
|
let updatedData = workingTimesData.map(item => {
|
||||||
|
return {
|
||||||
|
...item,
|
||||||
|
startDate: new Date(item.date + "T" + item.start),
|
||||||
|
endDate: new Date(item.date + "T" + item.end)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(updatedData)
|
||||||
|
|
||||||
|
for (let item of updatedData) {
|
||||||
|
console.log(item)
|
||||||
|
const {data,error} = await supabase.from("workingtimes").update(item).eq("id",item.id)
|
||||||
|
console.log(data)
|
||||||
|
console.log(error)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
addDates()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*fs.createReadStream(path.join(__dirname, "./Zeiterfassung.csv"), "utf-8")
|
||||||
|
.pipe(csv({ separator: ";" }))
|
||||||
|
.on("data", (data) => rows.push(data))
|
||||||
|
.on("end", async function () {
|
||||||
|
console.log("finished");
|
||||||
|
console.log(rows)
|
||||||
|
|
||||||
|
let profiles = (await supabase.from("profiles").select()).data
|
||||||
|
|
||||||
|
let times = []
|
||||||
|
let absences = []
|
||||||
|
|
||||||
|
rows.forEach(row => {
|
||||||
|
|
||||||
|
let date = dayjs(row.Datum, "DD.MM.YY",true).format("YYYY-MM-DD")
|
||||||
|
let profileId = profiles.find(i => i.employeeNumber === row['Mitarbeiter']).id
|
||||||
|
if(row.Notiz === 'Krankheit' || row.Notiz === "Urlaub" || row.Notiz === "Berufsschule") {
|
||||||
|
absences.push({
|
||||||
|
user: profileId,
|
||||||
|
tenant: 11,
|
||||||
|
start: date,
|
||||||
|
end: date,
|
||||||
|
reason: row.Notiz,
|
||||||
|
approved: "Genehmigt"
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
if(row.Start_1 && row.Ende_1) {
|
||||||
|
times.push({
|
||||||
|
profile:profileId,
|
||||||
|
date: date,
|
||||||
|
start: row.Start_1 + ":00",
|
||||||
|
end: row.Ende_1 + ":00",
|
||||||
|
approved:true,
|
||||||
|
tenant: 11,
|
||||||
|
state: "Importiert",
|
||||||
|
notes: row.Notiz
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if(row.Start_2&& row.Ende_2) {
|
||||||
|
times.push({
|
||||||
|
profile:profileId,
|
||||||
|
date: date,
|
||||||
|
start: row.Start_2 + ":00",
|
||||||
|
end: row.Ende_2 + ":00",
|
||||||
|
approved:true,
|
||||||
|
tenant: 11,
|
||||||
|
state: "Importiert",
|
||||||
|
notes: row.Notiz
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if(row.Start_3 && row.Ende_3) {
|
||||||
|
|
||||||
|
times.push({
|
||||||
|
profile:profileId,
|
||||||
|
date: date,
|
||||||
|
start: row.Start_3 + ":00",
|
||||||
|
end: row.Ende_3 + ":00",
|
||||||
|
approved:true,
|
||||||
|
tenant: 11,
|
||||||
|
state: "Importiert",
|
||||||
|
notes: row.Notiz
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
if(row.Start_4 && row.Ende_4) {
|
||||||
|
times.push({
|
||||||
|
profile:profileId,
|
||||||
|
date: date,
|
||||||
|
start: row.Start_4 + ":00",
|
||||||
|
end: row.Ende_4 + ":00",
|
||||||
|
approved:true,
|
||||||
|
tenant: 11,
|
||||||
|
state: "Importiert",
|
||||||
|
notes: row.Notiz
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(times)
|
||||||
|
console.log(times.length)
|
||||||
|
|
||||||
|
/!*let hours = 0
|
||||||
|
let datebefore = ""
|
||||||
|
let days = []
|
||||||
|
let daysum = 0
|
||||||
|
|
||||||
|
times.forEach(time => {
|
||||||
|
if(time.date !== datebefore) {
|
||||||
|
datebefore = time.date
|
||||||
|
daysum = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(time.date)
|
||||||
|
console.log(time.start)
|
||||||
|
console.log(time.end)
|
||||||
|
hours += dayjs(time.end, "HH:mm:ss").diff(dayjs(time.start, "HH:mm:ss"), "minutes")
|
||||||
|
|
||||||
|
daysum += dayjs(time.end, "HH:mm:ss").diff(dayjs(time.start, "HH:mm:ss"), "minutes")
|
||||||
|
console.log(datebefore, daysum/60)
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(hours/60)*!/
|
||||||
|
|
||||||
|
await supabase.from("absencerequests").insert(absences)
|
||||||
|
await supabase.from("workingtimes").insert(times)
|
||||||
|
|
||||||
|
/!*projects = rows.map(i => {
|
||||||
|
|
||||||
|
let item = {
|
||||||
|
customer : Number(i.customer),
|
||||||
|
tenant: tenant,
|
||||||
|
name: i.Projektname,
|
||||||
|
notes: i.Anmerkungen + "\n" + i['Angaben zum Projekt']
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
return item
|
||||||
|
|
||||||
|
})
|
||||||
|
console.log(projects)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
const {data:vendorsData,error: vendorsError} = await supabase.from("projects").insert(projects).select()
|
||||||
|
console.log(vendorsData)
|
||||||
|
console.log(vendorsError)*!/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//console.log(rows)
|
||||||
|
})
|
||||||
|
.on("error", function (error) {
|
||||||
|
console.log(error.message);
|
||||||
|
});*/
|
||||||
|
|
||||||
1
spaces/pages/vendors/[mode]/[[id]].vue
vendored
1
spaces/pages/vendors/[mode]/[[id]].vue
vendored
@@ -1,5 +1,4 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import HistoryDisplay from "~/components/HistoryDisplay.vue";
|
|
||||||
|
|
||||||
definePageMeta({
|
definePageMeta({
|
||||||
middleware: "auth"
|
middleware: "auth"
|
||||||
|
|||||||
122
spaces/pages/workingtimes/[mode]/[[id]].vue
Normal file
122
spaces/pages/workingtimes/[mode]/[[id]].vue
Normal file
@@ -0,0 +1,122 @@
|
|||||||
|
<script setup>
|
||||||
|
import dayjs from "dayjs";
|
||||||
|
|
||||||
|
|
||||||
|
const dataStore = useDataStore()
|
||||||
|
const route = useRoute()
|
||||||
|
const router = useRouter()
|
||||||
|
const toast = useToast()
|
||||||
|
const id = ref(route.params.id ? route.params.id : null )
|
||||||
|
|
||||||
|
const mode = ref(route.params.mode || "show")
|
||||||
|
const itemInfo = ref({
|
||||||
|
startDate: new Date(),
|
||||||
|
endDate: new Date(),
|
||||||
|
profile: dataStore.activeProfile.id
|
||||||
|
})
|
||||||
|
const oldItemInfo = ref({})
|
||||||
|
|
||||||
|
const setupPage = () => {
|
||||||
|
if(route.params.id && mode.value === 'edit') {
|
||||||
|
itemInfo.value = dataStore.getWorkingTimeById(Number(route.params.id))
|
||||||
|
//setStartEnd()
|
||||||
|
}
|
||||||
|
oldItemInfo.value = itemInfo.value
|
||||||
|
}
|
||||||
|
|
||||||
|
/*const setStartEnd = () => {
|
||||||
|
console.log("test")
|
||||||
|
console.log(String(itemInfo.value.date).split("T")[0])
|
||||||
|
itemInfo.value.date = String(itemInfo.value.date).split("T")[0]
|
||||||
|
itemInfo.value.start = new Date(itemInfo.value.date + "T" + itemInfo.value.start)
|
||||||
|
itemInfo.value.end = new Date(itemInfo.value.date + "T" + itemInfo.value.end)
|
||||||
|
}*/
|
||||||
|
|
||||||
|
setupPage()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<UDashboardNavbar
|
||||||
|
:title="mode === 'show' ? `Anwesenheit: ${itemInfo.profile}` : (itemInfo.id ? 'Anwesenheit bearbeiten' :'Anwesenheit erstellen')"
|
||||||
|
>
|
||||||
|
<template #right>
|
||||||
|
<UButton
|
||||||
|
color="rose"
|
||||||
|
v-if="mode === 'edit'"
|
||||||
|
@click="router.push('/workingtimes')"
|
||||||
|
>
|
||||||
|
Abbrechen
|
||||||
|
</UButton>
|
||||||
|
<UButton
|
||||||
|
v-if="mode === 'edit' && itemInfo.id"
|
||||||
|
@click="dataStore.updateItem('workingtimes',itemInfo)"
|
||||||
|
>
|
||||||
|
Speichern
|
||||||
|
</UButton>
|
||||||
|
<UButton
|
||||||
|
v-else-if="mode === 'edit' && !itemInfo.id"
|
||||||
|
>
|
||||||
|
Erstellen
|
||||||
|
</UButton>
|
||||||
|
</template>
|
||||||
|
</UDashboardNavbar>
|
||||||
|
|
||||||
|
<UForm class="p-5">
|
||||||
|
<UFormGroup
|
||||||
|
label="Mitarbeiter:"
|
||||||
|
>
|
||||||
|
<USelectMenu
|
||||||
|
:options="dataStore.profiles"
|
||||||
|
v-model="itemInfo.profile"
|
||||||
|
option-attribute="fullName"
|
||||||
|
value-attribute="id"
|
||||||
|
/>
|
||||||
|
</UFormGroup>
|
||||||
|
<UFormGroup label="Start:">
|
||||||
|
<UPopover :popper="{ placement: 'bottom-start' }">
|
||||||
|
<UButton
|
||||||
|
icon="i-heroicons-calendar-days-20-solid"
|
||||||
|
:label="itemInfo.startDate ? dayjs(itemInfo.startDate).format('HH:mm') : 'Datum auswählen'"
|
||||||
|
variant="outline"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<template #panel="{ close }">
|
||||||
|
<LazyDatePicker v-model="itemInfo.startDate" @close="itemInfo.endDate = itemInfo.startDate" mode="dateTime"/>
|
||||||
|
</template>
|
||||||
|
</UPopover>
|
||||||
|
</UFormGroup>
|
||||||
|
|
||||||
|
<UFormGroup label="Ende:">
|
||||||
|
<UPopover :popper="{ placement: 'bottom-start' }">
|
||||||
|
<UButton
|
||||||
|
variant="outline"
|
||||||
|
icon="i-heroicons-calendar-days-20-solid"
|
||||||
|
:label="itemInfo.endDate ? dayjs(itemInfo.endDate).format('HH:mm') : 'Datum auswählen'"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<template #panel="{ close }">
|
||||||
|
<LazyDatePicker v-model="itemInfo.endDate" @close="close" mode="time"/>
|
||||||
|
</template>
|
||||||
|
</UPopover>
|
||||||
|
</UFormGroup>
|
||||||
|
<UFormGroup
|
||||||
|
label="Genehmigt:"
|
||||||
|
>
|
||||||
|
<UCheckbox
|
||||||
|
v-model="itemInfo.approved"
|
||||||
|
/>
|
||||||
|
</UFormGroup>
|
||||||
|
<UFormGroup
|
||||||
|
label="Notizen:"
|
||||||
|
>
|
||||||
|
<UTextarea
|
||||||
|
v-model="itemInfo.notes"
|
||||||
|
/>
|
||||||
|
</UFormGroup>
|
||||||
|
</UForm>
|
||||||
|
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
|
||||||
|
</style>
|
||||||
@@ -4,8 +4,7 @@ import customParseFormat from "dayjs/plugin/customParseFormat"
|
|||||||
|
|
||||||
dayjs.extend(customParseFormat)
|
dayjs.extend(customParseFormat)
|
||||||
|
|
||||||
import VueDatePicker from '@vuepic/vue-datepicker'
|
|
||||||
import '@vuepic/vue-datepicker/dist/main.css'
|
|
||||||
|
|
||||||
|
|
||||||
definePageMeta({
|
definePageMeta({
|
||||||
@@ -16,6 +15,7 @@ const dataStore = useDataStore()
|
|||||||
const supabase = useSupabaseClient()
|
const supabase = useSupabaseClient()
|
||||||
const user = useSupabaseUser()
|
const user = useSupabaseUser()
|
||||||
const toast = useToast()
|
const toast = useToast()
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
|
|
||||||
const timeInfo = ref({
|
const timeInfo = ref({
|
||||||
@@ -95,7 +95,6 @@ const columns = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
const runningTimeInfo = ref({})
|
const runningTimeInfo = ref({})
|
||||||
const showConfigTimeModal = ref(false)
|
|
||||||
const configTimeMode = ref("create")
|
const configTimeMode = ref("create")
|
||||||
|
|
||||||
|
|
||||||
@@ -175,7 +174,6 @@ const createTime = async () => {
|
|||||||
} else if(data) {
|
} else if(data) {
|
||||||
itemInfo.value = {}
|
itemInfo.value = {}
|
||||||
toast.add({title: "Zeit erfolgreich erstellt"})
|
toast.add({title: "Zeit erfolgreich erstellt"})
|
||||||
showConfigTimeModal.value = false
|
|
||||||
await dataStore.fetchTimes()
|
await dataStore.fetchTimes()
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -192,7 +190,6 @@ const updateTime = async () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
toast.add({title: "Zeit erfolgreich gespeichert"})
|
toast.add({title: "Zeit erfolgreich gespeichert"})
|
||||||
showConfigTimeModal.value = false
|
|
||||||
await dataStore.fetchTimes()
|
await dataStore.fetchTimes()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -203,7 +200,7 @@ const format = (date) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const getDuration = (time) => {
|
const getDuration = (time) => {
|
||||||
const minutes = Math.floor(dayjs(time.end, "HH:mm:ss").diff(dayjs(time.start, "HH:mm:ss"),'minutes',true))
|
const minutes = Math.floor(dayjs(time.endDate).diff(dayjs(time.startDate),'minutes',true))
|
||||||
const hours = Math.floor(minutes/60)
|
const hours = Math.floor(minutes/60)
|
||||||
return {
|
return {
|
||||||
//dezimal: dez,
|
//dezimal: dez,
|
||||||
@@ -233,7 +230,7 @@ const setState = async (newState) => {
|
|||||||
Start
|
Start
|
||||||
</UButton>
|
</UButton>
|
||||||
<UButton
|
<UButton
|
||||||
@click="configTimeMode = 'create'; itemInfo = {start: new Date(), end: new Date(), profile: dataStore.activeProfile.id}; showConfigTimeModal = true"
|
@click="router.push(`/workingtimes/edit`)"
|
||||||
>
|
>
|
||||||
Erstellen
|
Erstellen
|
||||||
</UButton>
|
</UButton>
|
||||||
@@ -280,153 +277,18 @@ const setState = async (newState) => {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<UModal
|
|
||||||
v-model="showConfigTimeModal"
|
|
||||||
fullscreen
|
|
||||||
>
|
|
||||||
<UCard>
|
|
||||||
<template #header>
|
|
||||||
<div class="flex items-center justify-between">
|
|
||||||
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-white">
|
|
||||||
Zeiteintrag {{configTimeMode === 'create' ? "erstellen" : "bearbeiten"}}
|
|
||||||
</h3>
|
|
||||||
<UButton color="gray" variant="ghost" icon="i-heroicons-x-mark-20-solid" class="-my-1" @click="showConfigTimeModal = false" />
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<UFormGroup label="Start:" >
|
|
||||||
<UPopover :popper="{ placement: 'bottom-start' }">
|
|
||||||
<UButton
|
|
||||||
variant="outline"
|
|
||||||
icon="i-heroicons-calendar-days-20-solid"
|
|
||||||
:label="itemInfo.start ? dayjs(itemInfo.start).format('DD.MM.YYYY HH:mm') : 'Datum auswählen'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<template #panel="{ close }">
|
|
||||||
<LazyDatePicker
|
|
||||||
v-model="itemInfo.start"
|
|
||||||
mode="dateTime"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</UPopover>
|
|
||||||
</UFormGroup>
|
|
||||||
<UFormGroup label="Ende:" >
|
|
||||||
<UPopover :popper="{ placement: 'bottom-start' }">
|
|
||||||
<UButton
|
|
||||||
variant="outline"
|
|
||||||
icon="i-heroicons-calendar-days-20-solid"
|
|
||||||
:label="itemInfo.end ? dayjs(itemInfo.end).format('HH:mm') : 'Datum auswählen'"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<template #panel="{ close }">
|
|
||||||
<LazyDatePicker
|
|
||||||
v-model="itemInfo.end"
|
|
||||||
mode="time"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
</UPopover>
|
|
||||||
</UFormGroup>
|
|
||||||
<!-- <UFormGroup
|
|
||||||
label="Start:"
|
|
||||||
:help="itemInfo.state !== 'Entwurf' ? 'Bearbeiten der Startzeit nicht möglich' : ''"
|
|
||||||
>
|
|
||||||
<VueDatePicker
|
|
||||||
v-model="itemInfo.start"
|
|
||||||
locale="de"
|
|
||||||
cancel-text="Abbrechen"
|
|
||||||
select-text="Auswählen"
|
|
||||||
now-button-label="Jetzt"
|
|
||||||
text-input="MM.dd.yyyy HH:mm"
|
|
||||||
:dark="useColorMode().value !== 'light'"
|
|
||||||
:format="format"
|
|
||||||
:preview-format="format"
|
|
||||||
:disabled="configTimeMode === 'create' ? false : itemInfo.state !== 'Entwurf'"
|
|
||||||
/>
|
|
||||||
</UFormGroup>
|
|
||||||
<UFormGroup
|
|
||||||
label="Ende:"
|
|
||||||
:help="itemInfo.state !== 'Entwurf' ? 'Bearbeiten der Endzeit nicht möglich' : ''"
|
|
||||||
>
|
|
||||||
<VueDatePicker
|
|
||||||
v-model="itemInfo.end"
|
|
||||||
locale="de"
|
|
||||||
cancel-text="Abbrechen"
|
|
||||||
select-text="Auswählen"
|
|
||||||
now-button-label="Jetzt"
|
|
||||||
text-input="MM.dd.yyyy HH:mm"
|
|
||||||
:dark="useColorMode().value !== 'light'"
|
|
||||||
:format="format"
|
|
||||||
:preview-format="format"
|
|
||||||
:disabled="configTimeMode === 'create' ? false : itemInfo.state !== 'Entwurf'"
|
|
||||||
/>
|
|
||||||
</UFormGroup>-->
|
|
||||||
<UFormGroup
|
|
||||||
label="Benutzer:"
|
|
||||||
:help="false ? 'Bearbeiten des Benutzers nicht möglich' : ''"
|
|
||||||
>
|
|
||||||
<USelectMenu
|
|
||||||
:options="dataStore.profiles"
|
|
||||||
v-model="itemInfo.profile"
|
|
||||||
option-attribute="fullName"
|
|
||||||
value-attribute="id"
|
|
||||||
:disabled="(configTimeMode === 'create' ? false : itemInfo.state !== 'Entwurf') || (!dataStore.hasRight('createTime') || !dataStore.hasRight('createOwnTime'))"
|
|
||||||
>
|
|
||||||
<template #label>
|
|
||||||
{{dataStore.profiles.find(profile => profile.id === itemInfo.profile) ? dataStore.profiles.find(profile => profile.id === itemInfo.profile).fullName : "Benutzer auswählen"}}
|
|
||||||
</template>
|
|
||||||
</USelectMenu>
|
|
||||||
</UFormGroup>
|
|
||||||
|
|
||||||
<UFormGroup
|
|
||||||
label="Notizen:"
|
|
||||||
>
|
|
||||||
<UTextarea
|
|
||||||
v-model="itemInfo.notes"
|
|
||||||
/>
|
|
||||||
</UFormGroup>
|
|
||||||
|
|
||||||
|
|
||||||
<template #footer v-if="configTimeMode === 'create' || itemInfo.state === 'Entwurf'">
|
|
||||||
<InputGroup>
|
|
||||||
<UButton
|
|
||||||
@click="createTime"
|
|
||||||
v-if="configTimeMode === 'create'"
|
|
||||||
variant="outline"
|
|
||||||
>
|
|
||||||
Erstellen
|
|
||||||
</UButton>
|
|
||||||
<UButton
|
|
||||||
@click="updateTime"
|
|
||||||
v-else-if="configTimeMode === 'edit'"
|
|
||||||
v-if="itemInfo.state === 'Entwurf'"
|
|
||||||
>
|
|
||||||
Speichern
|
|
||||||
</UButton>
|
|
||||||
<UTooltip
|
|
||||||
text="Eingereichte Zeiten können nur noch durch Manager bearbeitet werden"
|
|
||||||
v-if="itemInfo.state === 'Entwurf'"
|
|
||||||
>
|
|
||||||
<UButton
|
|
||||||
@click="setState('Eingereicht')"
|
|
||||||
|
|
||||||
>
|
|
||||||
Einreichen
|
|
||||||
</UButton>
|
|
||||||
</UTooltip>
|
|
||||||
|
|
||||||
</InputGroup>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
</UCard>
|
|
||||||
</UModal>
|
|
||||||
|
|
||||||
<UTable
|
<UTable
|
||||||
class="mt-3"
|
class="mt-3"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
:rows="filteredRows"
|
:rows="filteredRows"
|
||||||
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Noch keine Einträge' }"
|
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Noch keine Einträge' }"
|
||||||
@select="(row) => {configTimeMode = 'edit';
|
@select="(row) => {
|
||||||
|
router.push(`/workingtimes/edit/${row.id}`)
|
||||||
|
/*configTimeMode = 'edit';
|
||||||
itemInfo = row;
|
itemInfo = row;
|
||||||
showConfigTimeModal = true}"
|
showConfigTimeModal = true*/}"
|
||||||
>
|
>
|
||||||
<!-- <template #state-data="{row}">
|
<!-- <template #state-data="{row}">
|
||||||
<span
|
<span
|
||||||
@@ -446,17 +308,17 @@ const setState = async (newState) => {
|
|||||||
{{dataStore.profiles.find(profile => profile.id === row.profile) ? dataStore.profiles.find(profile => profile.id === row.profile).fullName : row.profile }}
|
{{dataStore.profiles.find(profile => profile.id === row.profile) ? dataStore.profiles.find(profile => profile.id === row.profile).fullName : row.profile }}
|
||||||
</template>
|
</template>
|
||||||
<template #date-data="{row}">
|
<template #date-data="{row}">
|
||||||
{{dayjs(row.date).format("DD.MM.YYYY")}}
|
{{dayjs(row.startDate).format("DD.MM.YYYY")}}
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #start-data="{row}">
|
<template #start-data="{row}">
|
||||||
{{dayjs(row.start, "HH:mm:ss").format("HH:mm")}} Uhr
|
{{dayjs(row.startDate).format("HH:mm")}} Uhr
|
||||||
</template>
|
</template>
|
||||||
<template #end-data="{row}">
|
<template #end-data="{row}">
|
||||||
{{row.end ? dayjs(row.end, "HH:mm:ss").format("HH:mm") + " Uhr" : ""}}
|
{{row.endDate ? dayjs(row.endDate).format("HH:mm") + " Uhr" : ""}}
|
||||||
</template>
|
</template>
|
||||||
<template #duration-data="{row}">
|
<template #duration-data="{row}">
|
||||||
{{row.end ? getDuration(row).composed : ""}}
|
{{row.endDate ? getDuration(row).composed : ""}}
|
||||||
</template>
|
</template>
|
||||||
</UTable>
|
</UTable>
|
||||||
</template>
|
</template>
|
||||||
@@ -106,6 +106,10 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
label: "Mitarbeiter",
|
label: "Mitarbeiter",
|
||||||
labelSingle: "Mitarbeiter",
|
labelSingle: "Mitarbeiter",
|
||||||
redirect: true
|
redirect: true
|
||||||
|
},
|
||||||
|
workingtimes: {
|
||||||
|
label: "Anwesenheiten",
|
||||||
|
labelSingle: "Anwesenheit"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1127,6 +1131,10 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
return events.value.find(item => item.id === itemId)
|
return events.value.find(item => item.id === itemId)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const getWorkingTimeById = computed(() => (itemId) => {
|
||||||
|
return workingtimes.value.find(item => item.id === itemId)
|
||||||
|
})
|
||||||
|
|
||||||
const getProjectById = computed(() => (itemId) => {
|
const getProjectById = computed(() => (itemId) => {
|
||||||
if(projects.value.find(i => i.id === itemId)) {
|
if(projects.value.find(i => i.id === itemId)) {
|
||||||
let project = projects.value.find(project => project.id === itemId)
|
let project = projects.value.find(project => project.id === itemId)
|
||||||
@@ -1295,7 +1303,8 @@ export const useDataStore = defineStore('data', () => {
|
|||||||
getCreatedDocumentById,
|
getCreatedDocumentById,
|
||||||
getInventoryItemById,
|
getInventoryItemById,
|
||||||
getBankAccountById,
|
getBankAccountById,
|
||||||
getEventById
|
getEventById,
|
||||||
|
getWorkingTimeById
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user