odoo-addon-account-reconcile-oca 16.0.2.0.1.1__py3-none-any.whl → 16.0.2.0.3__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:fdca2ec7db3cc2a4db1d7baa84f6085ba550241656371ced3b3f756cd7d2a323
10
+ !! source digest: sha256:c829f2d0e5e3884a872d43f61f3f07b36aaf1b8d45a39113e0bc7c7314f90cc6
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |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.0.1",
8
+ "version": "16.0.2.0.3",
9
9
  "license": "AGPL-3",
10
10
  "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
11
11
  "maintainers": ["etobella"],
@@ -47,7 +47,11 @@ class AccountAccountReconcile(models.Model):
47
47
  SELECT
48
48
  min(aml.id) as id,
49
49
  MAX({account_name}) as name,
50
- aml.partner_id,
50
+ CASE
51
+ WHEN a.account_type in ('asset_receivable', 'liability_payable')
52
+ THEN aml.partner_id
53
+ ELSE NULL
54
+ END as partner_id,
51
55
  a.id as account_id,
52
56
  FALSE as is_reconciled,
53
57
  aml.currency_id as currency_id,
@@ -73,7 +77,14 @@ class AccountAccountReconcile(models.Model):
73
77
  def _groupby(self):
74
78
  return """
75
79
  GROUP BY
76
- a.id, aml.partner_id, aml.currency_id, a.company_id
80
+ a.id,
81
+ CASE
82
+ WHEN a.account_type in ('asset_receivable', 'liability_payable')
83
+ THEN aml.partner_id
84
+ ELSE NULL
85
+ END,
86
+ aml.currency_id,
87
+ a.company_id
77
88
  """
78
89
 
79
90
  def _having(self):
@@ -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:fdca2ec7db3cc2a4db1d7baa84f6085ba550241656371ced3b3f756cd7d2a323
370
+ !! source digest: sha256:c829f2d0e5e3884a872d43f61f3f07b36aaf1b8d45a39113e0bc7c7314f90cc6
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>
@@ -11,6 +11,10 @@
11
11
  opacity: 100;
12
12
  }
13
13
  }
14
+ .row {
15
+ // We need to add this in order to make remove horizontal scroll
16
+ margin: 0;
17
+ }
14
18
  margin: 0 0 0;
15
19
  min-width: fit-content;
16
20
  width: 100%;
@@ -36,10 +40,12 @@
36
40
  padding: 0;
37
41
  position: relative;
38
42
  border-right: 1px solid $o-gray-300;
43
+ overflow: auto;
39
44
  }
40
45
  .o_account_reconcile_oca_info {
41
46
  width: 70%;
42
47
  height: 100%;
48
+ overflow: auto;
43
49
  }
44
50
  .o_form_view {
45
51
  .btn-info:not(.dropdown-toggle):not(.dropdown-item) {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 16.0.2.0.1.1
3
+ Version: 16.0.2.0.3
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:fdca2ec7db3cc2a4db1d7baa84f6085ba550241656371ced3b3f756cd7d2a323
26
+ !! source digest: sha256:c829f2d0e5e3884a872d43f61f3f07b36aaf1b8d45a39113e0bc7c7314f90cc6
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,6 +1,6 @@
1
- odoo/addons/account_reconcile_oca/README.rst,sha256=Tx0kKuMSgi4H7anTCAOPjdwR4eMdaWJQj5AE583VG-0,3709
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=4ltuUK7M9SxoII0GkP8Xlb0PG5wpeOwtX9ZM0uaEJHQ,3709
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=-ErYKJT5PFCSXxXzgJuGsJfPpW-95rdB_eOWRshdCs0,1826
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=F7nNfwk0P1SpZoe8sQy_P1iRywRFDnpXXTTc1VTi_Qk,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=2GZdc0u34JPm_Ge5mExrxFz9kI9FZlqdCsrjCHtefic,26662
@@ -16,7 +16,7 @@ odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=X5pnDsXnv-EvB5MjfyUU_ZPgudEL
16
16
  odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=Pmh-m3q4hV3EiGQoxlBfvFI1eEzWoECTvu9tLGbejE4,29215
17
17
  odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py,sha256=Z_OLx-fclggJUAtYpepXRAAc68AizrIN6MWtl4zp0Qw,642
18
18
  odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
19
- odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=e5SqpUFH4I592o4vqO_1YZNYsv4XZ94tp2qqTnQWMLM,6302
19
+ odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=kdH_fU8pDFZGLtoYRBomAgMC35HEvAUWnRx7dQBgScU,6706
20
20
  odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
21
21
  odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=mq1o08cgdUn7tarulmVZvpdIrfpL9ZscUab_hNbGsQE,39239
22
22
  odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=prdylwu2cX8MQUCRUGJfPWeCu8R6MNgLvHqPscqwloQ,995
@@ -30,7 +30,7 @@ odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_
30
30
  odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
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=Sd5qZiZEIv0Fb36xQ_fwIVfhcdvetX1iJBYTaTGJ2Mc,13829
33
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=gMec46gRHqomyEg4OMC-5S46TPkRrPHWXaKKNnbxBs4,13829
34
34
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=Q_WFfEwl2q0Nr6cugeIt0ziVTZ7oFxM7UdcPzFP6FEs,4856
35
35
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
36
36
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
@@ -48,7 +48,7 @@ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.
48
48
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=PKDN716IRgwJslxvoQNriMbV4kkjZk10MA7Oi2U2Nl8,3180
49
49
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=s_GHeElGkhsa2nQvd0eKxXdrsMPL2g0YfPC-REyUqew,1604
50
50
  odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=zH2cqAerAF4cYDQMyMYTeFKoPIo1v_UmeFyPiwAz8tM,943
51
- odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=qL7RJ_6X-qhUqAxPKJNglQ2k4rFOH96jMX292jt2WW8,2638
51
+ odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=PJTWO6zFieWXeqocaKkMmKYOK_BY6TyUVzH3sW3cwLs,2811
52
52
  odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=sLoq3aN8Rs4Ex9dyEqENhRU9FYT9Cm1R_KrI4zk7FJY,8698
53
53
  odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
54
54
  odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=opQs4FgChPdphc25Jzs07TuYxoVGBCj6IAPueMLNkH0,10576
@@ -61,7 +61,7 @@ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-I
61
61
  odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
62
62
  odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
63
63
  odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
64
- odoo_addon_account_reconcile_oca-16.0.2.0.1.1.dist-info/METADATA,sha256=liUi2-p5S0ggbu0e4qLaGLQT6clkYXVbSs-JELe1skw,4326
65
- odoo_addon_account_reconcile_oca-16.0.2.0.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
66
- odoo_addon_account_reconcile_oca-16.0.2.0.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
- odoo_addon_account_reconcile_oca-16.0.2.0.1.1.dist-info/RECORD,,
64
+ odoo_addon_account_reconcile_oca-16.0.2.0.3.dist-info/METADATA,sha256=M1QVidyK_E9Pe4YoaqiPAJTIFBBRwpWUL1lE8HqreKg,4324
65
+ odoo_addon_account_reconcile_oca-16.0.2.0.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
66
+ odoo_addon_account_reconcile_oca-16.0.2.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
+ odoo_addon_account_reconcile_oca-16.0.2.0.3.dist-info/RECORD,,