odoo-addon-account-reconcile-oca 16.0.1.3.0.3__py3-none-any.whl → 16.0.1.4.0__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:06b94427f7cd6ced34791ec38ef99b42ae6f8dfd8b274674879a2d5352498308
10
+ !! source digest: sha256:9df7ec4de78a542ab1bfda922f47eea57ddf735a69c6e94a4eaefa3fe7df2874
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.1.3.0",
8
+ "version": "16.0.1.4.0",
9
9
  "license": "AGPL-3",
10
10
  "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
11
11
  "maintainers": ["etobella"],
@@ -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:06b94427f7cd6ced34791ec38ef99b42ae6f8dfd8b274674879a2d5352498308
370
+ !! source digest: sha256:9df7ec4de78a542ab1bfda922f47eea57ddf735a69c6e94a4eaefa3fe7df2874
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>
@@ -31,7 +31,7 @@ export class ReconcileController extends KanbanController {
31
31
  });
32
32
  }
33
33
  get journalId() {
34
- if (this.props.resModel === "account.bank.statement.line") {
34
+ if (this.props.context.active_model === "account.journal") {
35
35
  return this.props.context.active_id;
36
36
  }
37
37
  return false;
@@ -67,6 +67,7 @@ export class ReconcileController extends KanbanController {
67
67
  this.action.doAction(action, {
68
68
  onClose: async () => {
69
69
  await this.model.root.load();
70
+ await this.updateJournalInfo();
70
71
  this.render(true);
71
72
  },
72
73
  });
@@ -23,10 +23,12 @@ export class ReconcileFormController extends FormController {
23
23
  async reloadFormController() {
24
24
  var is_reconciled = this.model.root.data.is_reconciled;
25
25
  await this.model.root.load();
26
- if (!is_reconciled && this.model.root.data.is_reconciled) {
27
- // This only happens when we press the reconcile button
28
- if (this.env.parentController) {
29
- // Showing rainbow man
26
+ if (this.env.parentController) {
27
+ // We will update the parent controller every time we reload the form.
28
+ await this.env.parentController.model.root.load();
29
+ await this.env.parentController.render(true);
30
+ if (!is_reconciled && this.model.root.data.is_reconciled) {
31
+ // This only happens when we press the reconcile button for showing rainbow man
30
32
  const message = await this.orm.call(
31
33
  "account.journal",
32
34
  "get_rainbowman_message",
@@ -36,8 +38,6 @@ export class ReconcileFormController extends FormController {
36
38
  this.env.parentController.setRainbowMan(message);
37
39
  }
38
40
  // Refreshing
39
- await this.env.parentController.model.root.load();
40
- await this.env.parentController.render(true);
41
41
  this.env.parentController.selectRecord();
42
42
  }
43
43
  }
@@ -13,6 +13,7 @@
13
13
  type="action"
14
14
  name="%(account_reconcile_oca.action_bank_statement_line_move_view_reconcile)s"
15
15
  string="Bank reconcile"
16
+ context="{'search_default_move_id': id}"
16
17
  class="btn btn-primary"
17
18
  icon="fa-list"
18
19
  attrs="{'invisible': [('statement_line_id', '=', False)]}"
@@ -40,7 +40,7 @@
40
40
  <field
41
41
  name="name"
42
42
  string="Journal Item"
43
- filter_domain="[ '|', '|', '|', ('name', 'ilike', self), ('ref', 'ilike', self), ('account_id', 'ilike', self), ('partner_id', 'ilike', self)]"
43
+ filter_domain="['|','|','|','|','|',('name', 'ilike', self), ('ref', 'ilike', self), ('account_id', 'ilike', self), ('partner_id', 'ilike', self),('amount_residual', 'ilike', self),('amount_residual_currency', 'ilike', self)]"
44
44
  />
45
45
  <field name="name" />
46
46
  <field name="ref" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 16.0.1.3.0.3
3
+ Version: 16.0.1.4.0
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:06b94427f7cd6ced34791ec38ef99b42ae6f8dfd8b274674879a2d5352498308
26
+ !! source digest: sha256:9df7ec4de78a542ab1bfda922f47eea57ddf735a69c6e94a4eaefa3fe7df2874
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=9FRQ7qsbZN3qX85VIkEph3d6ZipH1GsSFPhu1FJYB6k,3709
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=g2zSkQKUsu-GCjO5TVfS5Ublm4quYDqQvZXjLLYmgnw,3709
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=pKhIhgsYxPXJl0LEyY9bzXZ_d_8XW8JqpDP35wpFAPk,1826
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=1kPtKNBwgjiidyxPTUGH4ulMvu9F0bOuLJyx1zOII14,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=iOqMifzevnRZlP2Z3BldQodid8gfEXg_22oShtYMj0s,25702
@@ -29,12 +29,12 @@ odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_
29
29
  odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
30
30
  odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
31
31
  odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
32
- odoo/addons/account_reconcile_oca/static/description/index.html,sha256=dasuIulZlBDEulUU94GDiklO4WIBwAscv9V__38CYpc,13829
33
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=nDTsO-XR9jF4krkW7ZhWf8SdeCERH8uDXGreEZ9USog,4808
32
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=TyyLhjSK5nYsdKXlRTqN2Gb5sGpQSS-4tHMB_PNLTD8,13829
33
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=Q_WFfEwl2q0Nr6cugeIt0ziVTZ7oFxM7UdcPzFP6FEs,4856
34
34
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
35
35
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
36
36
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js,sha256=cVNQ5mpho24LnHPN5uC2aAU8cD729TjaO85z5mq9kag,535
37
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=7EyyPuo9rBx1eZiYL6mpR2fIqNvP33JvOJiI9NA6cXo,1748
37
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=ndAS5dJiw_mdda-yi6y2_bSxDGbrTsFr4KzDT1ZV8PU,1812
38
38
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js,sha256=csG1CGQJEj3atDyyKSpkhIPUIfOuWJAbS00aYDMFmdY,974
39
39
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js,sha256=4QBWIcvrYTVKnFdKbRLkRtEi0s_bYJYLSwPIZeeAs5s,332
40
40
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
@@ -57,10 +57,10 @@ odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=yGO
57
57
  odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=wG7C5SExLc3LeXy_megI-wVg6Ut7lbMihsEcHhXh5qo,1850
58
58
  odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=pv25iOvw4XEOIprDIesVPPGIR6S0lytP7P-GTxuBl94,20629
59
59
  odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-IhSCzMXlbUoOjjkB11I9L2YHk1p3rak,3434
60
- odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=EwbPYENnMYA6eRAz8N-l3qBosjOzw-S77sJ3a46meMU,934
61
- odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=Wzf76i6mhryqpCOHA06CMnUPzpEUBOaVL_L-8CKumNA,5239
60
+ odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
61
+ odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
62
62
  odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
63
- odoo_addon_account_reconcile_oca-16.0.1.3.0.3.dist-info/METADATA,sha256=YZVvhRo1tY5G3O1IfzOPoynD09cHVx6jzDu_Vwqwr1w,4326
64
- odoo_addon_account_reconcile_oca-16.0.1.3.0.3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
65
- odoo_addon_account_reconcile_oca-16.0.1.3.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
66
- odoo_addon_account_reconcile_oca-16.0.1.3.0.3.dist-info/RECORD,,
63
+ odoo_addon_account_reconcile_oca-16.0.1.4.0.dist-info/METADATA,sha256=1E9ycmnW4njw9wteXKyZpJjn7PVxjTE5KqtvETP8DnI,4324
64
+ odoo_addon_account_reconcile_oca-16.0.1.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
65
+ odoo_addon_account_reconcile_oca-16.0.1.4.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
66
+ odoo_addon_account_reconcile_oca-16.0.1.4.0.dist-info/RECORD,,