Skip to content
Snippets Groups Projects
Commit 187e9b429356 authored by Etienne Ferriere's avatar Etienne Ferriere
Browse files

Untrack the modifications of specific partner fields.

parent f798beb38f86
No related branches found
No related tags found
No related merge requests found
Pipeline #54006 passed
This commit is part of merge request !21. Comments created here will be created in the context of that merge request.
11.0.1.5.0
==========
* Untrack the modifications of specific partner fields.
11.0.1.4.0
==========
......
......@@ -21,7 +21,7 @@
{
"name": "Accounting Reports",
"license": "AGPL-3",
"version": "11.0.1.4.0",
"version": "11.0.1.5.0",
"category": "Accounting",
"author": "XCG Consulting",
"website": "https://odoo.consulting/",
......
......@@ -35,7 +35,6 @@
"entries."
),
index=True,
track_visibility="onchange",
)
monthly_statement_kind_id = fields.Many2one(
......@@ -46,5 +45,4 @@
"Specifications on reports to produce for monthly statements for "
"unreconciled entries."
),
track_visibility="onchange",
)
......@@ -113,7 +113,7 @@
amount = 0.0
line_count = 0
partner_set = set()
for line_id, partner_id, line_amount in self._find_entries():
for _line_id, partner_id, line_amount in self._find_entries():
amount += line_amount
line_count += 1
partner_set.add(partner_id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment