mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[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]
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user