odoo-addon-account-reconcile-oca 17.0.1.3.4__py3-none-any.whl → 17.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:6b29c2e01027bb5f7beca4ab3cac1f98547aec17b2290f414a2163d2783a2773
10
+ !! source digest: sha256:9fb38104058260a10bc5e76b62ed9adb6fcc4b1d1c6ec5e5cd4182f3fcbac19b
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -57,7 +57,7 @@ Known issues / Roadmap
57
57
 
58
58
  The following bugs are already detected:
59
59
 
60
- - Creation of activities on the chatter do show automatically
60
+ - Creation of activities on the chatter do show automatically
61
61
 
62
62
  Bug Tracker
63
63
  ===========
@@ -81,7 +81,7 @@ Authors
81
81
  Contributors
82
82
  ------------
83
83
 
84
- - Enric Tobella
84
+ - Enric Tobella
85
85
 
86
86
  Maintainers
87
87
  -----------
@@ -5,7 +5,7 @@
5
5
  "name": "Account Reconcile Oca",
6
6
  "summary": """
7
7
  Reconcile addons for Odoo CE accounting""",
8
- "version": "17.0.1.3.4",
8
+ "version": "17.0.1.4.0",
9
9
  "license": "AGPL-3",
10
10
  "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
11
11
  "maintainers": ["etobella"],
@@ -1,6 +1,7 @@
1
1
  # Copyright 2024 Dixmit
2
2
  # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3
3
  from odoo import models
4
+ from odoo.tools.safe_eval import safe_eval
4
5
 
5
6
 
6
7
  class AccountBankStatement(models.Model):
@@ -13,3 +14,17 @@ class AccountBankStatement(models.Model):
13
14
  )
14
15
  action["res_id"] = self.id
15
16
  return action
17
+
18
+ def action_open_statement_lines(self):
19
+ """Open in reconciling view directly"""
20
+ self.ensure_one()
21
+ if not self:
22
+ return {}
23
+ action = self.env["ir.actions.act_window"]._for_xml_id(
24
+ "account_reconcile_oca.action_bank_statement_line_reconcile"
25
+ )
26
+ action["domain"] = [("statement_id", "=", self.id)]
27
+ action["context"] = safe_eval(
28
+ action["context"], locals_dict={"active_id": self._context.get("active_id")}
29
+ )
30
+ return action
@@ -282,6 +282,46 @@ class AccountBankStatementLine(models.Model):
282
282
  != line.get("partner_id")
283
283
  )
284
284
 
285
+ def _get_manual_delete_vals(self):
286
+ return {
287
+ "manual_reference": False,
288
+ "manual_account_id": False,
289
+ "manual_amount": False,
290
+ "manual_exchange_counterpart": False,
291
+ "manual_in_currency_id": False,
292
+ "manual_in_currency": False,
293
+ "manual_name": False,
294
+ "manual_partner_id": False,
295
+ "manual_line_id": False,
296
+ "manual_move_id": False,
297
+ "manual_move_type": False,
298
+ "manual_kind": False,
299
+ "manual_original_amount": False,
300
+ "manual_currency_id": False,
301
+ "analytic_distribution": False,
302
+ }
303
+
304
+ def _process_manual_reconcile_from_line(self, line):
305
+ self.manual_account_id = line["account_id"][0]
306
+ self.manual_amount = line["amount"]
307
+ self.manual_currency_id = line["currency_id"]
308
+ self.manual_in_currency_id = line.get("line_currency_id")
309
+ self.manual_in_currency = line.get("line_currency_id") and line[
310
+ "currency_id"
311
+ ] != line.get("line_currency_id")
312
+ self.manual_amount_in_currency = line.get("currency_amount")
313
+ self.manual_name = line["name"]
314
+ self.manual_exchange_counterpart = line.get("is_exchange_counterpart", False)
315
+ self.manual_partner_id = line.get("partner_id") and line["partner_id"][0]
316
+ manual_line = self.env["account.move.line"].browse(line["id"]).exists()
317
+ self.manual_line_id = manual_line
318
+ self.analytic_distribution = line.get("analytic_distribution", {})
319
+ if self.manual_line_id:
320
+ self.manual_move_id = self.manual_line_id.move_id
321
+ self.manual_move_type = self.manual_line_id.move_id.move_type
322
+ self.manual_kind = line["kind"]
323
+ self.manual_original_amount = line.get("original_amount", 0.0)
324
+
285
325
  @api.onchange("manual_reference", "manual_delete")
286
326
  def _onchange_manual_reconcile_reference(self):
287
327
  self.ensure_one()
@@ -302,53 +342,10 @@ class AccountBankStatementLine(models.Model):
302
342
  continue
303
343
  if line["reference"] == self.manual_reference:
304
344
  if self.manual_delete:
305
- self.update(
306
- {
307
- "manual_reference": False,
308
- "manual_account_id": False,
309
- "manual_amount": False,
310
- "manual_exchange_counterpart": False,
311
- "manual_in_currency_id": False,
312
- "manual_in_currency": False,
313
- "manual_name": False,
314
- "manual_partner_id": False,
315
- "manual_line_id": False,
316
- "manual_move_id": False,
317
- "manual_move_type": False,
318
- "manual_kind": False,
319
- "manual_original_amount": False,
320
- "manual_currency_id": False,
321
- "analytic_distribution": False,
322
- "manual_amount_in_currency": False,
323
- }
324
- )
345
+ self.update(self._get_manual_delete_vals())
325
346
  continue
326
347
  else:
327
- self.manual_account_id = line["account_id"][0]
328
- self.manual_amount = line["amount"]
329
- self.manual_currency_id = line["currency_id"]
330
- self.manual_in_currency_id = line.get("line_currency_id")
331
- self.manual_in_currency = line.get("line_currency_id") and line[
332
- "currency_id"
333
- ] != line.get("line_currency_id")
334
- self.manual_amount_in_currency = line.get("currency_amount")
335
- self.manual_name = line["name"]
336
- self.manual_exchange_counterpart = line.get(
337
- "is_exchange_counterpart", False
338
- )
339
- self.manual_partner_id = (
340
- line.get("partner_id") and line["partner_id"][0]
341
- )
342
- manual_line = (
343
- self.env["account.move.line"].browse(line["id"]).exists()
344
- )
345
- self.manual_line_id = manual_line
346
- self.analytic_distribution = line.get("analytic_distribution", {})
347
- if self.manual_line_id:
348
- self.manual_move_id = self.manual_line_id.move_id
349
- self.manual_move_type = self.manual_line_id.move_id.move_type
350
- self.manual_kind = line["kind"]
351
- self.manual_original_amount = line.get("original_amount", 0.0)
348
+ self._process_manual_reconcile_from_line(line)
352
349
  new_data.append(line)
353
350
  self.update({"manual_delete": False})
354
351
  self.reconcile_data_info = self._recompute_suspense_line(
@@ -369,6 +366,26 @@ class AccountBankStatementLine(models.Model):
369
366
  )
370
367
  self._onchange_manual_reconcile_vals()
371
368
 
369
+ def _get_manual_reconcile_vals(self):
370
+ return {
371
+ "name": self.manual_name,
372
+ "partner_id": (
373
+ self.manual_partner_id
374
+ and [self.manual_partner_id.id, self.manual_partner_id.display_name]
375
+ or (self.partner_name and (False, self.partner_name))
376
+ or False
377
+ ),
378
+ "account_id": (
379
+ [self.manual_account_id.id, self.manual_account_id.display_name]
380
+ if self.manual_account_id
381
+ else [False, _("Undefined")]
382
+ ),
383
+ "amount": self.manual_amount,
384
+ "credit": -self.manual_amount if self.manual_amount < 0 else 0.0,
385
+ "debit": self.manual_amount if self.manual_amount > 0 else 0.0,
386
+ "analytic_distribution": self.analytic_distribution,
387
+ }
388
+
372
389
  @api.onchange(
373
390
  "manual_account_id",
374
391
  "manual_partner_id",
@@ -383,35 +400,11 @@ class AccountBankStatementLine(models.Model):
383
400
  for line in data:
384
401
  if line["reference"] == self.manual_reference:
385
402
  if self._check_line_changed(line):
386
- line.update(
387
- {
388
- "name": self.manual_name,
389
- "partner_id": self.manual_partner_id
390
- and [
391
- self.manual_partner_id.id,
392
- self.manual_partner_id.display_name,
393
- ]
394
- or (self.partner_name and (False, self.partner_name))
395
- or False,
396
- "account_id": [
397
- self.manual_account_id.id,
398
- self.manual_account_id.display_name,
399
- ]
400
- if self.manual_account_id
401
- else [False, _("Undefined")],
402
- "amount": self.manual_amount,
403
- "credit": -self.manual_amount
404
- if self.manual_amount < 0
405
- else 0.0,
406
- "debit": self.manual_amount
407
- if self.manual_amount > 0
408
- else 0.0,
409
- "analytic_distribution": self.analytic_distribution,
410
- "kind": line["kind"]
411
- if line["kind"] != "suspense"
412
- else "other",
413
- }
403
+ line_vals = self._get_manual_reconcile_vals()
404
+ line_vals["kind"] = (
405
+ line["kind"] if line["kind"] != "suspense" else "other"
414
406
  )
407
+ line.update(line_vals)
415
408
  if line["kind"] == "liquidity":
416
409
  self._update_move_partner()
417
410
  if self.manual_line_id and self.manual_line_id.id == line.get(
@@ -516,6 +509,8 @@ class AccountBankStatementLine(models.Model):
516
509
  line["partner_id"],
517
510
  self.env["res.partner"].browse(line["partner_id"]).display_name,
518
511
  )
512
+ elif self.partner_id:
513
+ new_line["partner_id"] = self.partner_id.name_get()[0]
519
514
  new_data.append(new_line)
520
515
  return new_data, reconcile_auxiliary_id
521
516
 
@@ -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:6b29c2e01027bb5f7beca4ab3cac1f98547aec17b2290f414a2163d2783a2773
370
+ !! source digest: sha256:9fb38104058260a10bc5e76b62ed9adb6fcc4b1d1c6ec5e5cd4182f3fcbac19b
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/17.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-17-0/account-reconcile-17-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=17.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
@@ -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
  .o_form_statusbar.o_account_reconcile_oca_statusbar {
@@ -31,7 +31,22 @@
31
31
  </form>
32
32
  </field>
33
33
  </record>
34
-
34
+ <record id="view_bank_statement_form" model="ir.ui.view">
35
+ <field name="model">account.bank.statement</field>
36
+ <field
37
+ name="inherit_id"
38
+ ref="account_statement_base.view_bank_statement_form"
39
+ />
40
+ <field name="arch" type="xml">
41
+ <xpath
42
+ expr="//button[contains(@context,'search_default_statement_id')]"
43
+ position="attributes"
44
+ >
45
+ <attribute name="type">object</attribute>
46
+ <attribute name="name">action_open_statement_lines</attribute>
47
+ </xpath>
48
+ </field>
49
+ </record>
35
50
  <record id="account_bank_statement_action_edit" model="ir.actions.act_window">
36
51
  <field name="name">Edit Bank Statement</field>
37
52
  <field name="res_model">account.bank.statement</field>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 17.0.1.3.4
3
+ Version: 17.0.1.4.0
4
4
  Requires-Python: >=3.10
5
5
  Requires-Dist: odoo-addon-account_reconcile_model_oca>=17.0dev,<17.1dev
6
6
  Requires-Dist: odoo-addon-account_statement_base>=17.0dev,<17.1dev
@@ -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:6b29c2e01027bb5f7beca4ab3cac1f98547aec17b2290f414a2163d2783a2773
27
+ !! source digest: sha256:9fb38104058260a10bc5e76b62ed9adb6fcc4b1d1c6ec5e5cd4182f3fcbac19b
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -74,7 +74,7 @@ Known issues / Roadmap
74
74
 
75
75
  The following bugs are already detected:
76
76
 
77
- - Creation of activities on the chatter do show automatically
77
+ - Creation of activities on the chatter do show automatically
78
78
 
79
79
  Bug Tracker
80
80
  ===========
@@ -98,7 +98,7 @@ Authors
98
98
  Contributors
99
99
  ------------
100
100
 
101
- - Enric Tobella
101
+ - Enric Tobella
102
102
 
103
103
  Maintainers
104
104
  -----------
@@ -1,6 +1,6 @@
1
- odoo/addons/account_reconcile_oca/README.rst,sha256=b1rxJaKVUsiAL_n-oa9GGEz3K7SxzC7fRPQ8F6VEWTA,3705
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=5dLQaPeCI_evvtm-0_ZXDSQZw_6QHYXUuixOxJWGIQ0,3703
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=Cp1I6hKxjGXnTCkuEgYnbr7_G3tTiSEWE2gkJ2yLmnA,1865
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=3fDVdINZnZNnQor9fQyzKerB1HoEK41PMBIO4OicE_o,1865
4
4
  odoo/addons/account_reconcile_oca/hooks.py,sha256=SfJ-GlIGYL1kf8xhQs5qDqwNnE8S9Gs-5dP3vOD-IMM,182
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=RnxHPjPpQk_qZs4ZHFvH13KDHnqQO-ppgcUnULeZxwo,25700
@@ -18,8 +18,8 @@ odoo/addons/account_reconcile_oca/i18n/zh.po,sha256=i7HjN44XrHzZ-qIG994NXgaEvjYU
18
18
  odoo/addons/account_reconcile_oca/i18n/zh_CN.po,sha256=gHrxzsXR_B6rbs_0iU8_-9doeTZwiy-HmPtFoiiZJ3s,27504
19
19
  odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
20
20
  odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=ndgMwziMe2GsqEucoH0vZMqVmubgBcajJahh1LcNK9s,6709
21
- odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
22
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=ImGVS_f5jLMdNia1TGqBOe7xAns280SrlbeduKqGdI0,39816
21
+ odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=CFqlLLtmTqmt5yH3v_pkUfkZezSb1nEhBTu2J5gCjxM,1034
22
+ odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=UpDI4zBGIWkxNOWhynm1Cu42Mikh7Nl2HQwKzh4mpSc,39053
23
23
  odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=97AmJHO5ZOtDqoAWmjW0PZMZ-Mx8jfH4JPWiuwZ4H14,1048
24
24
  odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=PfdU6cfrKjKMqL_qGqNdyPUWg-frGQ6nR5uCoYtW38M,1212
25
25
  odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=I23ZF31OvY5EqtfNHfm2Pir3JJ3z5CaYjEFr1OZ8oWI,3983
@@ -31,7 +31,7 @@ odoo/addons/account_reconcile_oca/readme/ROADMAP.md,sha256=fxR8QnC8BkHyODdPScpgJ
31
31
  odoo/addons/account_reconcile_oca/readme/USAGE.md,sha256=yNLGo35X7TW2TLyJqHU-gdQiXazW8Iu59rI0dpa4WjM,365
32
32
  odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
33
33
  odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
34
- odoo/addons/account_reconcile_oca/static/description/index.html,sha256=hrDm9WB2yCWS5XZMD08UJKDgEYhgZTh1Gm_TBY5GxGo,13790
34
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=OFrck3FprymaLYWvx-fiSIAxEr9Cg-amNTW7cDX6HS4,13790
35
35
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=DZsNwb9DCCSurS6VRq93gMJzn4O7_Q-GTl_AzXODlaU,4867
36
36
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
37
37
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=9NSr3iZ7H_QGTpixW5D4WEJuD_u4KRpdYwRmKqcML_k,2117
@@ -49,20 +49,20 @@ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.
49
49
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=YrWCTvLIZqAE1McQMDVKqgIoJIZA1r1hAaxfd3l4Ulo,2920
50
50
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=G5lbsagkTYErqNlPvhW0vfljQWRKI4eI5spDlH3_emk,3772
51
51
  odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=rlwwhfX9jK65Lze3HeXFmW-p6Lo_38ZsyTLS7sx4XV8,1223
52
- odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=b8MxefTeE0HHFVI_OqWOcqKzLlEm0qVWEDWIx-co6KM,2145
52
+ odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=b6clO2yWT91dEdTE3RcdORFE6dNqqzsXz3S0Rc5afZU,2318
53
53
  odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=hnXWp6pYXbAGf9EjmZaGDb4GHe1CBLGZMbbwbz0WuaY,8637
54
54
  odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
55
55
  odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=MP5M-NsVhMoYiU675hr1nsvZRRK-4e5KUYMCCKTUHB8,10807
56
56
  odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=YB88i3jGDxYysZoh_SBfwadY0EvY3QO9yiY0Gqv5da4,44757
57
57
  odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=0RiPmzfRUj54oMYKWM7mLnZL-5IhI5W8fiRruHL0SYc,866
58
58
  odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=2FKosNTl4hVC_yVq8uRzZvMMrXyEttK_YTsdnV8o0NI,7016
59
- odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=6AA1iZR1EmnVYyBXhLw51QQS1k9QmXLLNMAPDOl8Oz4,1813
59
+ odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=QrjQZ3OTsnbopdLnnsFaZ0f7ncLkOUbtVj9osXdxw5k,2436
60
60
  odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=CKERtA3HeYQa9BRMxFdxzpXnOweb1x7qwWD2uQJ8q20,22010
61
61
  odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=T5tZ5Ev0psYp78f3NkNVJjWMUOssYJ7WzLpsMKyOvI4,3378
62
62
  odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=BnvchVpOJ31M-kCoe6AHDxHMfrEEgJTPPysxguX3xgE,975
63
63
  odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=Kr_ET1IAat3B8UoW6VPQO3q88JLVdE5-5jpb13ioCbY,5405
64
64
  odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=PxIqWILg_L_ahR-SDlDWEqWDJKNumPRifFAGF0BG57E,807
65
- odoo_addon_account_reconcile_oca-17.0.1.3.4.dist-info/METADATA,sha256=xbrpcrLv1WaIoUFpsAfTwYADy4I2ErSdNRxtv20aivY,4390
66
- odoo_addon_account_reconcile_oca-17.0.1.3.4.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
67
- odoo_addon_account_reconcile_oca-17.0.1.3.4.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
68
- odoo_addon_account_reconcile_oca-17.0.1.3.4.dist-info/RECORD,,
65
+ odoo_addon_account_reconcile_oca-17.0.1.4.0.dist-info/METADATA,sha256=qgQs06yhtQK9U9JGqeAbqn6JgGlaIRhQIbveu_e_sj0,4388
66
+ odoo_addon_account_reconcile_oca-17.0.1.4.0.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
67
+ odoo_addon_account_reconcile_oca-17.0.1.4.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
68
+ odoo_addon_account_reconcile_oca-17.0.1.4.0.dist-info/RECORD,,