odoo-addon-account-reconcile-oca 16.0.2.3.3__py3-none-any.whl → 16.0.2.3.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.
@@ -7,7 +7,7 @@ Account Reconcile Oca
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:5ade0a8e14af517312dceed4686faaa058e06b4dcd1ce842f6910fc0c507ead2
10
+ !! source digest: sha256:b9539cdae4b80e29893c64457e262722edccb353553e33d0c426dcc2ab7d3800
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -51,6 +51,13 @@ Access `Invoicing / Accounting / Actions / Reconcile`
51
51
  All the possible reconcile options will show and you will be able to reconcile properly.
52
52
  You can access the same widget from accounts and Partners.
53
53
 
54
+
55
+ Note : in case this module is installed on a migrated database, the reconciliation models will not be set by default. So they need to be set manually.
56
+
57
+ ![Reconciliation model : full payment](../static/description/reconcile-model-full.png)
58
+
59
+ ![Reconciliation model : partial payment](../static/description/reconcile-model-partial.png)
60
+
54
61
  Known issues / Roadmap
55
62
  ======================
56
63
 
@@ -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.3.3",
8
+ "version": "16.0.2.3.5",
9
9
  "license": "AGPL-3",
10
10
  "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
11
11
  "maintainers": ["etobella"],
@@ -681,13 +681,16 @@ class AccountBankStatementLine(models.Model):
681
681
  reconciled_line.move_id.journal_id
682
682
  == self.company_id.currency_exchange_journal_id
683
683
  ):
684
- reconcile_auxiliary_id, lines = self._get_reconcile_line(
685
- reconciled_line.move_id.line_ids - reconciled_line,
686
- "other",
687
- from_unreconcile=False,
688
- move=True,
689
- )
690
- data += lines
684
+ for rl_item in (
685
+ reconciled_line.move_id.line_ids - reconciled_line
686
+ ):
687
+ reconcile_auxiliary_id, lines = self._get_reconcile_line(
688
+ rl_item,
689
+ "other",
690
+ from_unreconcile=False,
691
+ move=True,
692
+ )
693
+ data += lines
691
694
  continue
692
695
  partial = partial_lines.filtered(
693
696
  lambda r: r.debit_move_id == reconciled_line
@@ -10,3 +10,10 @@ Account reconcile
10
10
  Access `Invoicing / Accounting / Actions / Reconcile`
11
11
  All the possible reconcile options will show and you will be able to reconcile properly.
12
12
  You can access the same widget from accounts and Partners.
13
+
14
+
15
+ Note : in case this module is installed on a migrated database, the reconciliation models will not be set by default. So they need to be set manually.
16
+
17
+ ![Reconciliation model : full payment](../static/description/reconcile-model-full.png)
18
+
19
+ ![Reconciliation model : partial payment](../static/description/reconcile-model-partial.png)
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:5ade0a8e14af517312dceed4686faaa058e06b4dcd1ce842f6910fc0c507ead2
370
+ !! source digest: sha256:b9539cdae4b80e29893c64457e262722edccb353553e33d0c426dcc2ab7d3800
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
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/licence-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&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>This addon allows to reconcile bank statements and account marked as <cite>reconcile</cite>.</p>
@@ -401,6 +401,9 @@ Select reconcile on the journal of your choice.</p>
401
401
  <p>Access <cite>Invoicing / Accounting / Actions / Reconcile</cite>
402
402
  All the possible reconcile options will show and you will be able to reconcile properly.
403
403
  You can access the same widget from accounts and Partners.</p>
404
+ <p>Note : in case this module is installed on a migrated database, the reconciliation models will not be set by default. So they need to be set manually.</p>
405
+ <p>![Reconciliation model : full payment](../static/description/reconcile-model-full.png)</p>
406
+ <p>![Reconciliation model : partial payment](../static/description/reconcile-model-partial.png)</p>
404
407
  </div>
405
408
  </div>
406
409
  <div class="section" id="known-issues-roadmap">
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 16.0.2.3.3
3
+ Version: 16.0.2.3.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)
@@ -23,7 +23,7 @@ Account Reconcile Oca
23
23
  !! This file is generated by oca-gen-addon-readme !!
24
24
  !! changes will be overwritten. !!
25
25
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
26
- !! source digest: sha256:5ade0a8e14af517312dceed4686faaa058e06b4dcd1ce842f6910fc0c507ead2
26
+ !! source digest: sha256:b9539cdae4b80e29893c64457e262722edccb353553e33d0c426dcc2ab7d3800
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -67,6 +67,13 @@ Access `Invoicing / Accounting / Actions / Reconcile`
67
67
  All the possible reconcile options will show and you will be able to reconcile properly.
68
68
  You can access the same widget from accounts and Partners.
69
69
 
70
+
71
+ Note : in case this module is installed on a migrated database, the reconciliation models will not be set by default. So they need to be set manually.
72
+
73
+ ![Reconciliation model : full payment](../static/description/reconcile-model-full.png)
74
+
75
+ ![Reconciliation model : partial payment](../static/description/reconcile-model-partial.png)
76
+
70
77
  Known issues / Roadmap
71
78
  ======================
72
79
 
@@ -1,6 +1,6 @@
1
- odoo/addons/account_reconcile_oca/README.rst,sha256=T1cHHNpAUHm9SrQvswg6T50mXI3nutlk1wopXOmacnI,3709
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=ZClh0Lkola_Y6QPclHJVe5N77nmVRZL08RxjB1lYkFE,4045
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=ULJadotxqlNsdGXDMVR7BFmyjphKHH-ZicARfEjxiEE,1826
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=_JjICZ4gAcVwAgab3_umpbLTYn51BPMUOiAJoYJzhKg,1826
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=-mUJwfpIhw4hcbXforS8LRmN8UEcA0b5mcALWU2rG6Y,26901
@@ -18,7 +18,7 @@ odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py,sha256=
18
18
  odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
19
19
  odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=rjHMGUUBBRls89YlZLnNoYrxcZzFaAmz9dU-qVpsxNo,7182
20
20
  odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=CFqlLLtmTqmt5yH3v_pkUfkZezSb1nEhBTu2J5gCjxM,1034
21
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=MEnkbE2W4OO3X3zZRgZ00qmE7Z198066PqJYFI6uwFQ,51429
21
+ odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=WeFqnMBwScYRTTwfrPAMDHfbjfUKqiCpM1Ljlfu4ohA,51561
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
24
  odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=hmuorywUhHLLFjfYOuUIlB4e6xp5gWMU6kcgnhBvf6s,5013
@@ -27,10 +27,12 @@ odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0Uf
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
29
29
  odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_WGKVTLQK-9RCMgCjGT-TAJU,104
30
- odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
30
+ odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=Vr2Odh3VlB7F-pWq5CqnP5kihsCPVWnEhd7EtQfISfg,732
31
31
  odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
32
32
  odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
33
- odoo/addons/account_reconcile_oca/static/description/index.html,sha256=z-NryzWRkj20KF7iQYaGGQx3XNerl7ghynHLXLLkw2Q,13829
33
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=BHaWeq8Qmcgi53GkLLPpOVVLWgPufl7jb4MAtVcbVjk,14181
34
+ odoo/addons/account_reconcile_oca/static/description/reconcile-model-full.png,sha256=gzF5JHp5XjYi7VWFIknCzEIYDlfUKkeeH0nCFR2KLNU,135838
35
+ odoo/addons/account_reconcile_oca/static/description/reconcile-model-partial.png,sha256=YXlvsPVtDcHZvwv5yZfHGeyMvmxngzGsQWPicrLpFds,137158
34
36
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=4bw-Dc1pmVx6sv-fBzyPfBj-rZrqFUVZ8C19n9Pfpi0,4880
35
37
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
36
38
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
@@ -61,7 +63,7 @@ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-I
61
63
  odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
62
64
  odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
63
65
  odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
64
- odoo_addon_account_reconcile_oca-16.0.2.3.3.dist-info/METADATA,sha256=KortARI191ZsAp8TyOU7jyJwglK8BuYdSVzEantes_g,4322
65
- odoo_addon_account_reconcile_oca-16.0.2.3.3.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
66
- odoo_addon_account_reconcile_oca-16.0.2.3.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
- odoo_addon_account_reconcile_oca-16.0.2.3.3.dist-info/RECORD,,
66
+ odoo_addon_account_reconcile_oca-16.0.2.3.5.dist-info/METADATA,sha256=lgf6alu9vio54WniJRku8brV5tRDGEFOhFwkQhK7go4,4658
67
+ odoo_addon_account_reconcile_oca-16.0.2.3.5.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
68
+ odoo_addon_account_reconcile_oca-16.0.2.3.5.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
69
+ odoo_addon_account_reconcile_oca-16.0.2.3.5.dist-info/RECORD,,