[IMP] account_reconcile_oca: Remove warning: Two fields have the same label: Manual In Currency.
WARNING devel odoo.addons.base.models.ir_model: Two fields (manual_in_currency_id, manual_in_currency) of account.bank.statement.line() have the same label: Manual In Currency. [Modules: account_reconcile_oca and account_reconcile_oca]pull/729/head
parent
6b650cc776
commit
99e8c46ecf
|
@ -60,9 +60,15 @@ class AccountBankStatementLine(models.Model):
|
||||||
"Percentage Analytic"
|
"Percentage Analytic"
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
manual_in_currency = fields.Boolean(readonly=True, store=False, prefetch=False)
|
manual_in_currency = fields.Boolean(
|
||||||
|
readonly=True, store=False, prefetch=False, string="Manual In Currency?"
|
||||||
|
)
|
||||||
manual_in_currency_id = fields.Many2one(
|
manual_in_currency_id = fields.Many2one(
|
||||||
"res.currency", readonly=True, store=False, prefetch=False
|
"res.currency",
|
||||||
|
readonly=True,
|
||||||
|
store=False,
|
||||||
|
prefetch=False,
|
||||||
|
string="Manual In Currency",
|
||||||
)
|
)
|
||||||
manual_amount_in_currency = fields.Monetary(
|
manual_amount_in_currency = fields.Monetary(
|
||||||
store=False,
|
store=False,
|
||||||
|
|
Loading…
Reference in New Issue