remove sales tax

This commit is contained in:
2026-06-11 16:54:47 -05:00
parent d3a06198ad
commit 9985534597
5 changed files with 39 additions and 308 deletions

View File

@@ -149,11 +149,10 @@ const API = {
upsertTaxPeriod: (data) => fetch('/api/accounting/sales-tax/periods', {
method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data)
}).then(r => r.json()),
recordTaxPayment: (periodId, data) => fetch(`/api/accounting/sales-tax/periods/${periodId}/record`, {
method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(data)
}).then(r => r.json()),
markTaxPaidExternal: (periodId) => fetch(`/api/accounting/sales-tax/periods/${periodId}/mark-external`, {
method: 'POST'
markTaxPaidExternal: (periodId, paidDate) => fetch(`/api/accounting/sales-tax/periods/${periodId}/mark-external`, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ paidDate })
}).then(r => r.json()),
// Customer Revenue Report