David Ramia
2817ae074c
[FIX] account_financial_report: Replace deprecated t-raw to t-out
2024-11-29 15:38:41 +07:00
OCA-git-bot
e607fba7db
account_financial_report 16.0.1.3.2
2024-11-29 15:38:41 +07:00
@
d33d89ef62
[FIX] account_financial_report fix to take the id of the currency if is set, that fix the following error: opt/odoo/odoo/odoo/models.py", line 3681, in write
...
field.write(self, vals[fname])
File "/opt/odoo/odoo/odoo/fields.py", line 3057, in write
return self.write_batch([(records, value)])
File "/opt/odoo/odoo/odoo/fields.py", line 3078, in write_batch
return self.write_real(records_commands_list, create)
File "/opt/odoo/odoo/odoo/fields.py", line 3254, in write_real
flush()
File "/opt/odoo/odoo/odoo/fields.py", line 3216, in flush
comodel.create(to_create)
File "<decorator-gen-69>", line 2, in create
File "/opt/odoo/odoo/odoo/api.py", line 348, in _model_create_multi
return create(self, arg)
File "/opt/odoo/odoo/odoo/addons/base/models/ir_fields.py", line 534, in create
recs = super().create(vals_list)
File "<decorator-gen-13>", line 2, in create
File "/opt/odoo/odoo/odoo/api.py", line 348, in _model_create_multi
return create(self, arg)
File "/opt/odoo/odoo/odoo/models.py", line 3886, in create
records = self._create(data_list)
File "/opt/odoo/odoo/odoo/models.py", line 3992, in _create
cr.execute(query, params)
File "<decorator-gen-3>", line 2, in execute
File "/opt/odoo/odoo/odoo/sql_db.py", line 101, in check
return f(self, *args, **kwargs)
File "/opt/odoo/odoo/odoo/sql_db.py", line 301, in execute
res = self._obj.execute(query, params)
Exception
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/opt/odoo/odoo/odoo/http.py", line 641, in _handle_exception
return super(JsonRequest, self)._handle_exception(exception)
File "/opt/odoo/odoo/odoo/http.py", line 317, in _handle_exception
raise exception.with_traceback(None) from new_cause
psycopg2.ProgrammingError: can't adapt type 'res.currency'
2024-11-29 15:38:41 +07:00
OCA-git-bot
b334842e67
account_financial_report 16.0.1.3.1
2024-11-29 15:38:41 +07:00
gerard-vacas
a1df8405be
Translated using Weblate (Spanish)
...
Currently translated at 98.0% (247 of 252 strings)
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/es/
2024-11-29 15:38:41 +07:00
Rachid Alassir
6edf341f72
[FIX] account_financial_report: Replace wrong field amount_currency with two fields debit_amount_currency and credit_amount_currency
2024-11-29 15:38:41 +07:00
Alberto Re
dcfe9e85d5
Fixed the amount_residual_currency on partial reconcile
2024-11-29 15:38:41 +07:00
OCA-git-bot
18d0513af3
account_financial_report 16.0.1.3.0
2024-11-29 15:38:41 +07:00
Florian da Costa
4359fc8dcc
[FIX] account_financial_report: Account group styling in qweb and xlsx
2024-11-29 15:38:41 +07:00
OCA-git-bot
4f2f39ce96
account_financial_report 16.0.1.2.3
2024-11-29 15:38:41 +07:00
Pedro M. Baeza
e4ab5792d2
[FIX] account_financial_report: Assure the aml order
...
If we don't assure the order for the search, there are chances that
several items for the same account and date appear in a incorrect order:
24/02/2023 - BNK1/2023/02/0011 - ...
27/02/2023 - BNK1/2023/02/0013 - ...
27/02/2023 - BNK1/2023/02/0012 - ...
29/02/2023 - BNK1/2023/02/0014 - ...
TT42098
2024-11-29 15:38:41 +07:00
Ediz Duman
182d3e6a5f
Translated using Weblate (Turkish)
...
Currently translated at 77.3% (195 of 252 strings)
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/tr/
2024-11-29 15:38:41 +07:00
Ediz Duman
64e5e62cb3
Added translation using Weblate (Turkish)
2024-11-29 15:38:41 +07:00
OCA-git-bot
05344b631a
account_financial_report 16.0.1.2.2
2024-11-29 15:38:41 +07:00
Víctor Martínez
defdc2f0fd
[IMP] account_financial_report: Remove amount_different_company_currency type from xlsx
2024-11-29 15:38:41 +07:00
Douglas Custódio
6c08332f17
Translated using Weblate (Portuguese (Brazil))
...
Currently translated at 78.5% (198 of 252 strings)
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/pt_BR/
2024-11-29 15:38:41 +07:00
OCA-git-bot
efd547fb7f
account_financial_report 16.0.1.2.1
2024-11-29 15:38:41 +07:00
Jairo Llopis
85632d7639
[FIX] account_financial_report: endless installation
...
Installing the module in a DB with more than 50000 accounts and groups made the install stall.
It turns out this method's implementation produced almost endless recursion. it was also depending on some fields that never were used.
Now it depends on the parent path, so when one group is moved to another parent, its computed accounts are recomputed, and parents' too, recursively.
Now, the method is much more performant, and the module gets installed in the same DB in 30s.
@moduon MT-1900
Co-authored-by: Eduardo De Miguel <edu@moduon.team >
2024-11-29 15:38:41 +07:00
Weblate
aeffc24060
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/
2024-11-29 15:38:41 +07:00
OCA-git-bot
33a7178d82
account_financial_report 16.0.1.2.0
2024-11-29 15:38:41 +07:00
oca-ci
5fc1cd6074
[UPD] Update account_financial_report.pot
2024-11-29 15:38:41 +07:00
Víctor Martínez
babce27fd8
[IMP] account_financial_report: Trial balance changes:
...
- Show Initial balance and Ending balance only when it is necessary with currency + hide currency column
- Show currency in the correct column
- Create a dict with all keys when it does not exist
- Prevent wrong values
TT41158
2024-11-29 15:38:41 +07:00
OCA-git-bot
80559a323f
account_financial_report 16.0.1.1.0
2024-11-29 15:38:41 +07:00
Víctor Martínez
fcdf1ba8bf
[FIX] account_financial_report: General ledger changes:
...
- Fix total_bal_curr value from General ledger to prevent wrong values
- Prevent wrong values
TT41041
2024-11-29 15:38:41 +07:00
OCA-git-bot
8c0dd65f7b
account_financial_report 16.0.1.0.2
2024-11-29 15:38:41 +07:00
AaronHForgeFlow
4104852ce0
[IMP] account_financial_report: extensibility xlsx: allow to use other column types
2024-11-29 15:38:41 +07:00
AaronHForgeFlow
74787ee588
[IMP] account_financial_report: extensibility: ml fields
2024-11-29 15:38:41 +07:00
Bole
9152880c5f
Translated using Weblate (Croatian)
...
Currently translated at 70.2% (177 of 252 strings)
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/hr/
2024-11-29 15:38:41 +07:00
OCA-git-bot
712d837870
account_financial_report 16.0.1.0.1
2024-11-29 15:38:41 +07:00
Reyes4711
981680063e
[16.0][FIX] account_financial_report: generate ledger document
...
In general ledger report shows an error due to the fact that the ball_curr varible does not generated
2024-11-29 15:38:41 +07:00
Weblate
10105cf95e
Update translation files
...
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: account-financial-reporting-16.0/account-financial-reporting-16.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-16-0/account-financial-reporting-16-0-account_financial_report/
2024-11-29 15:38:41 +07:00
OCA-git-bot
562b635954
[UPD] README.rst
2024-11-29 15:38:41 +07:00
oca-ci
b977a04a59
[UPD] Update account_financial_report.pot
2024-11-29 15:38:41 +07:00
David Ramia
0ca6453fbd
[IMP] account_financial_report: change report access groups to only 'Show Full Accounting Features'
2024-11-29 15:38:41 +07:00
David Ramia
4de4c3d2b1
[MIG] account_financial_report: Migration to 16.0
2024-11-29 15:38:41 +07:00
Víctor Martínez
0e20eeb133
[FIX] account_financial_report: Change partner_domain to misc_grouped_domain in general_ledger.
...
TT39754
2024-11-29 15:38:41 +07:00
Víctor Martínez
10a1fa4858
[FIX] account_financial_report: Set the correct value of column 'Cumul cur.' in general ledger
...
TT39754
2024-11-29 15:38:41 +07:00
Víctor Martínez
c9e2b9d17b
[IMP] account_financial_report: Improve domain to reduce code in general ledger.
...
TT39754
2024-11-29 15:38:41 +07:00
Omar (Comunitea)
8f6ee42a53
[IMP] account_financial_report: Completes the functionality of hide_parent_hierarchy_level field and fix the level of accounts for trial balance
2024-11-29 15:38:41 +07:00
Ernesto Tejeda
4af9e021a7
[IMP] account_financial_report: Remove 'Computed Accounts' option from 'trial balance'.
2024-11-29 15:38:41 +07:00
Ernesto Tejeda
9efca74d7d
[FIX] account_financial_report: trial balance hierarchy
...
When the report is generated with 'hierarchy' option checked,
the group hierarchy values are not calculated correctly
2024-11-29 15:38:41 +07:00
Ernesto Tejeda
dd455bacc4
[FIX] account_financial_report: Trial Balance with 'hide account at 0'
2024-11-29 15:38:41 +07:00
Ethan Hildick
7395d1b0ad
[14.0][FIX] account_financial_report: Run compute in multi
2024-11-29 15:38:41 +07:00
Alfredo Zamora
8e2e3f6e1f
[14.0][FIX] account_financial_report: sort based partner name in open_items report
2024-11-29 15:38:41 +07:00
Víctor Martínez
5868931866
[FIX] account_financial_report: Show records in general ledger when not grouped.
2024-11-29 15:38:41 +07:00
Víctor Martínez
f41e8a6bc2
[FIX] account_financial_report: Don't show cancelled items when clicking on interactive cells
...
TT39954
2024-11-29 15:38:41 +07:00
Ignacio Buioli
77d2da3725
Translated using Weblate (Spanish (Argentina))
...
Currently translated at 100.0% (258 of 258 strings)
Translation: account-financial-reporting-15.0/account-financial-reporting-15.0-account_financial_report
Translate-URL: https://translation.odoo-community.org/projects/account-financial-reporting-15-0/account-financial-reporting-15-0-account_financial_report/es_AR/
2024-11-29 15:38:41 +07:00
Víctor Martínez
f400a79317
[IMP] account_financial_report: Add tax grouping in general ledger
...
TT38721
2024-11-29 15:38:41 +07:00
Víctor Martínez
9807b68953
[IMP] account_financial_report: Refactor
...
TT38721
2024-11-29 15:38:41 +07:00
Víctor Martínez
4f8823b290
[IMP] account_financial_report: Add tax_line_id field to taxes column in general_ledger
...
TT38721
2024-11-29 15:38:41 +07:00