odoo-addon-account-reconcile-oca 16.0.2.3.1__py3-none-any.whl → 16.0.2.3.2__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:70964daffe4ca9515491c44f018e7e76789e8b3dcb44a38e86b1695ffcb8a2c4
10
+ !! source digest: sha256:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
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.3.1",
8
+ "version": "16.0.2.3.2",
9
9
  "license": "AGPL-3",
10
10
  "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
11
11
  "maintainers": ["etobella"],
@@ -52,6 +52,13 @@ msgstr ""
52
52
  msgid "Add Bank Statement Line"
53
53
  msgstr ""
54
54
 
55
+ #. module: account_reconcile_oca
56
+ #. odoo-javascript
57
+ #: code:addons/account_reconcile_oca/static/src/xml/reconcile.xml:0
58
+ #, python-format
59
+ msgid "Add all"
60
+ msgstr ""
61
+
55
62
  #. module: account_reconcile_oca
56
63
  #: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__aggregate_id
57
64
  msgid "Aggregate"
@@ -132,16 +132,17 @@ class AccountAccountReconcile(models.Model):
132
132
  @api.onchange("add_account_move_line_id")
133
133
  def _onchange_add_account_move_line(self):
134
134
  if self.add_account_move_line_id:
135
- data = self.reconcile_data_info
136
- if self.add_account_move_line_id.id not in data["counterparts"]:
137
- data["counterparts"].append(self.add_account_move_line_id.id)
138
- else:
139
- del data["counterparts"][
140
- data["counterparts"].index(self.add_account_move_line_id.id)
141
- ]
142
- self.reconcile_data_info = self._recompute_data(data)
135
+ self._add_account_move_line(self.add_account_move_line_id)
143
136
  self.add_account_move_line_id = False
144
137
 
138
+ def _add_account_move_line(self, move_line, keep_current=False):
139
+ data = self.reconcile_data_info
140
+ if move_line.id not in data["counterparts"]:
141
+ data["counterparts"].append(move_line.id)
142
+ elif not keep_current:
143
+ del data["counterparts"][data["counterparts"].index(move_line.id)]
144
+ self.reconcile_data_info = self._recompute_data(data)
145
+
145
146
  @api.onchange("manual_reference", "manual_delete")
146
147
  def _onchange_manual_reconcile_reference(self):
147
148
  self.ensure_one()
@@ -188,6 +189,13 @@ class AccountAccountReconcile(models.Model):
188
189
  )
189
190
  data_record.unlink()
190
191
 
192
+ def add_multiple_lines(self, domain):
193
+ res = super().add_multiple_lines(domain)
194
+ lines = self.env["account.move.line"].search(domain)
195
+ for line in lines:
196
+ self._add_account_move_line(line, keep_current=True)
197
+ return res
198
+
191
199
 
192
200
  class AccountAccountReconcileData(models.TransientModel):
193
201
  _name = "account.account.reconcile.data"
@@ -210,36 +210,39 @@ class AccountBankStatementLine(models.Model):
210
210
  @api.onchange("add_account_move_line_id")
211
211
  def _onchange_add_account_move_line_id(self):
212
212
  if self.add_account_move_line_id:
213
- data = self.reconcile_data_info["data"]
214
- new_data = []
215
- is_new_line = True
216
- pending_amount = 0.0
217
- currency = self._get_reconcile_currency()
218
- for line in data:
219
- if line["kind"] != "suspense":
220
- pending_amount += self._get_amount_currency(line, currency)
221
- if self.add_account_move_line_id.id in line.get(
222
- "counterpart_line_ids", []
223
- ):
224
- is_new_line = False
225
- else:
213
+ self._add_account_move_line(self.add_account_move_line_id)
214
+ self.add_account_move_line_id = False
215
+
216
+ def _add_account_move_line(self, move_line, keep_current=False):
217
+ data = self.reconcile_data_info["data"]
218
+ new_data = []
219
+ is_new_line = True
220
+ pending_amount = 0.0
221
+ currency = self._get_reconcile_currency()
222
+ for line in data:
223
+ if line["kind"] != "suspense":
224
+ pending_amount += self._get_amount_currency(line, currency)
225
+ if move_line.id in line.get("counterpart_line_ids", []):
226
+ is_new_line = False
227
+ if keep_current:
226
228
  new_data.append(line)
227
- if is_new_line:
228
- reconcile_auxiliary_id, lines = self._get_reconcile_line(
229
- self.add_account_move_line_id,
230
- "other",
231
- is_counterpart=True,
232
- max_amount=currency.round(pending_amount),
233
- move=True,
234
- )
235
- new_data += lines
236
- self.reconcile_data_info = self._recompute_suspense_line(
237
- new_data,
238
- self.reconcile_data_info["reconcile_auxiliary_id"],
239
- self.manual_reference,
229
+ else:
230
+ new_data.append(line)
231
+ if is_new_line:
232
+ reconcile_auxiliary_id, lines = self._get_reconcile_line(
233
+ move_line,
234
+ "other",
235
+ is_counterpart=True,
236
+ max_amount=currency.round(pending_amount),
237
+ move=True,
240
238
  )
241
- self.can_reconcile = self.reconcile_data_info.get("can_reconcile", False)
242
- self.add_account_move_line_id = False
239
+ new_data += lines
240
+ self.reconcile_data_info = self._recompute_suspense_line(
241
+ new_data,
242
+ self.reconcile_data_info["reconcile_auxiliary_id"],
243
+ self.manual_reference,
244
+ )
245
+ self.can_reconcile = self.reconcile_data_info.get("can_reconcile", False)
243
246
 
244
247
  def _recompute_suspense_line(self, data, reconcile_auxiliary_id, manual_reference):
245
248
  can_reconcile = True
@@ -1253,3 +1256,10 @@ class AccountBankStatementLine(models.Model):
1253
1256
  or self.journal_id.currency_id
1254
1257
  or self.company_id.currency_id
1255
1258
  )
1259
+
1260
+ def add_multiple_lines(self, domain):
1261
+ res = super().add_multiple_lines(domain)
1262
+ lines = self.env["account.move.line"].search(domain)
1263
+ for line in lines:
1264
+ self._add_account_move_line(line, keep_current=True)
1265
+ return res
@@ -122,3 +122,6 @@ class AccountReconcileAbstract(models.AbstractModel):
122
122
  if is_counterpart:
123
123
  vals["counterpart_line_ids"] = line.ids
124
124
  return [vals]
125
+
126
+ def add_multiple_lines(self, domain):
127
+ self.ensure_one()
@@ -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:70964daffe4ca9515491c44f018e7e76789e8b3dcb44a38e86b1695ffcb8a2c4
370
+ !! source digest: sha256:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
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>
@@ -8,6 +8,15 @@ export class ReconcileMoveLineController extends ListController {
8
8
  data[this.props.parentField] = [record.resId, record.display_name];
9
9
  this.props.parentRecord.update(data);
10
10
  }
11
+ async clickAddAll() {
12
+ await this.props.parentRecord.save();
13
+ await this.orm.call(this.props.parentRecord.resModel, "add_multiple_lines", [
14
+ this.props.parentRecord.resIds,
15
+ this.model.root.domain,
16
+ ]);
17
+ await this.props.parentRecord.load();
18
+ this.props.parentRecord.model.notify();
19
+ }
11
20
  }
12
21
 
13
22
  ReconcileMoveLineController.template = `account_reconcile_oca.ReconcileMoveLineController`;
@@ -10,6 +10,7 @@ export const ReconcileMoveLineView = {
10
10
  ...listView,
11
11
  Controller: ReconcileMoveLineController,
12
12
  Renderer: ReconcileMoveLineRenderer,
13
+ buttonTemplate: "reconcile_move_line.ListView.Buttons",
13
14
  };
14
15
 
15
16
  registry.category("views").add("reconcile_move_line", ReconcileMoveLineView);
@@ -21,7 +21,7 @@ export class AccountReconcileMatchWidget extends Component {
21
21
  controlPanel: {
22
22
  // Hiding the control panel buttons
23
23
  "top-left": false,
24
- "bottom-left": false,
24
+ "bottom-left": true,
25
25
  },
26
26
  },
27
27
  resModel: this.props.record.fields[this.props.name].relation,
@@ -36,6 +36,7 @@ export class AccountReconcileMatchWidget extends Component {
36
36
  searchViewId: false,
37
37
  parentRecord: this.props.record,
38
38
  parentField: this.props.name,
39
+ showButtons: false,
39
40
  };
40
41
  }
41
42
  }
@@ -203,4 +203,14 @@
203
203
  <attribute name="parentField">props.parentField</attribute>
204
204
  </xpath>
205
205
  </t>
206
+ <t
207
+ t-name="reconcile_move_line.ListView.Buttons"
208
+ t-inherit="web.ListView.Buttons"
209
+ t-inherit-mode="primary"
210
+ owl="1"
211
+ >
212
+ <xpath expr="//div[hasclass('o_list_buttons')]" position="inside">
213
+ <button class="btn btn-primary" t-on-click="clickAddAll">Add all</button>
214
+ </xpath>
215
+ </t>
206
216
  </templates>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 16.0.2.3.1
3
+ Version: 16.0.2.3.2
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:70964daffe4ca9515491c44f018e7e76789e8b3dcb44a38e86b1695ffcb8a2c4
26
+ !! source digest: sha256:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,9 +1,9 @@
1
- odoo/addons/account_reconcile_oca/README.rst,sha256=OVt8vITwujoGstjkDIxtxEHMMhvjeg2n3uB-Tw8lmkA,3709
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=04M4PgjRoxUaOO176_ANuhQgC83RHoQwXIxP3wxkb2A,3709
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=St1qGAeCbR_y6K5Pv6449XiLBXbk3uWuEAdhHENNiQU,1826
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=ScEwTMub9AhjOcWkMLorthmRfNg66a84t9y2ara-b8Y,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
- odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=UOXZfULkd2lLxY1q6OJb-D4C8KqXV1U-7eG_52CP5lU,26737
6
+ odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=-mUJwfpIhw4hcbXforS8LRmN8UEcA0b5mcALWU2rG6Y,26901
7
7
  odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=V2CvS0DOFF6a4Icr-0sFYJEgYp2XKAQBiM9toi67ID8,28745
8
8
  odoo/addons/account_reconcile_oca/i18n/es.po,sha256=b7I6dJ3vb8wlDt08LgBRBCOznsD5R-NBwysbgUh6-Jg,29663
9
9
  odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=Insh_trMpG5e1E5-QQ6qreIlDyHNohJeNn4cF9SFhuA,29811
@@ -16,12 +16,12 @@ odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=aHozw_7rtEPrdtsgiz0gVu78gPX_
16
16
  odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=rMhwTubzqfo7UVshljWMjy28QJ4UW9pFB-aqPzqBWCA,29447
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=XGTsmZSUVyxp4XAjE2Q7f6nNAdONUOQS6GrCKI0pG7g,6882
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=Q_mCeYJynMM26YNYv9ZO4PFd7FpfyuMoIVdb7y9wJT0,51135
21
+ odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=MEnkbE2W4OO3X3zZRgZ00qmE7Z198066PqJYFI6uwFQ,51429
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
- odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=Q4TRiGluDU_t-oXfgEeNh9FbLqBoEDvAT0SH_5jIJ7U,4944
24
+ odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=hmuorywUhHLLFjfYOuUIlB4e6xp5gWMU6kcgnhBvf6s,5013
25
25
  odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
26
26
  odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
27
27
  odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst,sha256=GAYxzAZEN5wTBewMNx4PD2y_QoI-dzpokacQ9NnaEso,16
@@ -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=JdqL179kWWfXgjZoAbzVJcMy1H3FYqeXxCcm8652Pw4,13829
33
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=qcUfiWQ2gXdFEPboyvRjiaKULswdIMtStiFRE3vXb24,13829
34
34
  odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=4bw-Dc1pmVx6sv-fBzyPfBj-rZrqFUVZ8C19n9Pfpi0,4880
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
@@ -41,15 +41,15 @@ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_re
41
41
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
42
42
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js,sha256=TqMA5PUI81WCOp8elcl5aS_K47wReKauwJkdzVJ5CKA,1113
43
43
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_view.esm.js,sha256=GXC6xTc3VYTXEZvX-bn9SH2ylQbN_4gXiLeIwuMIfxI,381
44
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=QWLzFB7fNAK1hj_mUGDAeu5J8LmTDj6kOkswtyM5G6s,598
44
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=3mApRNQb-3CXWRkLjjFMiFngTjonx6TPh_E7P2iZH3U,948
45
45
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=UhOEnNAeVyXR4v4c4kMTne6Rw9_y3IOXWo-jUn7Kx-Q,594
46
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
46
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=lWr_tCa44oMioQ2iXMhteGoxQOrrY6GxBp4wTnFGlrw,570
47
47
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=9vYBd7Nr-csZujbLx6VmdZOZ7T4JTtqrM7w4slrWzIw,541
48
48
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=gP5XuA9D6KrHf_PPop1FoUVNAh88lV1L50FVjY6LB2k,3595
49
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=s_GHeElGkhsa2nQvd0eKxXdrsMPL2g0YfPC-REyUqew,1604
49
+ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=VEudzTbkfL6tpcjfULot2Nfz-tMI5zpzztNaZkD5ZTM,1635
50
50
  odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=zH2cqAerAF4cYDQMyMYTeFKoPIo1v_UmeFyPiwAz8tM,943
51
51
  odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=cQoernconYYErBp0nkOQOPeDq1NGDP9kds5r_q1nrk0,2809
52
- odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=0ohTUpO2Jpo4Je-tsq2HCYMoRRukAz5kWlan_sWXgts,9327
52
+ odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=aBm6PxYfEciRO8tmtoj955h8pDzKFjFN_0MXWbaAZSY,9671
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
55
55
  odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=36vQlGdKlDTV6anNu3VA5HWTzqSiAUf7gQHdgx1AD3c,51426
@@ -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.3.1.dist-info/METADATA,sha256=by8fOeGFeWX8NPNbiOL_Sr5YPk0qCFH0kzA-_F0aAPo,4322
65
- odoo_addon_account_reconcile_oca-16.0.2.3.1.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
66
- odoo_addon_account_reconcile_oca-16.0.2.3.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
- odoo_addon_account_reconcile_oca-16.0.2.3.1.dist-info/RECORD,,
64
+ odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/METADATA,sha256=aZhzUbYqIgXmUEsko9Nucrk6PaeFfXqcJWWQGTeDmeY,4322
65
+ odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
66
+ odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
+ odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/RECORD,,