Merge PR #702 into 16.0

Signed-off-by etobella
pull/707/head
OCA-git-bot 2024-09-23 12:44:10 +00:00
commit f1564445f5
1 changed files with 11 additions and 2 deletions

View File

@ -60,9 +60,18 @@ class AccountBankStatementLine(models.Model):
"Percentage Analytic"
),
)
manual_in_currency = fields.Boolean(readonly=True, store=False, prefetch=False)
manual_in_currency = fields.Boolean(
string="Is Manual in Currency?",
readonly=True,
store=False,
prefetch=False,
)
manual_in_currency_id = fields.Many2one(
"res.currency", readonly=True, store=False, prefetch=False
comodel_name="res.currency",
string="Manual In Currency",
readonly=True,
store=False,
prefetch=False,
)
manual_amount_in_currency = fields.Monetary(
store=False,