parent
8f9be78f03
commit
4e8cddab9f
|
@ -5,7 +5,7 @@
|
|||
"name": "Account Reconcile Oca",
|
||||
"summary": """
|
||||
Reconcile addons for Odoo CE accounting""",
|
||||
"version": "17.0.1.2.2",
|
||||
"version": "17.0.1.2.3",
|
||||
"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(
|
||||
|
|
Loading…
Reference in New Issue