Compare commits
2 Commits
main
...
53349fae83
| Author | SHA1 | Date | |
|---|---|---|---|
| 53349fae83 | |||
| d8eb1559c8 |
@@ -2,18 +2,37 @@
|
|||||||
name: 🐛 Bug Report
|
name: 🐛 Bug Report
|
||||||
about: Erstelle einen Bericht, um uns zu helfen, das Projekt zu verbessern.
|
about: Erstelle einen Bericht, um uns zu helfen, das Projekt zu verbessern.
|
||||||
title: '[BUG] '
|
title: '[BUG] '
|
||||||
labels: Problem
|
labels: bug
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Beschreibung**
|
**Beschreibung**
|
||||||
|
Eine klare und prägnante Beschreibung des Fehlers.
|
||||||
|
|
||||||
**Reproduktion**
|
**Reproduktion**
|
||||||
|
Schritte, um den Fehler zu reproduzieren:
|
||||||
|
|
||||||
|
Entweder:
|
||||||
|
1. Gehe zu '...'
|
||||||
|
2. Klicke auf '...'
|
||||||
|
3. Scrolle runter zu '...'
|
||||||
|
4. Siehe Fehler
|
||||||
|
|
||||||
|
Oder Link zur Seite
|
||||||
|
|
||||||
|
**Erwartetes Verhalten**
|
||||||
|
Eine klare Beschreibung dessen, was du erwartet hast.
|
||||||
|
|
||||||
**Screenshots**
|
**Screenshots**
|
||||||
|
Falls zutreffend, füge hier Screenshots oder Gifs hinzu, um das Problem zu verdeutlichen.
|
||||||
|
|
||||||
**Achtung: Achte bitte auf Datenschutz deiner Daten sowie der Daten deiner Kunden. Sollten ein Screenshot nur mit Daten möglich sein, schwärze diese bitte vor dem Upload.**
|
**Achtung: Achte bitte auf Datenschutz deiner Daten sowie der Daten deiner Kunden. Sollten ein Screenshot nur mit Daten möglich sein, schwärze diese bitte vor dem Upload.**
|
||||||
|
|
||||||
|
**Umgebung:**
|
||||||
|
- Betriebssystem: [z.B. Windows, macOS, Linux]
|
||||||
|
- Browser / Version (falls relevant): [z.B. Chrome 120]
|
||||||
|
- Projekt-Version: [z.B. v1.0.2]
|
||||||
|
|
||||||
|
**Zusätzlicher Kontext**
|
||||||
|
Füge hier alle anderen Informationen zum Problem hinzu.
|
||||||
@@ -2,16 +2,19 @@
|
|||||||
name: ✨ Feature Request
|
name: ✨ Feature Request
|
||||||
about: Schlage eine Idee für dieses Projekt vor.
|
about: Schlage eine Idee für dieses Projekt vor.
|
||||||
title: '[FEATURE] '
|
title: '[FEATURE] '
|
||||||
labels: Funktionswunsch
|
labels: enhancement
|
||||||
assignees: ''
|
assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
**Ist dein Feature-Wunsch mit einem Problem verbunden?**
|
**Ist dein Feature-Wunsch mit einem Problem verbunden?**
|
||||||
|
Eine klare Beschreibung des Problems (z.B. "Ich bin immer genervt, wenn...").
|
||||||
|
|
||||||
**Lösungsvorschlag**
|
**Lösungsvorschlag**
|
||||||
|
Eine klare Beschreibung dessen, was du dir wünschst und wie es funktionieren soll.
|
||||||
|
|
||||||
**Alternativen**
|
**Alternativen**
|
||||||
|
Hast du über alternative Lösungen oder Workarounds nachgedacht?
|
||||||
|
|
||||||
|
**Zusätzlicher Kontext**
|
||||||
|
Hier ist Platz für weitere Informationen, Skizzen oder Beispiele von anderen Tools.
|
||||||
@@ -522,7 +522,7 @@ export default async function resourceRoutes(server: FastifyInstance) {
|
|||||||
Object.keys(data).forEach((key) => {
|
Object.keys(data).forEach((key) => {
|
||||||
console.log(key)
|
console.log(key)
|
||||||
|
|
||||||
if(key.includes("_at") || key.includes("At") || key.toLowerCase().includes("date")) {
|
if((key.includes("_at") || key.includes("At") || key.toLowerCase().includes("date") ) && key !=="deliveryDateType") {
|
||||||
data[key] = normalizeDate(data[key])
|
data[key] = normalizeDate(data[key])
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ const openBankstatements = () => {
|
|||||||
</UButton>
|
</UButton>
|
||||||
<UButton
|
<UButton
|
||||||
v-if="itemInfo.project"
|
v-if="itemInfo.project"
|
||||||
@click="router.push(`/standardEntity/projects/show/${itemInfo.project}`)"
|
@click="router.push(`/standardEntity/projects/show/${itemInfo.project?.id}`)"
|
||||||
icon="i-heroicons-link"
|
icon="i-heroicons-link"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
>
|
>
|
||||||
@@ -98,12 +98,36 @@ const openBankstatements = () => {
|
|||||||
</UButton>
|
</UButton>
|
||||||
<UButton
|
<UButton
|
||||||
v-if="itemInfo.customer"
|
v-if="itemInfo.customer"
|
||||||
@click="router.push(`/standardEntity/customers/show/${itemInfo.customer}`)"
|
@click="router.push(`/standardEntity/customers/show/${itemInfo.customer?.id}`)"
|
||||||
icon="i-heroicons-link"
|
icon="i-heroicons-link"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
>
|
>
|
||||||
Kunde
|
Kunde
|
||||||
</UButton>
|
</UButton>
|
||||||
|
<UButton
|
||||||
|
v-if="itemInfo.plant"
|
||||||
|
@click="router.push(`/standardEntity/plants/show/${itemInfo.plant?.id}`)"
|
||||||
|
icon="i-heroicons-link"
|
||||||
|
variant="outline"
|
||||||
|
>
|
||||||
|
Objekt
|
||||||
|
</UButton>
|
||||||
|
<UButton
|
||||||
|
v-if="itemInfo.contract"
|
||||||
|
@click="router.push(`/standardEntity/contracts/show/${itemInfo.contract?.id}`)"
|
||||||
|
icon="i-heroicons-link"
|
||||||
|
variant="outline"
|
||||||
|
>
|
||||||
|
Vertrag
|
||||||
|
</UButton>
|
||||||
|
<UButton
|
||||||
|
v-if="itemInfo.contact"
|
||||||
|
@click="router.push(`/standardEntity/contacts/show/${itemInfo.contact?.id}`)"
|
||||||
|
icon="i-heroicons-link"
|
||||||
|
variant="outline"
|
||||||
|
>
|
||||||
|
Ansprechpartner
|
||||||
|
</UButton>
|
||||||
<UButton
|
<UButton
|
||||||
v-if="itemInfo.createddocument"
|
v-if="itemInfo.createddocument"
|
||||||
@click="router.push(`/createDocument/show/${itemInfo.createddocument}`)"
|
@click="router.push(`/createDocument/show/${itemInfo.createddocument}`)"
|
||||||
|
|||||||
Reference in New Issue
Block a user