Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
d8f8d345
Commit
d8f8d345
authored
8 years ago
by
Nicolas Martinelli
Browse files
Options
Downloads
Patches
Plain Diff
[FIX] account: print Trial Balance
This applies commits
313bc91c
and
2ad4bd48
to Trial Balance report. opw-676061
parent
97b79a19
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
addons/account/report/account_balance.py
+2
-2
2 additions, 2 deletions
addons/account/report/account_balance.py
addons/account/wizard/account_report_trial_balance.py
+2
-1
2 additions, 1 deletion
addons/account/wizard/account_report_trial_balance.py
with
4 additions
and
3 deletions
addons/account/report/account_balance.py
+
2
−
2
View file @
d8f8d345
...
...
@@ -58,9 +58,9 @@ class ReportTrialBalance(models.AbstractModel):
@api.multi
def
render_html
(
self
,
data
):
self
.
model
=
self
.
env
.
context
.
get
(
'
active_model
'
)
docs
=
self
.
env
[
self
.
model
].
browse
(
self
.
env
.
context
.
get
(
'
active_id
'
))
docs
=
self
.
env
[
self
.
model
].
browse
(
self
.
env
.
context
.
get
(
'
active_id
s
'
,
[]
))
display_account
=
data
[
'
form
'
].
get
(
'
display_account
'
)
accounts
=
self
.
env
[
'
account.account
'
].
search
([])
accounts
=
docs
if
self
.
model
==
'
account.account
'
else
self
.
env
[
'
account.account
'
].
search
([])
account_res
=
self
.
with_context
(
data
[
'
form
'
].
get
(
'
used_context
'
)).
_get_accounts
(
accounts
,
display_account
)
docargs
=
{
...
...
This diff is collapsed.
Click to expand it.
addons/account/wizard/account_report_trial_balance.py
+
2
−
1
View file @
d8f8d345
...
...
@@ -12,4 +12,5 @@ class AccountBalanceReport(models.TransientModel):
def
_print_report
(
self
,
data
):
data
=
self
.
pre_print_report
(
data
)
return
self
.
env
[
'
report
'
].
get_action
(
self
,
'
account.report_trialbalance
'
,
data
=
data
)
records
=
self
.
env
[
data
[
'
model
'
]].
browse
(
data
.
get
(
'
ids
'
,
[]))
return
self
.
env
[
'
report
'
].
get_action
(
records
,
'
account.report_trialbalance
'
,
data
=
data
)
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