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

Stop tracking the modifications of specific partner fields.

parent f798beb38f86
No related branches found
No related tags found
1 merge request!21Untrack the modifications of specific partner fields.
Pipeline #54187 passed
11.0.1.5.0
==========
* Stop tracking 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