Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
Accounting Reports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo modules
Accounting Reports
Commits
809d21a44872
Commit
809d21a44872
authored
1 year ago
by
Etienne Ferriere
Browse files
Options
Downloads
Patches
Plain Diff
Stop tracking the modifications of specific partner fields.
parent
f798beb38f86
No related branches found
No related tags found
1 merge request
!21
Untrack the modifications of specific partner fields.
Pipeline
#54187
passed
1 year ago
Stage: build
Stage: test
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NEWS.rst
+5
-0
5 additions, 0 deletions
NEWS.rst
__manifest__.py
+1
-1
1 addition, 1 deletion
__manifest__.py
models/res_partner.py
+0
-2
0 additions, 2 deletions
models/res_partner.py
wizards/account_monthly_statement_gen.py
+1
-1
1 addition, 1 deletion
wizards/account_monthly_statement_gen.py
with
7 additions
and
4 deletions
NEWS.rst
+
5
−
0
View file @
809d21a4
11.0.1.5.0
==========
* Stop tracking the modifications of specific partner fields.
11.0.1.4.0
==========
...
...
This diff is collapsed.
Click to expand it.
__manifest__.py
+
1
−
1
View file @
809d21a4
...
...
@@ -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/
"
,
...
...
This diff is collapsed.
Click to expand it.
models/res_partner.py
+
0
−
2
View file @
809d21a4
...
...
@@ -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
"
,
)
This diff is collapsed.
Click to expand it.
wizards/account_monthly_statement_gen.py
+
1
−
1
View file @
809d21a4
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment