From cb2c6d946436ce41985b29824131d7e9d80465a0 Mon Sep 17 00:00:00 2001 From: Ruidy Date: Sun, 25 Aug 2024 13:43:49 +0200 Subject: [PATCH] remove legacy tax entry --- config/host.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/config/host.go b/config/host.go index b8ed735..44f82c1 100644 --- a/config/host.go +++ b/config/host.go @@ -25,7 +25,7 @@ type HostItem struct { MustSyncCalendar bool HasEndDate bool // Amount of taxes in EUR. If not zero, a tax item will be added to the invoice - Taxes float64 // TODO: create taxes auto if taxable item + Taxes float64 } func NewHost() *Host { @@ -70,10 +70,6 @@ func NewHost() *Host { Name: "Transport", Price: 20.0, }, - "Taxes": { // TODO: remove after auto creation enabled - Name: "Taxes", - Price: 1.5, - }, }, } }