parent
8f9be78f03
commit
4e8cddab9f
|
@ -5,7 +5,7 @@
|
||||||
"name": "Account Reconcile Oca",
|
"name": "Account Reconcile Oca",
|
||||||
"summary": """
|
"summary": """
|
||||||
Reconcile addons for Odoo CE accounting""",
|
Reconcile addons for Odoo CE accounting""",
|
||||||
"version": "17.0.1.2.2",
|
"version": "17.0.1.2.3",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
||||||
"maintainers": ["etobella"],
|
"maintainers": ["etobella"],
|
||||||
|
|
|
@ -12,7 +12,9 @@ class AccountJournal(models.Model):
|
||||||
default="edit",
|
default="edit",
|
||||||
required=True,
|
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(
|
reconcile_aggregate = fields.Selection(
|
||||||
[
|
[
|
||||||
("statement", "Statement"),
|
("statement", "Statement"),
|
||||||
|
|
|
@ -30,7 +30,7 @@ class AccountReconcileAbstract(models.AbstractModel):
|
||||||
currency_id = fields.Many2one("res.currency", readonly=True)
|
currency_id = fields.Many2one("res.currency", readonly=True)
|
||||||
foreign_currency_id = fields.Many2one("res.currency")
|
foreign_currency_id = fields.Many2one("res.currency")
|
||||||
company_currency_id = fields.Many2one(
|
company_currency_id = fields.Many2one(
|
||||||
"res.currency", related="company_id.currency_id"
|
related="company_id.currency_id", string="Company Currency"
|
||||||
)
|
)
|
||||||
|
|
||||||
def _get_reconcile_line(
|
def _get_reconcile_line(
|
||||||
|
|
Loading…
Reference in New Issue