odoo-addon-account-reconcile-oca 16.0.2.4.0.2__py3-none-any.whl → 16.0.2.4.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_reconcile_oca/README.rst +6 -2
- odoo/addons/account_reconcile_oca/__manifest__.py +1 -1
- odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +1 -1
- odoo/addons/account_reconcile_oca/models/res_company.py +25 -0
- odoo/addons/account_reconcile_oca/static/description/index.html +20 -14
- {odoo_addon_account_reconcile_oca-16.0.2.4.0.2.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info}/METADATA +7 -3
- {odoo_addon_account_reconcile_oca-16.0.2.4.0.2.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info}/RECORD +9 -9
- {odoo_addon_account_reconcile_oca-16.0.2.4.0.2.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info}/WHEEL +0 -0
- {odoo_addon_account_reconcile_oca-16.0.2.4.0.2.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info}/top_level.txt +0 -0
@@ -1,3 +1,7 @@
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
3
|
+
:alt: Odoo Community Association
|
4
|
+
|
1
5
|
=====================
|
2
6
|
Account Reconcile Oca
|
3
7
|
=====================
|
@@ -7,13 +11,13 @@ Account Reconcile Oca
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
8
12
|
!! changes will be overwritten. !!
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
10
|
-
!! source digest: sha256:
|
14
|
+
!! source digest: sha256:816c95926f39a3558438e3a51f4eb99b4084fe910bfb57bb64633b1a8a4c3c4a
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
16
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
15
19
|
:alt: Beta
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
18
22
|
:alt: License: AGPL-3
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github
|
@@ -5,7 +5,7 @@
|
|
5
5
|
"name": "Account Reconcile Oca",
|
6
6
|
"summary": """
|
7
7
|
Reconcile addons for Odoo CE accounting""",
|
8
|
-
"version": "16.0.2.4.
|
8
|
+
"version": "16.0.2.4.2",
|
9
9
|
"license": "AGPL-3",
|
10
10
|
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
11
11
|
"maintainers": ["etobella"],
|
@@ -93,7 +93,7 @@ class AccountReconcileAbstract(models.AbstractModel):
|
|
93
93
|
"account_id": line.account_id.name_get()[0],
|
94
94
|
"partner_id": line.partner_id and line.partner_id.name_get()[0] or False,
|
95
95
|
"date": fields.Date.to_string(line.date),
|
96
|
-
"name": line.name,
|
96
|
+
"name": line.name or line.move_id.name,
|
97
97
|
"debit": amount if amount > 0 else 0.0,
|
98
98
|
"credit": -amount if amount < 0 else 0.0,
|
99
99
|
"amount": amount,
|
@@ -1,4 +1,5 @@
|
|
1
1
|
# Copyright 2024 Dixmit
|
2
|
+
# Copyright 2025 Tecnativa - Víctor Martínez
|
2
3
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
4
|
|
4
5
|
from odoo import fields, models
|
@@ -12,3 +13,27 @@ class ResCompany(models.Model):
|
|
12
13
|
._fields["reconcile_aggregate"]
|
13
14
|
.selection
|
14
15
|
)
|
16
|
+
|
17
|
+
def _get_fiscalyear_lock_statement_lines_redirect_action(
|
18
|
+
self, unreconciled_statement_lines
|
19
|
+
):
|
20
|
+
"""Define the appropriate views that this method will have, by default the
|
21
|
+
account module does not add any.
|
22
|
+
"""
|
23
|
+
action = super()._get_fiscalyear_lock_statement_lines_redirect_action(
|
24
|
+
unreconciled_statement_lines
|
25
|
+
)
|
26
|
+
if len(unreconciled_statement_lines) == 1:
|
27
|
+
custom_action = self.env["ir.actions.actions"]._for_xml_id(
|
28
|
+
"account_reconcile_oca.action_bank_statement_line_create"
|
29
|
+
)
|
30
|
+
action.update(views=custom_action["views"])
|
31
|
+
else:
|
32
|
+
custom_action = self.env["ir.actions.actions"]._for_xml_id(
|
33
|
+
"account_reconcile_oca.action_bank_statement_line_reconcile_all"
|
34
|
+
)
|
35
|
+
action.update(
|
36
|
+
view_mode=custom_action["view_mode"],
|
37
|
+
views=custom_action["views"],
|
38
|
+
)
|
39
|
+
return action
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<head>
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
6
|
-
<title>
|
6
|
+
<title>README.rst</title>
|
7
7
|
<style type="text/css">
|
8
8
|
|
9
9
|
/*
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
360
360
|
</style>
|
361
361
|
</head>
|
362
362
|
<body>
|
363
|
-
<div class="document"
|
364
|
-
<h1 class="title">Account Reconcile Oca</h1>
|
363
|
+
<div class="document">
|
365
364
|
|
365
|
+
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
368
|
+
</a>
|
369
|
+
<div class="section" id="account-reconcile-oca">
|
370
|
+
<h1>Account Reconcile Oca</h1>
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
368
373
|
!! changes will be overwritten. !!
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
370
|
-
!! source digest: sha256:
|
375
|
+
!! source digest: sha256:816c95926f39a3558438e3a51f4eb99b4084fe910bfb57bb64633b1a8a4c3c4a
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
372
|
-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/
|
377
|
+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-reconcile/tree/16.0/account_reconcile_oca"><img alt="OCA/account-reconcile" src="https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-reconcile-16-0/account-reconcile-16-0-account_reconcile_oca"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
378
|
<p>This addon allows to reconcile bank statements and account marked as <cite>reconcile</cite>.</p>
|
374
379
|
<p><strong>Table of contents</strong></p>
|
375
380
|
<div class="contents local topic" id="contents">
|
@@ -390,14 +395,14 @@ ul.auto-toc {
|
|
390
395
|
</ul>
|
391
396
|
</div>
|
392
397
|
<div class="section" id="usage">
|
393
|
-
<
|
398
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
|
394
399
|
<div class="section" id="bank-reconcile">
|
395
|
-
<
|
400
|
+
<h3><a class="toc-backref" href="#toc-entry-2">Bank reconcile</a></h3>
|
396
401
|
<p>Access <cite>Invoicing / Dashboard</cite> with a user with Full Acounting capabilities.
|
397
402
|
Select reconcile on the journal of your choice.</p>
|
398
403
|
</div>
|
399
404
|
<div class="section" id="account-reconcile">
|
400
|
-
<
|
405
|
+
<h3><a class="toc-backref" href="#toc-entry-3">Account reconcile</a></h3>
|
401
406
|
<p>Access <cite>Invoicing / Accounting / Actions / Reconcile</cite>
|
402
407
|
All the possible reconcile options will show and you will be able to reconcile properly.
|
403
408
|
You can access the same widget from accounts and Partners.</p>
|
@@ -407,14 +412,14 @@ You can access the same widget from accounts and Partners.</p>
|
|
407
412
|
</div>
|
408
413
|
</div>
|
409
414
|
<div class="section" id="known-issues-roadmap">
|
410
|
-
<
|
415
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h2>
|
411
416
|
<p>The following bugs are already detected:</p>
|
412
417
|
<ul class="simple">
|
413
418
|
<li>Creation of activities on the chatter do show automatically</li>
|
414
419
|
</ul>
|
415
420
|
</div>
|
416
421
|
<div class="section" id="bug-tracker">
|
417
|
-
<
|
422
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h2>
|
418
423
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/account-reconcile/issues">GitHub Issues</a>.
|
419
424
|
In case of trouble, please check there if your issue has already been reported.
|
420
425
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
@@ -422,22 +427,22 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
422
427
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
423
428
|
</div>
|
424
429
|
<div class="section" id="credits">
|
425
|
-
<
|
430
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Credits</a></h2>
|
426
431
|
<div class="section" id="authors">
|
427
|
-
<
|
432
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Authors</a></h3>
|
428
433
|
<ul class="simple">
|
429
434
|
<li>CreuBlanca</li>
|
430
435
|
<li>Dixmit</li>
|
431
436
|
</ul>
|
432
437
|
</div>
|
433
438
|
<div class="section" id="contributors">
|
434
|
-
<
|
439
|
+
<h3><a class="toc-backref" href="#toc-entry-8">Contributors</a></h3>
|
435
440
|
<ul class="simple">
|
436
441
|
<li>Enric Tobella</li>
|
437
442
|
</ul>
|
438
443
|
</div>
|
439
444
|
<div class="section" id="maintainers">
|
440
|
-
<
|
445
|
+
<h3><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h3>
|
441
446
|
<p>This module is maintained by the OCA.</p>
|
442
447
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
443
448
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
@@ -452,5 +457,6 @@ promote its widespread use.</p>
|
|
452
457
|
</div>
|
453
458
|
</div>
|
454
459
|
</div>
|
460
|
+
</div>
|
455
461
|
</body>
|
456
462
|
</html>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-account_reconcile_oca
|
3
|
-
Version: 16.0.2.4.
|
3
|
+
Version: 16.0.2.4.2
|
4
4
|
Summary: Reconcile addons for Odoo CE accounting
|
5
5
|
Home-page: https://github.com/OCA/account-reconcile
|
6
6
|
Author: CreuBlanca,Dixmit,Odoo Community Association (OCA)
|
@@ -14,6 +14,10 @@ Requires-Python: >=3.10
|
|
14
14
|
Requires-Dist: odoo-addon-account-statement-base<16.1dev,>=16.0dev
|
15
15
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
16
16
|
|
17
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
18
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
19
|
+
:alt: Odoo Community Association
|
20
|
+
|
17
21
|
=====================
|
18
22
|
Account Reconcile Oca
|
19
23
|
=====================
|
@@ -23,13 +27,13 @@ Account Reconcile Oca
|
|
23
27
|
!! This file is generated by oca-gen-addon-readme !!
|
24
28
|
!! changes will be overwritten. !!
|
25
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
26
|
-
!! source digest: sha256:
|
30
|
+
!! source digest: sha256:816c95926f39a3558438e3a51f4eb99b4084fe910bfb57bb64633b1a8a4c3c4a
|
27
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
28
32
|
|
29
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
30
34
|
:target: https://odoo-community.org/page/development-status
|
31
35
|
:alt: Beta
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
36
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
33
37
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
34
38
|
:alt: License: AGPL-3
|
35
39
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/account_reconcile_oca/README.rst,sha256=
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=AWPftlqfdLhL5IO3_H0lTeBDFRW8h6nO1LWx8AZw8f8,4210
|
2
2
|
odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
|
3
|
-
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=
|
3
|
+
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=toBLj6RiuOp3d19KiY1yEtDPpccd9W1W8ZOHeW_e8gc,1859
|
4
4
|
odoo/addons/account_reconcile_oca/hooks.py,sha256=l2-vYiPh-Wu_4Hi3GvfoUmc527S-Jozb07-DbP6LzDA,187
|
5
5
|
odoo/addons/account_reconcile_oca/demo/demo.xml,sha256=6k0uK-H1aBiyogVNhQMQfFGL5zUfUGV2M-sSV6LHeUs,204
|
6
6
|
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=ZraEc6dS7yyqCeS7IgfN-_P9LBxP5qWl0NDtKD0SCf0,27065
|
@@ -21,8 +21,8 @@ odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=CFqlLL
|
|
21
21
|
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=Tf7hO1INd-UMvaVOMZ7boiaELJhFp_nouZSf0xWuBIA,52214
|
22
22
|
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=8vluuQ0q0rGmVnJWyaSOAhTD0WZQuawKNqhUCEEYRvo,1306
|
23
23
|
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=yLNHitduzhS5ShrWWw31S5zirIadFsG8ga1gtXehRTc,1213
|
24
|
-
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=
|
25
|
-
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=
|
24
|
+
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=ByjBoDd9EECUZNfFGZ1d57QZjnYS8OkKrULNW6zkyg4,5034
|
25
|
+
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IlB-zFZnnaNFzeFFQn70qDUCcNXSHvVVlJ7PUneOcjc,1391
|
26
26
|
odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
|
27
27
|
odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst,sha256=GAYxzAZEN5wTBewMNx4PD2y_QoI-dzpokacQ9NnaEso,16
|
28
28
|
odoo/addons/account_reconcile_oca/readme/DESCRIPTION.rst,sha256=nc8nUT3VmwXIXvJXpq_hj2MeJzNnpsByDS4G3elJsrU,82
|
@@ -31,7 +31,7 @@ odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=Vr2Odh3VlB7F-pWq5CqnP5
|
|
31
31
|
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
32
32
|
odoo/addons/account_reconcile_oca/security/security.xml,sha256=i978n9S9IyLCKqJRvw4gBy8mQBf2-QTPyVu8cRyDuVc,385
|
33
33
|
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
34
|
-
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=
|
34
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Ai7tm50LuoHwF06UoYEQUXPlJYIi5D6ON7jCwGQ7nXM,14397
|
35
35
|
odoo/addons/account_reconcile_oca/static/description/reconcile-model-full.png,sha256=gzF5JHp5XjYi7VWFIknCzEIYDlfUKkeeH0nCFR2KLNU,135838
|
36
36
|
odoo/addons/account_reconcile_oca/static/description/reconcile-model-partial.png,sha256=YXlvsPVtDcHZvwv5yZfHGeyMvmxngzGsQWPicrLpFds,137158
|
37
37
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=4bw-Dc1pmVx6sv-fBzyPfBj-rZrqFUVZ8C19n9Pfpi0,4880
|
@@ -64,7 +64,7 @@ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-I
|
|
64
64
|
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
|
65
65
|
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
|
66
66
|
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
|
67
|
-
odoo_addon_account_reconcile_oca-16.0.2.4.
|
68
|
-
odoo_addon_account_reconcile_oca-16.0.2.4.
|
69
|
-
odoo_addon_account_reconcile_oca-16.0.2.4.
|
70
|
-
odoo_addon_account_reconcile_oca-16.0.2.4.
|
67
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info/METADATA,sha256=8bozO8xknngbujWRdAsjTUaYfAkiDq-jZlt47ZVeKYw,4823
|
68
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
69
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
70
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.2.dist-info/RECORD,,
|
File without changes
|