[FIX] Add description to a model
parent
1e95397131
commit
a692ea1a3d
|
@ -18,6 +18,11 @@ msgstr ""
|
|||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_reconcile_restrict_partner_mismatch
|
||||
#: model:ir.model,name:account_reconcile_restrict_partner_mismatch.model_account_reconcile_partner_mismatch_report
|
||||
msgid "Account Reconcile Partner Mismatch Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_reconcile_restrict_partner_mismatch
|
||||
#: model:ir.model.fields,field_description:account_reconcile_restrict_partner_mismatch.field_account_reconcile_partner_mismatch_report__account_type_id
|
||||
msgid "Account type"
|
||||
|
@ -97,8 +102,3 @@ msgstr ""
|
|||
msgid "The partner has to be the same on all lines for receivable and payable accounts!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_reconcile_restrict_partner_mismatch
|
||||
#: model:ir.model,name:account_reconcile_restrict_partner_mismatch.model_account_reconcile_partner_mismatch_report
|
||||
msgid "account.reconcile.partner.mismatch.report"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
@ -7,6 +7,7 @@ from odoo import api, fields, models, tools
|
|||
|
||||
class AccountReconcilePartnerMismatchReport(models.Model):
|
||||
_name = 'account.reconcile.partner.mismatch.report'
|
||||
_description = 'Account Reconcile Partner Mismatch Report'
|
||||
_auto = False
|
||||
|
||||
partial_reconcile_id = fields.Many2one(
|
||||
|
|
Loading…
Reference in New Issue