Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 603acb5

Browse files
committedJan 23, 2025·
Merge branch '15.0' of https://github.com/ecosoft-odoo/budgeting into 15.0-add-budget_control_report
2 parents 7607ce3 + 95403b8 commit 603acb5

File tree

31 files changed

+110
-81
lines changed

31 files changed

+110
-81
lines changed
 

‎.copier-answers.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Do NOT update manually; changes here will be overwritten by Copier
2-
_commit: v1.22
2+
_commit: v1.29
33
_src_path: gh:oca/oca-addons-repo-template
44
ci: GitHub
55
convert_readme_fragments_to_markdown: false
6+
enable_checklog_odoo: false
67
generate_requirements_txt: true
78
github_check_license: true
89
github_ci_extra_env: {}

‎.github/workflows/pre-commit.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
pre-commit:
1414
runs-on: ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@v3
17-
- uses: actions/setup-python@v2
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.11"
2020
- name: Get python version
2121
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
22-
- uses: actions/cache@v1
22+
- uses: actions/cache@v4
2323
with:
2424
path: ~/.cache/pre-commit
2525
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}

‎.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
name: Detect unreleased dependencies
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- run: |
1919
for reqfile in requirements.txt test-requirements.txt ; do
2020
if [ -f ${reqfile} ] ; then
@@ -50,7 +50,7 @@ jobs:
5050
ports:
5151
- 5432:5432
5252
steps:
53-
- uses: actions/checkout@v3
53+
- uses: actions/checkout@v4
5454
with:
5555
persist-credentials: false
5656
# - name: Install addons and dependencies

‎.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,19 @@ var/
2525
*.egg
2626
*.eggs
2727

28+
# Windows installers
29+
*.msi
30+
31+
# Debian packages
32+
*.deb
33+
34+
# Redhat packages
35+
*.rpm
36+
37+
# MacOS packages
38+
*.dmg
39+
*.pkg
40+
2841
# Installer logs
2942
pip-log.txt
3043
pip-delete-this-directory.txt

‎.pre-commit-config.yaml

+24-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude: |
55
# Files and folders generated by bots, to avoid loops
66
^setup/|/static/description/index\.html$|
77
# We don't want to mess with tool-generated files
8-
.svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|
8+
.svg$|/tests/([^/]+/)?cassettes/|^.copier-answers.yml$|^.github/|^eslint.config.cjs|^prettier.config.cjs|
99
# Maybe reactivate this when all README files include prettier ignore tags?
1010
^README\.md$|
1111
# Library files can have extraneous formatting (even minimized)
@@ -39,7 +39,7 @@ repos:
3939
language: fail
4040
files: '[a-zA-Z0-9_]*/i18n/en\.po$'
4141
- repo: https://github.com/oca/maintainer-tools
42-
rev: 9a170331575a265c092ee6b24b845ec508e8ef75
42+
rev: d5fab7ee87fceee858a3d01048c78a548974d935
4343
hooks:
4444
# update the NOT INSTALLABLE ADDONS section above
4545
- id: oca-update-pre-commit-excluded-addons
@@ -58,8 +58,10 @@ repos:
5858
hooks:
5959
- id: oca-checks-odoo-module
6060
- id: oca-checks-po
61+
args:
62+
- --disable=po-pretty-format
6163
- repo: https://github.com/myint/autoflake
62-
rev: v1.4
64+
rev: v1.5.3
6365
hooks:
6466
- id: autoflake
6567
args:
@@ -73,25 +75,35 @@ repos:
7375
rev: 22.3.0
7476
hooks:
7577
- id: black
76-
- repo: https://github.com/pre-commit/mirrors-prettier
77-
rev: v2.4.1
78+
- repo: local
7879
hooks:
7980
- id: prettier
8081
name: prettier (with plugin-xml)
82+
entry: prettier
83+
args:
84+
- --write
85+
- --list-different
86+
- --ignore-unknown
87+
types: [text]
88+
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
89+
language: node
8190
additional_dependencies:
8291
- "prettier@2.4.1"
8392
- "@prettier/plugin-xml@1.1.0"
84-
args:
85-
- --plugin=@prettier/plugin-xml
86-
files: \.(css|htm|html|js|json|jsx|less|md|scss|toml|ts|xml|yaml|yml)$
87-
- repo: https://github.com/pre-commit/mirrors-eslint
88-
rev: v7.32.0
93+
- repo: local
8994
hooks:
9095
- id: eslint
91-
verbose: true
96+
name: eslint
97+
entry: eslint
9298
args:
9399
- --color
94100
- --fix
101+
verbose: true
102+
types: [javascript]
103+
language: node
104+
additional_dependencies:
105+
- "eslint@v7.32.0"
106+
- "eslint-plugin-jsdoc@"
95107
- repo: https://github.com/pre-commit/pre-commit-hooks
96108
rev: v4.0.1
97109
hooks:
@@ -138,7 +150,7 @@ repos:
138150
- --header
139151
- "# generated from manifests external_dependencies"
140152
- repo: https://github.com/PyCQA/flake8
141-
rev: 3.9.2
153+
rev: 5.0.0
142154
hooks:
143155
- id: flake8
144156
name: flake8

‎budget_allocation/models/base_budget_move.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def check_budget_allocation_limit(self, doclines):
115115
fund_name = docline.fund_id.name
116116
tag_name = ", ".join(docline.analytic_tag_ids.mapped("name"))
117117
query_dict = self._get_query_dict(docline)
118-
if not any(x["amount_type"] == "1_budget" for x in query_dict):
118+
if not any(x["amount_type"] == "10_budget" for x in query_dict):
119119
errors.append(
120120
_(
121121
"%(name)s & %(fund_name)s & %(tag_name)s is not allocated "

‎budget_allocation/report/budget_source_fund_report.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SourceFundMonitorReport(models.Model):
2727
fund_group_id = fields.Many2one(comodel_name="budget.source.fund.group")
2828
amount = fields.Float()
2929
amount_type = fields.Selection(
30-
selection=lambda self: [("1_budget", "Budget")]
30+
selection=lambda self: [("10_budget", "Budget")]
3131
+ self._get_budget_amount_type(),
3232
string="Type",
3333
)
@@ -50,7 +50,7 @@ def _get_consumed_sources(self):
5050
return [
5151
{
5252
"model": ("account.move.line", "Account Move Line"),
53-
"type": ("8_actual", "Actual"),
53+
"type": ("80_actual", "Actual"),
5454
"budget_move": ("account_budget_move", "move_line_id"),
5555
"source_doc": ("account_move", "move_id"),
5656
}
@@ -78,7 +78,7 @@ def _get_select_amount_types(self):
7878
formatted_dimension_fields = f", {formatted_dimension_fields}"
7979
for source in self._get_consumed_sources():
8080
res_model = source["model"][0] # i.e., account.move.line
81-
amount_type = source["type"][0] # i.e., 8_actual
81+
amount_type = source["type"][0] # i.e., 80_actual
8282
res_field = source["budget_move"][1] # i.e., move_line_id
8383
sql_select[amount_type] = {
8484
0: """
@@ -97,7 +97,7 @@ def _get_select_amount_types(self):
9797
1::boolean as active %s
9898
"""
9999
% (
100-
amount_type[:1],
100+
amount_type[:2],
101101
res_model,
102102
res_field,
103103
amount_type,
@@ -110,7 +110,7 @@ def _get_from_amount_types(self):
110110
sql_from = {}
111111
for source in self._get_consumed_sources():
112112
budget_table = source["budget_move"][0] # i.e., account_budget_move
113-
amount_type = source["type"][0] # i.e., 8_actual
113+
amount_type = source["type"][0] # i.e., 80_actual
114114
sql_from[
115115
amount_type
116116
] = """
@@ -141,7 +141,7 @@ def _select_budget(self):
141141
sf.id as fund_id,
142142
sf_group.id as fund_group_id,
143143
aa.id as analytic_account_id,
144-
'1_budget' as amount_type,
144+
'10_budget' as amount_type,
145145
al.released_amount as amount,
146146
bp.bm_date_from as date_from,
147147
bp.bm_date_to as date_to,
@@ -188,7 +188,7 @@ def _get_sql(self):
188188
select_budget_query[x] for x in key_select_budget_list
189189
)
190190
# commitment
191-
select_actual_query = self._select_statement("8_actual")
191+
select_actual_query = self._select_statement("80_actual")
192192
key_select_actual_list = sorted(select_budget_query.keys())
193193
select_actual = ", ".join(
194194
select_actual_query[x] for x in key_select_actual_list
@@ -198,7 +198,7 @@ def _get_sql(self):
198198
self._from_budget(),
199199
self._where_budget(),
200200
select_actual,
201-
self._from_statement("8_actual"),
201+
self._from_statement("80_actual"),
202202
self._where_actual(),
203203
)
204204

‎budget_allocation_advance_clearing/report/budget_source_fund_report.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ def _get_consumed_sources(self):
1111
return super()._get_consumed_sources() + [
1212
{
1313
"model": ("hr.expense", "Expense"),
14-
"type": ("4_av_commit", "AV Commit"),
14+
"type": ("40_av_commit", "AV Commit"),
1515
"budget_move": ("advance_budget_move", "expense_id"),
1616
"source_doc": ("hr_expense_sheet", "sheet_id"),
1717
}
1818
]
1919

2020
def _get_sql(self):
21-
select_av_query = self._select_statement("4_av_commit")
21+
select_av_query = self._select_statement("40_av_commit")
2222
key_select_list = sorted(select_av_query.keys())
2323
select_av = ", ".join(select_av_query[x] for x in key_select_list)
2424
return super()._get_sql() + "union (select {} {})".format(
2525
select_av,
26-
self._from_statement("4_av_commit"),
26+
self._from_statement("40_av_commit"),
2727
)

‎budget_allocation_contract/report/budget_source_fund_report.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ def _get_consumed_sources(self):
1111
return super()._get_consumed_sources() + [
1212
{
1313
"model": ("contract.line", "Contract Line"),
14-
"type": ("6_ct_commit", "CT Commit"),
14+
"type": ("60_ct_commit", "CT Commit"),
1515
"budget_move": ("contract_budget_move", "contract_line_id"),
1616
"source_doc": ("contract_contract", "contract_id"),
1717
}
1818
]
1919

2020
def _get_sql(self):
21-
select_ct_query = self._select_statement("6_ct_commit")
21+
select_ct_query = self._select_statement("60_ct_commit")
2222
key_select_list = sorted(select_ct_query.keys())
2323
select_ct = ", ".join(select_ct_query[x] for x in key_select_list)
2424
return super()._get_sql() + "union (select {} {})".format(
2525
select_ct,
26-
self._from_statement("6_ct_commit"),
26+
self._from_statement("60_ct_commit"),
2727
)

‎budget_allocation_expense/report/budget_source_fund_report.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ def _get_consumed_sources(self):
1111
return super()._get_consumed_sources() + [
1212
{
1313
"model": ("hr.expense", "Expense"),
14-
"type": ("5_ex_commit", "EX Commit"),
14+
"type": ("50_ex_commit", "EX Commit"),
1515
"budget_move": ("expense_budget_move", "expense_id"),
1616
"source_doc": ("hr_expense_sheet", "sheet_id"),
1717
}
1818
]
1919

2020
def _get_sql(self):
21-
select_ex_query = self._select_statement("5_ex_commit")
21+
select_ex_query = self._select_statement("50_ex_commit")
2222
key_select_list = sorted(select_ex_query.keys())
2323
select_ex = ", ".join(select_ex_query[x] for x in key_select_list)
2424
return super()._get_sql() + "union (select {} {})".format(
2525
select_ex,
26-
self._from_statement("5_ex_commit"),
26+
self._from_statement("50_ex_commit"),
2727
)

‎budget_allocation_purchase/report/budget_source_fund_report.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ def _get_consumed_sources(self):
1111
return super()._get_consumed_sources() + [
1212
{
1313
"model": ("purchase.order.line", "Purchase Line"),
14-
"type": ("3_po_commit", "PO Commit"),
14+
"type": ("30_po_commit", "PO Commit"),
1515
"budget_move": ("purchase_budget_move", "purchase_line_id"),
1616
"source_doc": ("purchase_order", "purchase_id"),
1717
}
1818
]
1919

2020
def _get_sql(self):
21-
select_po_query = self._select_statement("3_po_commit")
21+
select_po_query = self._select_statement("30_po_commit")
2222
key_select_list = sorted(select_po_query.keys())
2323
select_po = ", ".join(select_po_query[x] for x in key_select_list)
2424
return super()._get_sql() + "union (select {} {})".format(
2525
select_po,
26-
self._from_statement("3_po_commit"),
26+
self._from_statement("30_po_commit"),
2727
)

‎budget_allocation_purchase_request/report/budget_source_fund_report.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def _get_consumed_sources(self):
1111
return super()._get_consumed_sources() + [
1212
{
1313
"model": ("purchase.request.line", "Purchase Request Line"),
14-
"type": ("2_pr_commit", "PR Commit"),
14+
"type": ("20_pr_commit", "PR Commit"),
1515
"budget_move": (
1616
"purchase_request_budget_move",
1717
"purchase_request_line_id",
@@ -21,10 +21,10 @@ def _get_consumed_sources(self):
2121
]
2222

2323
def _get_sql(self):
24-
select_pr_query = self._select_statement("2_pr_commit")
24+
select_pr_query = self._select_statement("20_pr_commit")
2525
key_select_list = sorted(select_pr_query.keys())
2626
select_pr = ", ".join(select_pr_query[x] for x in key_select_list)
2727
return super()._get_sql() + "union (select {} {})".format(
2828
select_pr,
29-
self._from_statement("2_pr_commit"),
29+
self._from_statement("20_pr_commit"),
3030
)

‎budget_control/models/budget_control.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ def do_init_budget_commit(self, init):
345345
q["amount"]
346346
for q in query_data
347347
if q["amount"] is not None
348-
and q["amount_type"] not in ["1_budget", "8_actual"]
348+
and q["amount_type"] not in ["10_budget", "80_actual"]
349349
)
350350
line.update({"amount": abs(balance_commit)})
351351

‎budget_control/models/budget_period.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ def get_budget_info_from_dataset(self, query, dataset):
477477
if is_commit:
478478
budget_info[col] = -amount # Negate
479479
budget_info["amount_commit"] += budget_info[col]
480-
elif amount_type == "8_actual": # Negate consumed
480+
elif amount_type == "80_actual": # Negate consumed
481481
budget_info[col] = -amount
482482
else:
483483
budget_info[col] = amount
@@ -493,10 +493,10 @@ def _budget_info_query(self):
493493
query = {
494494
"info_cols": {
495495
"amount_budget": (
496-
"1_budget",
496+
"10_budget",
497497
False,
498498
), # (amount_type, is_commit)
499-
"amount_actual": ("8_actual", False),
499+
"amount_actual": ("80_actual", False),
500500
},
501501
"fields": [
502502
"analytic_account_id",

0 commit comments

Comments
 (0)
Please sign in to comment.