mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 13:25:18 +00:00
feat: add description to invoices
This commit is contained in:
@@ -21,7 +21,7 @@ export default function defaultTemplates(user: User, settings: SettingsMap): Inv
|
||||
companyDetailsLabel: "Bill From",
|
||||
billTo: "",
|
||||
billToLabel: "Bill To",
|
||||
items: [{ description: "", quantity: 1, unitPrice: 0, subtotal: 0 }],
|
||||
items: [{ name: "", subtitle: "", showSubtitle: false, quantity: 1, unitPrice: 0, subtotal: 0 }],
|
||||
taxIncluded: true,
|
||||
additionalTaxes: [{ name: "VAT", rate: 0, amount: 0 }],
|
||||
additionalFees: [],
|
||||
@@ -48,7 +48,7 @@ export default function defaultTemplates(user: User, settings: SettingsMap): Inv
|
||||
companyDetailsLabel: "Rechnungssteller",
|
||||
billTo: "",
|
||||
billToLabel: "Rechnungsempfänger",
|
||||
items: [{ description: "", quantity: 1, unitPrice: 0, subtotal: 0 }],
|
||||
items: [{ name: "", subtitle: "", showSubtitle: false, quantity: 1, unitPrice: 0, subtotal: 0 }],
|
||||
taxIncluded: true,
|
||||
additionalTaxes: [{ name: "MwSt", rate: 19, amount: 0 }],
|
||||
additionalFees: [],
|
||||
|
||||
Reference in New Issue
Block a user