odoo-addon-account-reconcile-oca 16.0.2.4.4.1__py3-none-any.whl → 16.0.2.4.5__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 +1 -1
- odoo/addons/account_reconcile_oca/__manifest__.py +1 -1
- odoo/addons/account_reconcile_oca/models/account_journal.py +9 -6
- odoo/addons/account_reconcile_oca/static/description/index.html +1 -1
- {odoo_addon_account_reconcile_oca-16.0.2.4.4.1.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info}/METADATA +2 -2
- {odoo_addon_account_reconcile_oca-16.0.2.4.4.1.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info}/RECORD +8 -8
- {odoo_addon_account_reconcile_oca-16.0.2.4.4.1.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info}/WHEEL +0 -0
- {odoo_addon_account_reconcile_oca-16.0.2.4.4.1.dist-info → odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info}/top_level.txt +0 -0
@@ -11,7 +11,7 @@ Account Reconcile Oca
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
12
12
|
!! changes will be overwritten. !!
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
14
|
-
!! source digest: sha256:
|
14
|
+
!! source digest: sha256:7f43bb2d4ad1d32679e7ea973dbe721fc6bebc7e94b4b13f34077b3de87fc9fa
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
16
16
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -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.5",
|
9
9
|
"license": "AGPL-3",
|
10
10
|
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
11
11
|
"maintainers": ["etobella"],
|
@@ -33,10 +33,13 @@ class AccountJournal(models.Model):
|
|
33
33
|
return _("Well done! Everything has been reconciled")
|
34
34
|
|
35
35
|
def open_action(self):
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
)
|
36
|
+
"""
|
37
|
+
Return OCA *Reconcile All* when core *Bank Statements* tree is requested;
|
38
|
+
leave other actions unchanged.
|
39
|
+
"""
|
40
|
+
action = super().open_action()
|
41
|
+
if action.get("xml_id") == "account.action_bank_statement_tree":
|
42
|
+
action = self.env["ir.actions.actions"]._for_xml_id(
|
43
|
+
"account_reconcile_oca.action_bank_statement_line_reconcile_all"
|
44
|
+
)
|
42
45
|
return action
|
@@ -372,7 +372,7 @@ ul.auto-toc {
|
|
372
372
|
!! This file is generated by oca-gen-addon-readme !!
|
373
373
|
!! changes will be overwritten. !!
|
374
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
375
|
-
!! source digest: sha256:
|
375
|
+
!! source digest: sha256:7f43bb2d4ad1d32679e7ea973dbe721fc6bebc7e94b4b13f34077b3de87fc9fa
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
377
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>
|
378
378
|
<p>This addon allows to reconcile bank statements and account marked as <cite>reconcile</cite>.</p>
|
@@ -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.5
|
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)
|
@@ -27,7 +27,7 @@ Account Reconcile Oca
|
|
27
27
|
!! This file is generated by oca-gen-addon-readme !!
|
28
28
|
!! changes will be overwritten. !!
|
29
29
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
30
|
-
!! source digest: sha256:
|
30
|
+
!! source digest: sha256:7f43bb2d4ad1d32679e7ea973dbe721fc6bebc7e94b4b13f34077b3de87fc9fa
|
31
31
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
32
32
|
|
33
33
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,6 +1,6 @@
|
|
1
|
-
odoo/addons/account_reconcile_oca/README.rst,sha256=
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=8fv79qeEtqi5BQ4nEsWsspF3M8Z23YB1J5q0EWZz4V8,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=C_oY41PGvqRc6sTqD0-CMzoKT1hQlqTjQJMIazAarfY,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=U3FnhiYPGvtS34Pj9ukKklmAgC5ie3Ywb0br8u6FN9k,27287
|
@@ -20,7 +20,7 @@ odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJ
|
|
20
20
|
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=kO8O0cfsxwXc--MbaJ12sc9QhOIVMVrl5rYpmnrVO-0,7523
|
21
21
|
odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=CFqlLLtmTqmt5yH3v_pkUfkZezSb1nEhBTu2J5gCjxM,1034
|
22
22
|
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=DqD1MtRMWgHHweOQqePcdJOAJv3yuODI9ybHyBAiOQo,52954
|
23
|
-
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=
|
23
|
+
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=_nEkPbyL_osFfl-cCXJieLCWv60aPR1QjIc_7kpKaeM,1462
|
24
24
|
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=yLNHitduzhS5ShrWWw31S5zirIadFsG8ga1gtXehRTc,1213
|
25
25
|
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=ByjBoDd9EECUZNfFGZ1d57QZjnYS8OkKrULNW6zkyg4,5034
|
26
26
|
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IlB-zFZnnaNFzeFFQn70qDUCcNXSHvVVlJ7PUneOcjc,1391
|
@@ -32,7 +32,7 @@ odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=Vr2Odh3VlB7F-pWq5CqnP5
|
|
32
32
|
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
33
33
|
odoo/addons/account_reconcile_oca/security/security.xml,sha256=i978n9S9IyLCKqJRvw4gBy8mQBf2-QTPyVu8cRyDuVc,385
|
34
34
|
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
35
|
-
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=
|
35
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=H-g_z9C8sfjUGd8C9gtBQgD2Te71H-MShICkRLGhV7g,14397
|
36
36
|
odoo/addons/account_reconcile_oca/static/description/reconcile-model-full.png,sha256=gzF5JHp5XjYi7VWFIknCzEIYDlfUKkeeH0nCFR2KLNU,135838
|
37
37
|
odoo/addons/account_reconcile_oca/static/description/reconcile-model-partial.png,sha256=YXlvsPVtDcHZvwv5yZfHGeyMvmxngzGsQWPicrLpFds,137158
|
38
38
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=4bw-Dc1pmVx6sv-fBzyPfBj-rZrqFUVZ8C19n9Pfpi0,4880
|
@@ -65,7 +65,7 @@ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-I
|
|
65
65
|
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
|
66
66
|
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
|
67
67
|
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
|
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.
|
71
|
-
odoo_addon_account_reconcile_oca-16.0.2.4.
|
68
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info/METADATA,sha256=Gd1leycvlUj-5ng9y3c7BXgNYT4sGPU4s4QCDBoNlvg,4823
|
69
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
70
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
71
|
+
odoo_addon_account_reconcile_oca-16.0.2.4.5.dist-info/RECORD,,
|
File without changes
|