diff --git a/components/DocumentDisplayModal.vue b/components/DocumentDisplayModal.vue
index 2e121ea..aaa5118 100644
--- a/components/DocumentDisplayModal.vue
+++ b/components/DocumentDisplayModal.vue
@@ -355,6 +355,7 @@ const moveFile = async () => {
Verschieben
diff --git a/pages/banking/statements/[mode]/[[id]].vue b/pages/banking/statements/[mode]/[[id]].vue
index a92b728..13a3fd4 100644
--- a/pages/banking/statements/[mode]/[[id]].vue
+++ b/pages/banking/statements/[mode]/[[id]].vue
@@ -85,7 +85,7 @@ const separateIBAN = (input = "") => {
const getDocumentSum = (doc,advanceInvoices = []) => {
let sum = 0
- console.log(advanceInvoices)
+ //console.log(advanceInvoices)
doc.rows.forEach(row => {
if(row.mode === "normal" || row.mode === "service" || row.mode === "free") {
@@ -93,7 +93,7 @@ const getDocumentSum = (doc,advanceInvoices = []) => {
}
})
- console.log(sum)
+ //console.log(sum)
if(advanceInvoices.length > 0) {
advanceInvoices.forEach(i => {
@@ -102,7 +102,7 @@ const getDocumentSum = (doc,advanceInvoices = []) => {
})
}
- console.log(sum)
+ //console.log(sum)
@@ -152,6 +152,9 @@ const selectAccount = (id) => {
const manualAllocationSum = ref(itemInfo.value.amount || 0)
const saveAllocation = async (allocation) => {
+
+ console.log(allocation)
+
const {data,error} = await supabase.from("statementallocations").insert({
...allocation,
tenant: profileStore.currentTenant
@@ -376,7 +379,7 @@ setup()
-