// Package l10n_de implements the German localization for Odoo accounting. // Mirrors: odoo/addons/l10n_de/__manifest__.py // // Provides the SKR03 and SKR04 standard charts of accounts (Standardkontenrahmen) // as defined by DATEV for German businesses. package l10n_de import ( "odoo-go/addons/l10n_de/models" "odoo-go/pkg/modules" ) func init() { modules.Register(&modules.Module{ Name: "l10n_de", Description: "Germany - Accounting", Version: "19.0.1.0.0", Category: "Accounting/Localizations/Account Charts", Depends: []string{"base", "account"}, Application: false, Installable: true, Sequence: 100, Init: models.Init, }) }