mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
@@ -5,7 +5,7 @@
|
||||
"name": "Account Reconcile Oca",
|
||||
"summary": """
|
||||
Reconcile addons for Odoo CE accounting""",
|
||||
"version": "16.0.1.4.0",
|
||||
"version": "16.0.1.4.1",
|
||||
"license": "AGPL-3",
|
||||
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
||||
"maintainers": ["etobella"],
|
||||
|
||||
@@ -12,7 +12,9 @@ class AccountJournal(models.Model):
|
||||
default="edit",
|
||||
required=True,
|
||||
)
|
||||
company_currency_id = fields.Many2one(related="company_id.currency_id")
|
||||
company_currency_id = fields.Many2one(
|
||||
related="company_id.currency_id", string="Company Currency"
|
||||
)
|
||||
reconcile_aggregate = fields.Selection(
|
||||
[
|
||||
("statement", "Statement"),
|
||||
|
||||
@@ -30,7 +30,7 @@ class AccountReconcileAbstract(models.AbstractModel):
|
||||
currency_id = fields.Many2one("res.currency", readonly=True)
|
||||
foreign_currency_id = fields.Many2one("res.currency")
|
||||
company_currency_id = fields.Many2one(
|
||||
"res.currency", related="company_id.currency_id"
|
||||
related="company_id.currency_id", string="Company Currency"
|
||||
)
|
||||
|
||||
def _get_reconcile_line(
|
||||
|
||||
Reference in New Issue
Block a user