remove legacy tax entry

This commit is contained in:
Ruidy 2024-08-25 13:43:49 +02:00
parent b4e173289b
commit cb2c6d9464
No known key found for this signature in database
GPG key ID: E00F51288CB857CC

View file

@ -25,7 +25,7 @@ type HostItem struct {
MustSyncCalendar bool MustSyncCalendar bool
HasEndDate bool HasEndDate bool
// Amount of taxes in EUR. If not zero, a tax item will be added to the invoice // 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 { func NewHost() *Host {
@ -70,10 +70,6 @@ func NewHost() *Host {
Name: "Transport", Name: "Transport",
Price: 20.0, Price: 20.0,
}, },
"Taxes": { // TODO: remove after auto creation enabled
Name: "Taxes",
Price: 1.5,
},
}, },
} }
} }