This commit is contained in:
2026-08-19 19:18:45 +02:00
parent f8b0d52ff7
commit b644253e0b
9 changed files with 379 additions and 20 deletions

View File

@@ -155,6 +155,9 @@ const API = {
body: JSON.stringify({ paidDate })
}).then(r => r.json()),
// Kunden mit Guthaben (live aus QBO)
getCustomerCredits: () => fetch('/api/accounting/customer-credits').then(r => r.json()),
// Customer Revenue Report
getCustomerRevenue: (startDate, endDate) => {
const params = new URLSearchParams({ startDate, endDate });