remove sales tax
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user