Skip to content

Commit

Permalink
[FIX] Runbot warnings: (OCA#557)
Browse files Browse the repository at this point in the history
WARNING openerp_test odoo.fields: Field account.tax.kind.display_name depends on itself; please fix its decorator @api.depends().
WARNING openerp_test odoo.fields: Field date.range.progressive_credit: parameter 'digits_compute' is no longer supported; use 'digits' instead.
WARNING openerp_test odoo.fields: Field date.range.progressive_debit: parameter 'digits_compute' is no longer supported; use 'digits' instead.
WARNING openerp_test py.warnings: /home/travis/odoo-10.0/odoo/models.py:362: UnicodeWarning: Unicode equal comparison failed to convert both arguments to Unicode - interpreting them as being unequal
elif not all(cols[field.name][key] == vals[key] for key in vals):
Generate Addon README
  • Loading branch information
SimoRubi authored and SirAionTech committed Sep 28, 2023
1 parent 514f8ff commit 61ab368
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions l10n_it_ricevute_bancarie/i18n/l10n_it_ricevute_bancarie.pot
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,11 @@ msgstr ""
msgid "Effects amount"
msgstr ""

#. module: l10n_it_ricevute_bancarie
#: model:ir.model.fields,field_description:l10n_it_ricevute_bancarie.field_riba_configuration_type
msgid "Emission mode"
msgstr ""

#. module: l10n_it_ricevute_bancarie
#: code:addons/l10n_it_ricevute_bancarie/wizard/wizard_accreditation.py:96
#: code:addons/l10n_it_ricevute_bancarie/wizard/wizard_unsolved.py:118
Expand Down Expand Up @@ -652,11 +657,6 @@ msgstr ""
msgid "List line"
msgstr ""

#. module: l10n_it_ricevute_bancarie
#: model:ir.model.fields,field_description:l10n_it_ricevute_bancarie.field_riba_configuration_type
msgid "Modalità Emissione"
msgstr ""

#. module: l10n_it_ricevute_bancarie
#: model:ir.ui.view,arch_db:l10n_it_ricevute_bancarie.view_riba_distinta_line_form
msgid "Move line"
Expand Down
2 changes: 1 addition & 1 deletion l10n_it_ricevute_bancarie/models/riba_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class RibaConfiguration(models.Model):
name = fields.Char("Description", size=64, required=True)
type = fields.Selection(
(('sbf', 'Salvo buon fine'), ('incasso', 'Al dopo incasso')),
"Modalità Emissione", required=True)
"Emission mode", required=True)
bank_id = fields.Many2one(
'res.partner.bank', "Banca", required=True,
help="Bank account used for Ri.Ba. issuing")
Expand Down

0 comments on commit 61ab368

Please sign in to comment.