mirror of
https://github.com/bringout/oca-ocb-l10n_me-africa.git
synced 2026-04-27 05:22:08 +02:00
Initial commit: L10N_Me Africa packages
This commit is contained in:
commit
c265268138
611 changed files with 75334 additions and 0 deletions
|
|
@ -0,0 +1,84 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
#in this file, we mostly add the tag translate=True on existing fields that we now want to be translated
|
||||
|
||||
class AccountAccountTag(models.Model):
|
||||
_inherit = 'account.account.tag'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
class AccountAccountTemplate(models.Model):
|
||||
_inherit = 'account.account.template'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
|
||||
class AccountAccount(models.Model):
|
||||
_inherit = 'account.account'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
class AccountGroupTemplate(models.Model):
|
||||
_inherit = 'account.group.template'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
class AccountGroup(models.Model):
|
||||
_inherit = 'account.group'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
class AccountTax(models.Model):
|
||||
_inherit = 'account.tax'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
description = fields.Char(translate=True)
|
||||
|
||||
|
||||
class AccountTaxTemplate(models.Model):
|
||||
_inherit = 'account.tax.template'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
description = fields.Char(translate=True)
|
||||
|
||||
|
||||
class AccountChartTemplate(models.Model):
|
||||
_inherit = 'account.chart.template'
|
||||
_order = 'name'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
spoken_languages = fields.Char(string='Spoken Languages')
|
||||
# the languages for which the translations of templates could be loaded at
|
||||
# the time of installation of this localization module and copied in the
|
||||
# final object when generating them from templates. You must provide the
|
||||
# language codes separated by ';'
|
||||
|
||||
|
||||
class AccountFiscalPosition(models.Model):
|
||||
_inherit = 'account.fiscal.position'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
note = fields.Html(translate=True)
|
||||
|
||||
|
||||
class AccountFiscalPositionTemplate(models.Model):
|
||||
_inherit = 'account.fiscal.position.template'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
note = fields.Text(translate=True)
|
||||
|
||||
|
||||
class AccountJournal(models.Model):
|
||||
_inherit = 'account.journal'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
|
||||
|
||||
class AccountAnalyticAccount(models.Model):
|
||||
_inherit = 'account.analytic.account'
|
||||
|
||||
name = fields.Char(translate=True)
|
||||
Loading…
Add table
Add a link
Reference in a new issue