odoo-addon-account-reconcile-oca 16.0.1.2.13.1__py3-none-any.whl → 16.0.1.2.14.1__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 +3 -1
- odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +108 -1
- odoo/addons/account_reconcile_oca/i18n/ca.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/es.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/fr.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/hr.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/it.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/nl.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/pt_BR.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/sv.po +108 -1
- odoo/addons/account_reconcile_oca/i18n/tr.po +108 -1
- odoo/addons/account_reconcile_oca/models/__init__.py +3 -0
- odoo/addons/account_reconcile_oca/models/account_bank_statement.py +15 -0
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +74 -0
- odoo/addons/account_reconcile_oca/models/account_journal.py +11 -0
- 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/static/description/index.html +1 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +38 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js +53 -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/widgets/reconcile_data_widget.esm.js +0 -2
- odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss +16 -0
- odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +37 -0
- odoo/addons/account_reconcile_oca/views/account_bank_statement.xml +46 -0
- odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +20 -1
- odoo/addons/account_reconcile_oca/views/account_journal.xml +5 -0
- odoo/addons/account_reconcile_oca/views/res_config_settings.xml +38 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info}/METADATA +2 -2
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info}/RECORD +33 -28
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info}/WHEEL +0 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info}/top_level.txt +0 -0
@@ -11,9 +11,28 @@
|
|
11
11
|
<field name="is_reconciled" />
|
12
12
|
<field name="currency_id" />
|
13
13
|
<field name="foreign_currency_id" />
|
14
|
+
<field name="statement_id" />
|
15
|
+
<field name="statement_balance_end_real" />
|
14
16
|
<field name="to_check" />
|
17
|
+
<field name="reconcile_aggregate" />
|
18
|
+
<field name="aggregate_id" />
|
19
|
+
<field name="aggregate_name" />
|
15
20
|
<templates>
|
16
21
|
<t t-name="kanban-box">
|
22
|
+
<div
|
23
|
+
t-if="record.reconcile_aggregate.raw_value == 'statement' and !record.statement_id.raw_value"
|
24
|
+
class="o_reconcile_create_statement text-center"
|
25
|
+
>
|
26
|
+
<a
|
27
|
+
role="button"
|
28
|
+
class="btn btn-secondary btn-sm"
|
29
|
+
tabindex="-1"
|
30
|
+
type="object"
|
31
|
+
name="add_statement"
|
32
|
+
>
|
33
|
+
Statement
|
34
|
+
</a>
|
35
|
+
</div>
|
17
36
|
<div
|
18
37
|
t-attf-class="oe_kanban_card oe_kanban_global_click"
|
19
38
|
style="width:100%"
|
@@ -300,7 +319,7 @@
|
|
300
319
|
</field>
|
301
320
|
</record>
|
302
321
|
<record id="action_bank_statement_line_reconcile" model="ir.actions.act_window">
|
303
|
-
<field name="name">
|
322
|
+
<field name="name">Statement lines</field>
|
304
323
|
<field name="res_model">account.bank.statement.line</field>
|
305
324
|
<field name="domain">[('journal_id', '=', active_id)]</field>
|
306
325
|
<field
|
@@ -15,6 +15,11 @@
|
|
15
15
|
options="{'no_quick_create': True}"
|
16
16
|
groups="account.group_account_readonly"
|
17
17
|
/>
|
18
|
+
<field
|
19
|
+
name="reconcile_aggregate"
|
20
|
+
attrs="{'invisible': [('type','not in', ['bank', 'cash'])]}"
|
21
|
+
groups="account.group_account_readonly"
|
22
|
+
/>
|
18
23
|
</field>
|
19
24
|
</field>
|
20
25
|
</record>
|
@@ -0,0 +1,38 @@
|
|
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
|
+
<xpath expr="//div[@id='bank_cash']" position="inside">
|
11
|
+
<div
|
12
|
+
class="col-12 col-lg-6 o_setting_box"
|
13
|
+
id="reconcile_aggregate"
|
14
|
+
title="Standard aggregation to use on bank reconciliation"
|
15
|
+
>
|
16
|
+
<div class="o_setting_left_pane">
|
17
|
+
</div>
|
18
|
+
<div class="o_setting_right_pane">
|
19
|
+
<label
|
20
|
+
for="reconcile_aggregate"
|
21
|
+
string="Reconcile aggregation"
|
22
|
+
/>
|
23
|
+
<div class="o_setting_container">
|
24
|
+
<field name="reconcile_aggregate" />
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="text-muted">
|
28
|
+
Standard aggregation to use on bank reconciliation
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</xpath>
|
33
|
+
</field>
|
34
|
+
</record>
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
</odoo>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-account-reconcile-oca
|
3
|
-
Version: 16.0.1.2.
|
3
|
+
Version: 16.0.1.2.14.1
|
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)
|
@@ -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:ae1b52beaba19e5505c337af5a93c52cf915340af8a58faf0ae74d79c378e6f7
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
29
29
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,37 +1,40 @@
|
|
1
|
-
odoo/addons/account_reconcile_oca/README.rst,sha256=
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=afNfJ1kBaS4H2SG94o-yQWMCvc9n4TwyGmCMu_iFN3c,3709
|
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=gYnAZFDXn5PIRPeA8g7BLLb7qteTKF6XXZ-hKY0tCK4,1827
|
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
|
-
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=
|
7
|
-
odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=
|
8
|
-
odoo/addons/account_reconcile_oca/i18n/es.po,sha256=
|
9
|
-
odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=
|
10
|
-
odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=
|
11
|
-
odoo/addons/account_reconcile_oca/i18n/it.po,sha256=
|
12
|
-
odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=
|
13
|
-
odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=
|
14
|
-
odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=
|
15
|
-
odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=
|
6
|
+
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=UZyARD1kCXXPDRyO0KLVkv12XDLCh4sp0pcJVU8ZkoI,25739
|
7
|
+
odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=IDwCtxFhOfT6ym4k7fGZCD2xg-h2OtQhHsbFsmXzy20,27646
|
8
|
+
odoo/addons/account_reconcile_oca/i18n/es.po,sha256=uYGi3OP2LXn2FxtGKhqBV4EI-8qKCGeMHMSOHUJSE5k,28053
|
9
|
+
odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=dANBAnk7lRXRS-bnDVinq3m5Hh0hztqxCFNHHUwudHQ,27875
|
10
|
+
odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=nCKoHQlEpjcCtJLIxyRiYCv-ya0PjcqNDucq4VNbgvY,27176
|
11
|
+
odoo/addons/account_reconcile_oca/i18n/it.po,sha256=bnGZCcKvvV5HMRV59SAaBbXmKd9F_k_HVExbFtQk-R8,27901
|
12
|
+
odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=IFFhooX7kYuJeCvpXRWxpRVAlD4SLjDgGEX0euZFz90,27716
|
13
|
+
odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=FUvnNgsi2g2XeR0i1Gmu_vjMsaaxUH1ELQdeGX4Zs4s,28057
|
14
|
+
odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=Z4OSAXZL1uafzBxo2B9yDp6a0nBvy2lYs7Gf3mDtOcs,27710
|
15
|
+
odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=wiPGUrMrLsG1QaJ114MuRaiB3eMge7hwmFV75nwhomo,26976
|
16
16
|
odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py,sha256=Z_OLx-fclggJUAtYpepXRAAc68AizrIN6MWtl4zp0Qw,642
|
17
|
-
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=
|
17
|
+
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
|
18
18
|
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=Yyd1ww8ybpC4s6YiM2Z_oVLR2pkBEn6Wx6yRYpiYI-Q,6282
|
19
|
-
odoo/addons/account_reconcile_oca/models/
|
20
|
-
odoo/addons/account_reconcile_oca/models/
|
19
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
|
20
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=C9cXEY0P3SBeSFgc-pr_0jxW4MMszY7-tC6XNC-0aOE,33539
|
21
|
+
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=kSDYeTyI26BKKQuFnGH7IRbPttjFHvwycUfwhgT5PB0,954
|
21
22
|
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=DGoyszrkLSlk42j-v_2J6tWbbU3VLtyXCh9zpGDl9UM,1100
|
22
23
|
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=RXnBqfV8mSHv3dVjy-752l1ALZ9rfQLxR_xz5mdyTOQ,4072
|
24
|
+
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
|
25
|
+
odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
|
23
26
|
odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst,sha256=GAYxzAZEN5wTBewMNx4PD2y_QoI-dzpokacQ9NnaEso,16
|
24
27
|
odoo/addons/account_reconcile_oca/readme/DESCRIPTION.rst,sha256=nc8nUT3VmwXIXvJXpq_hj2MeJzNnpsByDS4G3elJsrU,82
|
25
28
|
odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_WGKVTLQK-9RCMgCjGT-TAJU,104
|
26
29
|
odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
|
27
30
|
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
28
31
|
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
29
|
-
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=
|
30
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=
|
32
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Zi_YRTgRucWyUWleUv_20r8RfyVGPQMxyjLdrXlrZnE,13746
|
33
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=nDTsO-XR9jF4krkW7ZhWf8SdeCERH8uDXGreEZ9USog,4808
|
31
34
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
|
32
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=
|
35
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
|
33
36
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js,sha256=cVNQ5mpho24LnHPN5uC2aAU8cD729TjaO85z5mq9kag,535
|
34
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=
|
37
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=7EyyPuo9rBx1eZiYL6mpR2fIqNvP33JvOJiI9NA6cXo,1748
|
35
38
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js,sha256=csG1CGQJEj3atDyyKSpkhIPUIfOuWJAbS00aYDMFmdY,974
|
36
39
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js,sha256=4QBWIcvrYTVKnFdKbRLkRtEi0s_bYJYLSwPIZeeAs5s,332
|
37
40
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
|
@@ -41,21 +44,23 @@ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_mo
|
|
41
44
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=UhOEnNAeVyXR4v4c4kMTne6Rw9_y3IOXWo-jUn7Kx-Q,594
|
42
45
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
|
43
46
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=9vYBd7Nr-csZujbLx6VmdZOZ7T4JTtqrM7w4slrWzIw,541
|
44
|
-
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=
|
47
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=y44wPoddhxNJISNAFXYrAonv5CJQnC2GvlYRhQzCrrU,3123
|
45
48
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=s_GHeElGkhsa2nQvd0eKxXdrsMPL2g0YfPC-REyUqew,1604
|
46
49
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=zH2cqAerAF4cYDQMyMYTeFKoPIo1v_UmeFyPiwAz8tM,943
|
47
|
-
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=
|
48
|
-
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=
|
50
|
+
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=qL7RJ_6X-qhUqAxPKJNglQ2k4rFOH96jMX292jt2WW8,2638
|
51
|
+
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=sLoq3aN8Rs4Ex9dyEqENhRU9FYT9Cm1R_KrI4zk7FJY,8698
|
49
52
|
odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
|
50
53
|
odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=opQs4FgChPdphc25Jzs07TuYxoVGBCj6IAPueMLNkH0,10576
|
51
54
|
odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=RnWWQIhXINja99G9Fs7O_RQowJnwfy80yOYL7C0EL7Y,38809
|
52
55
|
odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=Z6S9dDF2CnaSl8CYw69dxJiuVznJZzZX2BrhaDeMP3c,916
|
53
56
|
odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=7QxYjURyRa0XvtjgUs3l95j2IMqWpeK8QktltJHh864,7008
|
54
|
-
odoo/addons/account_reconcile_oca/views/
|
55
|
-
odoo/addons/account_reconcile_oca/views/
|
57
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=wG7C5SExLc3LeXy_megI-wVg6Ut7lbMihsEcHhXh5qo,1850
|
58
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=pv25iOvw4XEOIprDIesVPPGIR6S0lytP7P-GTxuBl94,20629
|
59
|
+
odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-IhSCzMXlbUoOjjkB11I9L2YHk1p3rak,3434
|
56
60
|
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=EwbPYENnMYA6eRAz8N-l3qBosjOzw-S77sJ3a46meMU,934
|
57
61
|
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=Wzf76i6mhryqpCOHA06CMnUPzpEUBOaVL_L-8CKumNA,5239
|
58
|
-
|
59
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
60
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
61
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
62
|
+
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
|
63
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info/METADATA,sha256=DVp3W0jTkMwACrkUsg-vGeHaDkMS29F4l0O1WE0VOoM,4347
|
64
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
65
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
66
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.1.dist-info/RECORD,,
|
File without changes
|