odoo-addon-account-reconcile-oca 17.0.1.3.5__py3-none-any.whl → 17.0.1.4.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.
@@ -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:dcb5036258ed1a909c8df332f82e015b39a2d10c5a2a55d2f19dfe1917062e1d
10
+ !! source digest: sha256:2284fb186c7589c6114c88e95570e080e106ccd6347277636ab57b4ea53eb392
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.5",
8
+ "version": "17.0.1.4.1",
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
@@ -239,13 +239,17 @@ class AccountBankStatementLine(models.Model):
239
239
  }
240
240
  )
241
241
  else:
242
+ account = self.journal_id.suspense_account_id
243
+ if self.partner_id and total_amount > 0:
244
+ can_reconcile = True
245
+ account = self.partner_id.property_account_receivable_id
246
+ elif self.partner_id and total_amount < 0:
247
+ can_reconcile = True
248
+ account = self.partner_id.property_account_payable_id
242
249
  suspense_line = {
243
250
  "reference": "reconcile_auxiliary;%s" % reconcile_auxiliary_id,
244
251
  "id": False,
245
- "account_id": [
246
- self.journal_id.suspense_account_id.id,
247
- self.journal_id.suspense_account_id.display_name,
248
- ],
252
+ "account_id": [account.id, account.display_name],
249
253
  "partner_id": self.partner_id
250
254
  and [self.partner_id.id, self.partner_id.display_name]
251
255
  or (self.partner_name and (False, self.partner_name))
@@ -282,6 +286,46 @@ class AccountBankStatementLine(models.Model):
282
286
  != line.get("partner_id")
283
287
  )
284
288
 
289
+ def _get_manual_delete_vals(self):
290
+ return {
291
+ "manual_reference": False,
292
+ "manual_account_id": False,
293
+ "manual_amount": False,
294
+ "manual_exchange_counterpart": False,
295
+ "manual_in_currency_id": False,
296
+ "manual_in_currency": False,
297
+ "manual_name": False,
298
+ "manual_partner_id": False,
299
+ "manual_line_id": False,
300
+ "manual_move_id": False,
301
+ "manual_move_type": False,
302
+ "manual_kind": False,
303
+ "manual_original_amount": False,
304
+ "manual_currency_id": False,
305
+ "analytic_distribution": False,
306
+ }
307
+
308
+ def _process_manual_reconcile_from_line(self, line):
309
+ self.manual_account_id = line["account_id"][0]
310
+ self.manual_amount = line["amount"]
311
+ self.manual_currency_id = line["currency_id"]
312
+ self.manual_in_currency_id = line.get("line_currency_id")
313
+ self.manual_in_currency = line.get("line_currency_id") and line[
314
+ "currency_id"
315
+ ] != line.get("line_currency_id")
316
+ self.manual_amount_in_currency = line.get("currency_amount")
317
+ self.manual_name = line["name"]
318
+ self.manual_exchange_counterpart = line.get("is_exchange_counterpart", False)
319
+ self.manual_partner_id = line.get("partner_id") and line["partner_id"][0]
320
+ manual_line = self.env["account.move.line"].browse(line["id"]).exists()
321
+ self.manual_line_id = manual_line
322
+ self.analytic_distribution = line.get("analytic_distribution", {})
323
+ if self.manual_line_id:
324
+ self.manual_move_id = self.manual_line_id.move_id
325
+ self.manual_move_type = self.manual_line_id.move_id.move_type
326
+ self.manual_kind = line["kind"]
327
+ self.manual_original_amount = line.get("original_amount", 0.0)
328
+
285
329
  @api.onchange("manual_reference", "manual_delete")
286
330
  def _onchange_manual_reconcile_reference(self):
287
331
  self.ensure_one()
@@ -302,53 +346,10 @@ class AccountBankStatementLine(models.Model):
302
346
  continue
303
347
  if line["reference"] == self.manual_reference:
304
348
  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
- )
349
+ self.update(self._get_manual_delete_vals())
325
350
  continue
326
351
  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)
352
+ self._process_manual_reconcile_from_line(line)
352
353
  new_data.append(line)
353
354
  self.update({"manual_delete": False})
354
355
  self.reconcile_data_info = self._recompute_suspense_line(
@@ -369,6 +370,26 @@ class AccountBankStatementLine(models.Model):
369
370
  )
370
371
  self._onchange_manual_reconcile_vals()
371
372
 
373
+ def _get_manual_reconcile_vals(self):
374
+ return {
375
+ "name": self.manual_name,
376
+ "partner_id": (
377
+ self.manual_partner_id
378
+ and [self.manual_partner_id.id, self.manual_partner_id.display_name]
379
+ or (self.partner_name and (False, self.partner_name))
380
+ or False
381
+ ),
382
+ "account_id": (
383
+ [self.manual_account_id.id, self.manual_account_id.display_name]
384
+ if self.manual_account_id
385
+ else [False, _("Undefined")]
386
+ ),
387
+ "amount": self.manual_amount,
388
+ "credit": -self.manual_amount if self.manual_amount < 0 else 0.0,
389
+ "debit": self.manual_amount if self.manual_amount > 0 else 0.0,
390
+ "analytic_distribution": self.analytic_distribution,
391
+ }
392
+
372
393
  @api.onchange(
373
394
  "manual_account_id",
374
395
  "manual_partner_id",
@@ -383,35 +404,11 @@ class AccountBankStatementLine(models.Model):
383
404
  for line in data:
384
405
  if line["reference"] == self.manual_reference:
385
406
  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
- }
407
+ line_vals = self._get_manual_reconcile_vals()
408
+ line_vals["kind"] = (
409
+ line["kind"] if line["kind"] != "suspense" else "other"
414
410
  )
411
+ line.update(line_vals)
415
412
  if line["kind"] == "liquidity":
416
413
  self._update_move_partner()
417
414
  if self.manual_line_id and self.manual_line_id.id == line.get(
@@ -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:dcb5036258ed1a909c8df332f82e015b39a2d10c5a2a55d2f19dfe1917062e1d
370
+ !! source digest: sha256:2284fb186c7589c6114c88e95570e080e106ccd6347277636ab57b4ea53eb392
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 {
@@ -1162,3 +1162,51 @@ class TestReconciliationWidget(TestAccountReconciliationCommon):
1162
1162
  self.assertFalse(f.add_account_move_line_id)
1163
1163
  self.assertTrue(f.can_reconcile)
1164
1164
  self.assertEqual(3, len(f.reconcile_data_info["data"]))
1165
+
1166
+ def test_receivable_line(self):
1167
+ bank_stmt_line = self.acc_bank_stmt_line_model.create(
1168
+ {
1169
+ "name": "testLine",
1170
+ "journal_id": self.bank_journal_euro.id,
1171
+ "partner_id": self.partner_agrolait_id,
1172
+ "amount": 100,
1173
+ "date": time.strftime("%Y-07-15"),
1174
+ }
1175
+ )
1176
+ self.assertTrue(bank_stmt_line.can_reconcile)
1177
+ suspense_line = False
1178
+ for line in bank_stmt_line.reconcile_data_info["data"]:
1179
+ if line["kind"] == "suspense":
1180
+ suspense_line = line
1181
+ break
1182
+ self.assertTrue(suspense_line)
1183
+ self.assertEqual(
1184
+ self.env["account.account"]
1185
+ .browse(suspense_line["account_id"][0])
1186
+ .account_type,
1187
+ "asset_receivable",
1188
+ )
1189
+
1190
+ def test_payable_line(self):
1191
+ bank_stmt_line = self.acc_bank_stmt_line_model.create(
1192
+ {
1193
+ "name": "testLine",
1194
+ "journal_id": self.bank_journal_euro.id,
1195
+ "partner_id": self.partner_agrolait_id,
1196
+ "amount": -100,
1197
+ "date": time.strftime("%Y-07-15"),
1198
+ }
1199
+ )
1200
+ self.assertTrue(bank_stmt_line.can_reconcile)
1201
+ suspense_line = False
1202
+ for line in bank_stmt_line.reconcile_data_info["data"]:
1203
+ if line["kind"] == "suspense":
1204
+ suspense_line = line
1205
+ break
1206
+ self.assertTrue(suspense_line)
1207
+ self.assertEqual(
1208
+ self.env["account.account"]
1209
+ .browse(suspense_line["account_id"][0])
1210
+ .account_type,
1211
+ "liability_payable",
1212
+ )
@@ -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.5
3
+ Version: 17.0.1.4.1
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:dcb5036258ed1a909c8df332f82e015b39a2d10c5a2a55d2f19dfe1917062e1d
27
+ !! source digest: sha256:2284fb186c7589c6114c88e95570e080e106ccd6347277636ab57b4ea53eb392
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=eDBCNQ1kPR_D9mm38bUk0Qa3_NmQCRMPKBz8bNoxdoE,3705
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=fFMoxGrgWr0KeUA9Oso7ISncawkQCwtTfrkLnsDwRug,3703
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=lWUSjDM-qiZV-cxHiXJxTWVF_DS8jQcyc4yqWJ3WhTo,1865
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=KWOMFVnpfw38sCXh0wR_MqDe51IDvB5tPOKZ6Y-sYaw,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=gwWNPW0PCT3AlxtrM0OgM7WIhrbSlSuYFRwjdg1e6GI,39921
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=T5cYH97--NIpsnaWcTh3cN4kb_jxwBVIPdRqw3q-kVo,39337
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=_Xx8kuvzNtx_GrpzgCwHzxffgThfbYa5jMzryp90De8,13790
34
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Ys7RIrvdO4TNin2YkOdNIRC_Zbrf2d0oiSidqgUFlkE,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
- odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=YB88i3jGDxYysZoh_SBfwadY0EvY3QO9yiY0Gqv5da4,44757
56
+ odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=PX0gsAWccMtmSKNXlJZ-CePkPGJO1T_DCq5tIWeuSgk,46446
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.5.dist-info/METADATA,sha256=XKCauz3o74mXsbAoinSDtKULVouU8q4Fqupz7FqaNsM,4390
66
- odoo_addon_account_reconcile_oca-17.0.1.3.5.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
67
- odoo_addon_account_reconcile_oca-17.0.1.3.5.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
68
- odoo_addon_account_reconcile_oca-17.0.1.3.5.dist-info/RECORD,,
65
+ odoo_addon_account_reconcile_oca-17.0.1.4.1.dist-info/METADATA,sha256=88CIdUeecmte4wERTLrOewGn1c5ACW47ecFBb9nXO3E,4388
66
+ odoo_addon_account_reconcile_oca-17.0.1.4.1.dist-info/WHEEL,sha256=9fEMia4zL7ZuZbnCOrcYogUhmn4XFIVaJ8G4YGI31xc,81
67
+ odoo_addon_account_reconcile_oca-17.0.1.4.1.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
68
+ odoo_addon_account_reconcile_oca-17.0.1.4.1.dist-info/RECORD,,