Compare commits

...

2 Commits

Author SHA1 Message Date
32b4c40e11 Fix #1
All checks were successful
Build and Push Docker Images / build-backend (push) Successful in 16s
Build and Push Docker Images / build-frontend (push) Successful in 5m55s
2026-01-12 19:40:32 +01:00
f044195d86 Fix #20 2026-01-12 19:37:22 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -147,7 +147,7 @@ const updateIncomingInvoice = async (setBooked = false) => {
} else { } else {
item.state = "Entwurf" item.state = "Entwurf"
} }
const data = await useEntities('incominginvoices').update(itemInfo.value.id,item) const data = await useEntities('incominginvoices').update(itemInfo.value.id,item,true)
} }
const findIncomingInvoiceErrors = computed(() => { const findIncomingInvoiceErrors = computed(() => {

View File

@@ -2499,8 +2499,8 @@ export const useDataStore = defineStore('data', () => {
component: vehicle, component: vehicle,
inputType: "select", inputType: "select",
selectDataType: "vehicles", selectDataType: "vehicles",
selectOptionAttribute: "licensePlate", selectOptionAttribute: "license_plate",
selectSearchAttributes: ['licensePlate'], selectSearchAttributes: ['license_plate','vin'],
}, },
{ {
key: "inventoryitem", key: "inventoryitem",