odoo-addon-account-reconcile-oca 16.0.1.2.12.2__py3-none-any.whl → 17.0.1.0.0.20__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 +19 -18
- odoo/addons/account_reconcile_oca/__manifest__.py +4 -1
- odoo/addons/account_reconcile_oca/hooks.py +2 -2
- odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +89 -8
- odoo/addons/account_reconcile_oca/i18n/ca.po +0 -5
- odoo/addons/account_reconcile_oca/i18n/es.po +2 -7
- odoo/addons/account_reconcile_oca/i18n/fr.po +0 -5
- odoo/addons/account_reconcile_oca/i18n/hr.po +0 -5
- odoo/addons/account_reconcile_oca/i18n/nl.po +0 -5
- odoo/addons/account_reconcile_oca/i18n/pt_BR.po +0 -5
- odoo/addons/account_reconcile_oca/i18n/sv.po +34 -39
- odoo/addons/account_reconcile_oca/i18n/tr.po +0 -5
- odoo/addons/account_reconcile_oca/models/__init__.py +3 -0
- odoo/addons/account_reconcile_oca/models/account_account_reconcile.py +2 -2
- odoo/addons/account_reconcile_oca/models/account_bank_statement.py +15 -0
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +98 -19
- odoo/addons/account_reconcile_oca/models/account_journal.py +15 -1
- odoo/addons/account_reconcile_oca/models/account_move_line.py +0 -1
- odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +4 -2
- odoo/addons/account_reconcile_oca/models/res_company.py +14 -0
- odoo/addons/account_reconcile_oca/models/res_config_settings.py +12 -0
- odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.md +1 -0
- odoo/addons/account_reconcile_oca/readme/{DESCRIPTION.rst → DESCRIPTION.md} +2 -1
- odoo/addons/account_reconcile_oca/readme/ROADMAP.md +3 -0
- odoo/addons/account_reconcile_oca/readme/USAGE.md +10 -0
- odoo/addons/account_reconcile_oca/static/description/index.html +10 -9
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +44 -4
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js +52 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js +3 -0
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js +3 -0
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js +1 -1
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js +11 -4
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js +22 -33
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js +62 -6
- odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js +10 -1
- odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss +16 -15
- odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +44 -10
- odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py +15 -9
- odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py +28 -21
- odoo/addons/account_reconcile_oca/views/account_account.xml +3 -3
- odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml +7 -7
- odoo/addons/account_reconcile_oca/views/account_bank_statement.xml +46 -0
- odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +71 -37
- odoo/addons/account_reconcile_oca/views/account_journal.xml +10 -4
- odoo/addons/account_reconcile_oca/views/account_move.xml +1 -1
- odoo/addons/account_reconcile_oca/views/account_move_line.xml +8 -3
- odoo/addons/account_reconcile_oca/views/res_config_settings.xml +24 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.12.2.dist-info → odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info}/METADATA +27 -28
- odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/RECORD +64 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.12.2.dist-info → odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info}/WHEEL +1 -1
- odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/top_level.txt +1 -0
- odoo/addons/account_reconcile_oca/i18n/it.po +0 -598
- odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py +0 -23
- odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst +0 -1
- odoo/addons/account_reconcile_oca/readme/ROADMAP.rst +0 -3
- odoo/addons/account_reconcile_oca/readme/USAGE.rst +0 -12
- odoo_addon_account_reconcile_oca-16.0.1.2.12.2.dist-info/RECORD +0 -61
- odoo_addon_account_reconcile_oca-16.0.1.2.12.2.dist-info/top_level.txt +0 -1
@@ -4,22 +4,28 @@
|
|
4
4
|
<odoo>
|
5
5
|
|
6
6
|
<record id="view_account_journal_form" model="ir.ui.view">
|
7
|
-
<field name="name">account.journal.inherit
|
7
|
+
<field name="name">account.journal.form.inherit</field>
|
8
8
|
<field name="model">account.journal</field>
|
9
9
|
<field name="inherit_id" ref="account.view_account_journal_form" />
|
10
10
|
<field name="arch" type="xml">
|
11
11
|
<field name="suspense_account_id" position="before">
|
12
12
|
<field
|
13
13
|
name="reconcile_mode"
|
14
|
-
|
14
|
+
required="type in ('bank', 'cash')"
|
15
|
+
invisible="type not in ('bank', 'cash')"
|
15
16
|
options="{'no_quick_create': True}"
|
16
17
|
groups="account.group_account_readonly"
|
17
18
|
/>
|
19
|
+
<field
|
20
|
+
name="reconcile_aggregate"
|
21
|
+
invisible="type not in ('bank', 'cash')"
|
22
|
+
groups="account.group_account_readonly"
|
23
|
+
/>
|
18
24
|
</field>
|
19
25
|
</field>
|
20
26
|
</record>
|
21
27
|
<record id="account_journal_dashboard_kanban_view" model="ir.ui.view">
|
22
|
-
<field name="name">account.journal.inherit
|
28
|
+
<field name="name">account.journal.kanban.inherit</field>
|
23
29
|
<field name="model">account.journal</field>
|
24
30
|
<field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" />
|
25
31
|
<field name="arch" type="xml">
|
@@ -59,7 +65,7 @@
|
|
59
65
|
</t>
|
60
66
|
</xpath>
|
61
67
|
|
62
|
-
<xpath expr="//
|
68
|
+
<xpath expr="//h5[@id='card_action_view_menus']" position="after">
|
63
69
|
<div>
|
64
70
|
<a
|
65
71
|
role="menuitem"
|
@@ -8,14 +8,19 @@
|
|
8
8
|
<field name="model">account.move.line</field>
|
9
9
|
<field name="priority">99</field>
|
10
10
|
<field name="arch" type="xml">
|
11
|
-
<tree
|
11
|
+
<tree
|
12
|
+
js_class="reconcile_move_line"
|
13
|
+
create="0"
|
14
|
+
edit="0"
|
15
|
+
export_xlsx="false"
|
16
|
+
>
|
12
17
|
<field name="date" />
|
13
18
|
<field name="move_id" optional="show" />
|
14
19
|
<field name="invoice_due_date" optional="show" />
|
15
20
|
<field name="account_id" optional="show" />
|
16
21
|
<field name="partner_id" />
|
17
|
-
<field name="company_currency_id"
|
18
|
-
<field name="currency_id"
|
22
|
+
<field name="company_currency_id" column_invisible="1" />
|
23
|
+
<field name="currency_id" column_invisible="1" />
|
19
24
|
<field name="name" optional="show" />
|
20
25
|
<field name="amount_residual_currency" optional="hide" />
|
21
26
|
<field name="amount_residual" optional="show" />
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<!-- Copyright 2024 Dixmit
|
3
|
+
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
4
|
+
<odoo>
|
5
|
+
|
6
|
+
<record model="ir.ui.view" id="res_config_settings_form_view">
|
7
|
+
<field name="model">res.config.settings</field>
|
8
|
+
<field name="inherit_id" ref="account.res_config_settings_view_form" />
|
9
|
+
<field name="arch" type="xml">
|
10
|
+
<block id="bank_cash" position="inside">
|
11
|
+
<setting
|
12
|
+
id="reconcile_aggregate"
|
13
|
+
title="Standard aggregation to use on bank reconciliation"
|
14
|
+
string="Reconcile aggregation"
|
15
|
+
>
|
16
|
+
<field name="reconcile_aggregate" />
|
17
|
+
</setting>
|
18
|
+
</block>
|
19
|
+
</field>
|
20
|
+
</record>
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
</odoo>
|
@@ -1,19 +1,19 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
|
-
Name: odoo-addon-
|
3
|
-
Version:
|
2
|
+
Name: odoo-addon-account_reconcile_oca
|
3
|
+
Version: 17.0.1.0.0.20
|
4
|
+
Requires-Python: >=3.10
|
5
|
+
Requires-Dist: odoo-addon-account_reconcile_model_oca>=17.0dev,<17.1dev
|
6
|
+
Requires-Dist: odoo-addon-account_statement_base>=17.0dev,<17.1dev
|
7
|
+
Requires-Dist: odoo>=17.0a,<17.1dev
|
4
8
|
Summary: Reconcile addons for Odoo CE accounting
|
5
9
|
Home-page: https://github.com/OCA/account-reconcile
|
10
|
+
License: AGPL-3
|
6
11
|
Author: CreuBlanca,Dixmit,Odoo Community Association (OCA)
|
7
12
|
Author-email: support@odoo-community.org
|
8
|
-
License: AGPL-3
|
9
|
-
Platform: UNKNOWN
|
10
13
|
Classifier: Programming Language :: Python
|
11
14
|
Classifier: Framework :: Odoo
|
12
|
-
Classifier: Framework :: Odoo ::
|
15
|
+
Classifier: Framework :: Odoo :: 17.0
|
13
16
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
14
|
-
Requires-Python: >=3.10
|
15
|
-
Requires-Dist: odoo-addon-account-statement-base <16.1dev,>=16.0dev
|
16
|
-
Requires-Dist: odoo <16.1dev,>=16.0a
|
17
17
|
|
18
18
|
=====================
|
19
19
|
Account Reconcile Oca
|
@@ -24,7 +24,7 @@ Account Reconcile Oca
|
|
24
24
|
!! This file is generated by oca-gen-addon-readme !!
|
25
25
|
!! changes will be overwritten. !!
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
27
|
-
!! source digest: sha256:
|
27
|
+
!! source digest: sha256:eaa1b6b3dece89dbb5fd23794f5d597769b2e3cc3823ffb127b4dd7808251d19
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
29
29
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -34,18 +34,19 @@ Account Reconcile Oca
|
|
34
34
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
35
35
|
:alt: License: AGPL-3
|
36
36
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github
|
37
|
-
:target: https://github.com/OCA/account-reconcile/tree/
|
37
|
+
:target: https://github.com/OCA/account-reconcile/tree/17.0/account_reconcile_oca
|
38
38
|
:alt: OCA/account-reconcile
|
39
39
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
40
|
-
:target: https://translation.odoo-community.org/projects/account-reconcile-
|
40
|
+
:target: https://translation.odoo-community.org/projects/account-reconcile-17-0/account-reconcile-17-0-account_reconcile_oca
|
41
41
|
:alt: Translate me on Weblate
|
42
42
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
43
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=
|
43
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=17.0
|
44
44
|
:alt: Try me on Runboat
|
45
45
|
|
46
46
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
47
47
|
|
48
|
-
This addon allows to reconcile bank statements and account marked as
|
48
|
+
This addon allows to reconcile bank statements and account marked as
|
49
|
+
reconcile.
|
49
50
|
|
50
51
|
**Table of contents**
|
51
52
|
|
@@ -56,16 +57,16 @@ Usage
|
|
56
57
|
=====
|
57
58
|
|
58
59
|
Bank reconcile
|
59
|
-
|
60
|
+
--------------
|
60
61
|
|
61
|
-
Access
|
62
|
-
Select reconcile on the journal of your choice.
|
62
|
+
Access Invoicing / Dashboard with a user with Full Acounting
|
63
|
+
capabilities. Select reconcile on the journal of your choice.
|
63
64
|
|
64
65
|
Account reconcile
|
65
|
-
|
66
|
+
-----------------
|
66
67
|
|
67
|
-
Access
|
68
|
-
|
68
|
+
Access Invoicing / Accounting / Actions / Reconcile All the possible
|
69
|
+
reconcile options will show and you will be able to reconcile properly.
|
69
70
|
You can access the same widget from accounts and Partners.
|
70
71
|
|
71
72
|
Known issues / Roadmap
|
@@ -73,7 +74,7 @@ Known issues / Roadmap
|
|
73
74
|
|
74
75
|
The following bugs are already detected:
|
75
76
|
|
76
|
-
|
77
|
+
- Creation of activities on the chatter do show automatically
|
77
78
|
|
78
79
|
Bug Tracker
|
79
80
|
===========
|
@@ -81,7 +82,7 @@ Bug Tracker
|
|
81
82
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-reconcile/issues>`_.
|
82
83
|
In case of trouble, please check there if your issue has already been reported.
|
83
84
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
84
|
-
`feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20account_reconcile_oca%0Aversion:%
|
85
|
+
`feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20account_reconcile_oca%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
85
86
|
|
86
87
|
Do not contact contributors directly about support or help with technical issues.
|
87
88
|
|
@@ -89,18 +90,18 @@ Credits
|
|
89
90
|
=======
|
90
91
|
|
91
92
|
Authors
|
92
|
-
|
93
|
+
-------
|
93
94
|
|
94
95
|
* CreuBlanca
|
95
96
|
* Dixmit
|
96
97
|
|
97
98
|
Contributors
|
98
|
-
|
99
|
+
------------
|
99
100
|
|
100
|
-
|
101
|
+
- Enric Tobella
|
101
102
|
|
102
103
|
Maintainers
|
103
|
-
|
104
|
+
-----------
|
104
105
|
|
105
106
|
This module is maintained by the OCA.
|
106
107
|
|
@@ -120,8 +121,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
120
121
|
|
121
122
|
|maintainer-etobella|
|
122
123
|
|
123
|
-
This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/
|
124
|
+
This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/17.0/account_reconcile_oca>`_ project on GitHub.
|
124
125
|
|
125
126
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
126
|
-
|
127
|
-
|
@@ -0,0 +1,64 @@
|
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=uRx20QI-ffjNCgPG1ExDXIreHk3YGrt4W53LfMm3mrE,3705
|
2
|
+
odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
|
3
|
+
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=UcSS71TAhpNSk1SlGVQBwIQKLkv0VtTw8VWXsyJsOdU,1865
|
4
|
+
odoo/addons/account_reconcile_oca/hooks.py,sha256=SfJ-GlIGYL1kf8xhQs5qDqwNnE8S9Gs-5dP3vOD-IMM,182
|
5
|
+
odoo/addons/account_reconcile_oca/demo/demo.xml,sha256=6k0uK-H1aBiyogVNhQMQfFGL5zUfUGV2M-sSV6LHeUs,204
|
6
|
+
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=NqjiQangfJbyut75b90qoKJNxuUkABxRiA5CZ0_6_lY,24873
|
7
|
+
odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=fuHqEPtI9NRQlCpJ7O74MkIgfmm0wH4nu7SuoeT3NJw,23705
|
8
|
+
odoo/addons/account_reconcile_oca/i18n/es.po,sha256=sOEXESYdFPQvBtGmpX4oX8N65nSPWrzvh_3Ts5boqjY,23989
|
9
|
+
odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=7jl7_QBloqWLiviD8nZIp2tbPKpQdmYZ0gIqrbrjNoM,23934
|
10
|
+
odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=UTH2eeqv8I5qH_5uS6Ty739bz9wr3yeWMIfyw5D7ygw,23235
|
11
|
+
odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=xbo-qoUTTZ62RbGFYTzB3o2A6U1kdY0dooHObWrmwok,23775
|
12
|
+
odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=OuI0YfT8OjYu-PezT1i5yd-T9x-yhOoCjk7ti58irSA,23947
|
13
|
+
odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=rPPcgcd70BuvZNHC-l98Nw-Ceu2sBeIKRA_HfQtKtDw,23564
|
14
|
+
odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=EB9K-ZISDdIN-9KEabi3Cr35a2PajvS-IwZVQZjut98,23035
|
15
|
+
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
|
16
|
+
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=H84BGOSCCjrdrocXhq6c0jJb9Cm6BySg5Ay-UQmZ1z4,6285
|
17
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
|
18
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=ffZVKmG_yV2EZ70KWchDNgy-6iVf25dlXDVbn-zXx-8,34028
|
19
|
+
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=Z9sJu1qeWt9eD8AM6vl78LcRB-o8owbS9IbopLjOAeA,1007
|
20
|
+
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=Xk7DcYAAh6lSnrf4u8dJx_2QRPQhYVX028vXL---0js,1217
|
21
|
+
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=2mrEWTxwZXCsFcTA8wzf3rCwlREMY9wiGAyaEblcKPw,4139
|
22
|
+
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
|
23
|
+
odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
|
24
|
+
odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.md,sha256=subC7gWq_kRC_nJfLRfrI_IXlNoGgWaq9Es5qXuMa1w,16
|
25
|
+
odoo/addons/account_reconcile_oca/readme/DESCRIPTION.md,sha256=zG0ZonPDBNpqhobe3NhDifYpE0Pm-yhUlwqndR732IY,80
|
26
|
+
odoo/addons/account_reconcile_oca/readme/ROADMAP.md,sha256=fxR8QnC8BkHyODdPScpgJZ7K_fXxarzkGTjAk-zCv4M,104
|
27
|
+
odoo/addons/account_reconcile_oca/readme/USAGE.md,sha256=yNLGo35X7TW2TLyJqHU-gdQiXazW8Iu59rI0dpa4WjM,365
|
28
|
+
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
29
|
+
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
30
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Uw-hY26Gwrr8gXdj4RwdvPAExEvExUJRWW241wmaQyY,13707
|
31
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=bdOQxAg_1tQ1XH87z0OOCViERNu_aYMDy3pZ0YNX2aQ,4819
|
32
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
|
33
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=9NSr3iZ7H_QGTpixW5D4WEJuD_u4KRpdYwRmKqcML_k,2117
|
34
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js,sha256=cVNQ5mpho24LnHPN5uC2aAU8cD729TjaO85z5mq9kag,535
|
35
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=7EyyPuo9rBx1eZiYL6mpR2fIqNvP33JvOJiI9NA6cXo,1748
|
36
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js,sha256=csG1CGQJEj3atDyyKSpkhIPUIfOuWJAbS00aYDMFmdY,974
|
37
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js,sha256=4QBWIcvrYTVKnFdKbRLkRtEi0s_bYJYLSwPIZeeAs5s,332
|
38
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
|
39
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js,sha256=JQeFCL7UxM4AhF9LZZAiLGUnHf--ftbS9E4T5CxswDU,1188
|
40
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_view.esm.js,sha256=GXC6xTc3VYTXEZvX-bn9SH2ylQbN_4gXiLeIwuMIfxI,381
|
41
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=QWLzFB7fNAK1hj_mUGDAeu5J8LmTDj6kOkswtyM5G6s,598
|
42
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=TwiLpAbPJtr9VDZs8ZDIVFoieiogueHnpw0n0a1P_Kk,605
|
43
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
|
44
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=_Q01ZrNtgaxhJRvlB_UF2gWDLGhVX1lljPmf8ZxXJ3c,901
|
45
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=-Tjt96wi2UnHK4FM1-rqzd97Ht82HqA8RhHCLmVfxyA,2863
|
46
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=G5lbsagkTYErqNlPvhW0vfljQWRKI4eI5spDlH3_emk,3772
|
47
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=rlwwhfX9jK65Lze3HeXFmW-p6Lo_38ZsyTLS7sx4XV8,1223
|
48
|
+
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=ewCAJf_W-NS8avSFN0YVbu41qL3wdbh9jlO0aj1PN3M,2147
|
49
|
+
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=hnXWp6pYXbAGf9EjmZaGDb4GHe1CBLGZMbbwbz0WuaY,8637
|
50
|
+
odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
|
51
|
+
odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=MP5M-NsVhMoYiU675hr1nsvZRRK-4e5KUYMCCKTUHB8,10807
|
52
|
+
odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=B7i-37PBP6cx5iWAWck0f1KTCG1ay0wGoxzJLdibZeY,39127
|
53
|
+
odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=0RiPmzfRUj54oMYKWM7mLnZL-5IhI5W8fiRruHL0SYc,866
|
54
|
+
odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=BB5r3voPKsiTaDywwfS7DMKKubd1uiqyul08UYK9vuc,6944
|
55
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=6AA1iZR1EmnVYyBXhLw51QQS1k9QmXLLNMAPDOl8Oz4,1813
|
56
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=DrPBdQaYUM2BxlhjFfwWFA0amTNnvd_oaL_V6pd53v0,20822
|
57
|
+
odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=T5tZ5Ev0psYp78f3NkNVJjWMUOssYJ7WzLpsMKyOvI4,3378
|
58
|
+
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=vMLfS41u1POGDRaRwihuvcJjJpJcduwLy9-9WwhdS0U,914
|
59
|
+
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BKw8tzzhH7T8ifwQxt56allkr447CG59YsLkRB4hm6w,5373
|
60
|
+
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=PxIqWILg_L_ahR-SDlDWEqWDJKNumPRifFAGF0BG57E,807
|
61
|
+
odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/METADATA,sha256=47b5eGHYf0iC3jDRQg4ffiKXSQSpXn_nGKAouOknOAI,4393
|
62
|
+
odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
|
63
|
+
odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
64
|
+
odoo_addon_account_reconcile_oca-17.0.1.0.0.20.dist-info/RECORD,,
|
@@ -0,0 +1 @@
|
|
1
|
+
odoo
|