odoo-addon-account-reconcile-oca 16.0.1.4.1.11__py3-none-any.whl → 16.0.2.0.0.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.
Files changed (24) hide show
  1. odoo/addons/account_reconcile_oca/README.rst +1 -1
  2. odoo/addons/account_reconcile_oca/__manifest__.py +1 -1
  3. odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +21 -0
  4. odoo/addons/account_reconcile_oca/i18n/ca.po +21 -0
  5. odoo/addons/account_reconcile_oca/i18n/es.po +21 -0
  6. odoo/addons/account_reconcile_oca/i18n/fr.po +21 -0
  7. odoo/addons/account_reconcile_oca/i18n/hr.po +21 -0
  8. odoo/addons/account_reconcile_oca/i18n/it.po +21 -0
  9. odoo/addons/account_reconcile_oca/i18n/nl.po +21 -0
  10. odoo/addons/account_reconcile_oca/i18n/pt.po +21 -0
  11. odoo/addons/account_reconcile_oca/i18n/pt_BR.po +21 -0
  12. odoo/addons/account_reconcile_oca/i18n/sv.po +21 -0
  13. odoo/addons/account_reconcile_oca/i18n/tr.po +21 -0
  14. odoo/addons/account_reconcile_oca/models/account_account_reconcile.py +3 -3
  15. odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +219 -91
  16. odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +19 -22
  17. odoo/addons/account_reconcile_oca/static/description/index.html +1 -1
  18. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js +2 -0
  19. odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py +110 -0
  20. odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +15 -4
  21. {odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info → odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info}/METADATA +2 -2
  22. {odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info → odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info}/RECORD +24 -24
  23. {odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info → odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info}/WHEEL +0 -0
  24. {odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info → odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info}/top_level.txt +0 -0
@@ -1013,3 +1013,113 @@ class TestReconciliationWidget(TestAccountReconciliationCommon):
1013
1013
  self.assertTrue(bank_stmt_line.can_reconcile)
1014
1014
  bank_stmt_line.reconcile_bank_line()
1015
1015
  self.assertEqual(0, inv1.amount_residual)
1016
+ self.assertTrue(
1017
+ inv1.line_ids.filtered(
1018
+ lambda line: line.account_id.account_type == "asset_receivable"
1019
+ ).full_reconcile_id
1020
+ )
1021
+
1022
+ def test_journal_foreign_currency_change(self):
1023
+ self.env["res.currency.rate"].create(
1024
+ {
1025
+ "currency_id": self.env.ref("base.EUR").id,
1026
+ "name": time.strftime("%Y-07-14"),
1027
+ "rate": 1.15,
1028
+ }
1029
+ )
1030
+ bank_stmt = self.acc_bank_stmt_model.create(
1031
+ {
1032
+ "company_id": self.env.ref("base.main_company").id,
1033
+ "journal_id": self.bank_journal_usd.id,
1034
+ "date": time.strftime("%Y-07-15"),
1035
+ "name": "test",
1036
+ }
1037
+ )
1038
+ bank_stmt_line = self.acc_bank_stmt_line_model.create(
1039
+ {
1040
+ "name": "testLine",
1041
+ "journal_id": self.bank_journal_usd.id,
1042
+ "statement_id": bank_stmt.id,
1043
+ "amount": 100,
1044
+ "date": time.strftime("%Y-07-15"),
1045
+ }
1046
+ )
1047
+ with Form(
1048
+ bank_stmt_line,
1049
+ view="account_reconcile_oca.bank_statement_line_form_reconcile_view",
1050
+ ) as f:
1051
+ line = f.reconcile_data_info["data"][0]
1052
+ self.assertEqual(
1053
+ line["currency_amount"],
1054
+ 100,
1055
+ )
1056
+ self.env["res.currency.rate"].create(
1057
+ {
1058
+ "currency_id": self.env.ref("base.EUR").id,
1059
+ "name": time.strftime("%Y-07-15"),
1060
+ "rate": 1.2,
1061
+ }
1062
+ )
1063
+ with Form(
1064
+ bank_stmt_line,
1065
+ view="account_reconcile_oca.bank_statement_line_form_reconcile_view",
1066
+ ) as f:
1067
+ line = f.reconcile_data_info["data"][0]
1068
+ self.assertEqual(
1069
+ line["currency_amount"],
1070
+ 100,
1071
+ )
1072
+
1073
+ def test_invoice_foreign_currency_change(self):
1074
+ self.env["res.currency.rate"].create(
1075
+ {
1076
+ "currency_id": self.env.ref("base.EUR").id,
1077
+ "name": time.strftime("%Y-07-14"),
1078
+ "rate": 1.15,
1079
+ }
1080
+ )
1081
+ self.env["res.currency.rate"].create(
1082
+ {
1083
+ "currency_id": self.env.ref("base.EUR").id,
1084
+ "name": time.strftime("%Y-07-15"),
1085
+ "rate": 1.2,
1086
+ }
1087
+ )
1088
+ inv1 = self._create_invoice(
1089
+ currency_id=self.currency_usd_id,
1090
+ invoice_amount=100,
1091
+ date_invoice="2021-07-14",
1092
+ auto_validate=True,
1093
+ )
1094
+ bank_stmt = self.acc_bank_stmt_model.create(
1095
+ {
1096
+ "company_id": self.env.ref("base.main_company").id,
1097
+ "journal_id": self.bank_journal_usd.id,
1098
+ "date": time.strftime("%Y-07-15"),
1099
+ "name": "test",
1100
+ }
1101
+ )
1102
+ bank_stmt_line = self.acc_bank_stmt_line_model.create(
1103
+ {
1104
+ "name": "testLine",
1105
+ "journal_id": self.bank_journal_usd.id,
1106
+ "statement_id": bank_stmt.id,
1107
+ "amount": 100,
1108
+ "date": time.strftime("%Y-07-15"),
1109
+ }
1110
+ )
1111
+ with Form(
1112
+ bank_stmt_line,
1113
+ view="account_reconcile_oca.bank_statement_line_form_reconcile_view",
1114
+ ) as f:
1115
+ line = f.reconcile_data_info["data"][0]
1116
+ self.assertEqual(
1117
+ line["currency_amount"],
1118
+ 100,
1119
+ )
1120
+ f.add_account_move_line_id = inv1.line_ids.filtered(
1121
+ lambda l: l.account_id.account_type == "asset_receivable"
1122
+ )
1123
+ self.assertFalse(f.add_account_move_line_id)
1124
+ self.assertTrue(f.can_reconcile)
1125
+ self.assertEqual(3, len(f.reconcile_data_info["data"]))
@@ -244,16 +244,22 @@
244
244
  <group>
245
245
  <group>
246
246
  <field name="manual_line_id" invisible="1" />
247
+ <field
248
+ name="manual_exchange_counterpart"
249
+ invisible="1"
250
+ />
251
+ <field name="manual_in_currency_id" invisible="1" />
252
+ <field name="manual_in_currency" invisible="1" />
247
253
  <field name="manual_kind" invisible="1" />
248
254
  <field
249
255
  name="manual_account_id"
250
256
  string="Account"
251
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), ('manual_line_id', '!=', False)]}"
257
+ attrs="{'readonly': ['|', '|', '|', ('manual_exchange_counterpart', '=', True),('manual_reference', '=', False), ('is_reconciled', '=', True), ('manual_line_id', '!=', False)]}"
252
258
  />
253
259
  <field
254
260
  name="manual_partner_id"
255
261
  string="Partner"
256
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
262
+ attrs="{'readonly': ['|', '|', '|', ('manual_exchange_counterpart', '=', True),('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
257
263
  />
258
264
  <field
259
265
  name="analytic_distribution"
@@ -267,12 +273,17 @@
267
273
  <field
268
274
  name="manual_name"
269
275
  string="Name"
270
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
276
+ attrs="{'readonly': ['|', '|', '|', ('manual_exchange_counterpart', '=', True), ('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
277
+ />
278
+ <field
279
+ name="manual_amount_in_currency"
280
+ string="Amount in Currency"
281
+ attrs="{'invisible': [('manual_in_currency', '=', False)], 'readonly': ['|', '|', ('manual_exchange_counterpart', '=', True), ('manual_reference', '=', False), ('is_reconciled', '=', True)]}"
271
282
  />
272
283
  <field
273
284
  name="manual_amount"
274
285
  string="Amount"
275
- attrs="{'readonly': ['|', ('manual_reference', '=', False), ('is_reconciled', '=', True)]}"
286
+ attrs="{'readonly': ['|', '|', ('manual_exchange_counterpart', '=', True), ('manual_reference', '=', False), ('is_reconciled', '=', True)]}"
276
287
  />
277
288
  <field name="manual_currency_id" invisible="1" />
278
289
  <field name="manual_original_amount" invisible="1" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 16.0.1.4.1.11
3
+ Version: 16.0.2.0.0.1
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:701d0986b0d6ea77edd466761ef094409b0fbb1265ddc983ea26871d526ab80c
26
+ !! source digest: sha256:83727fd11a51544d1b4bdef6e38ceb4fd2bdeacdd56dbf4013fee99ee2a2f542
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
28
 
29
29
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -1,27 +1,27 @@
1
- odoo/addons/account_reconcile_oca/README.rst,sha256=KFKNOCJMLe6VqEsu7CzSeaWix6Ak7q8xvZXkY-4paEg,3709
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=rZqlWYOgqrqNlCngc24HAG2cxxDJK7OEvarKWvlrMlg,3709
2
2
  odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
- odoo/addons/account_reconcile_oca/__manifest__.py,sha256=wFWRubLBsjuj_wOLP_uxKdHobF-breZ7KHXccc7C90Q,1826
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=NdGrrnYkRQfJ7T6BFatDowFwWm16plOtiLdHfaWdyh8,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=fwKukbBOg2s6JChKTz5Q-ifqcc884VHXAg23AYKEaI0,25771
7
- odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=PLa5KHnZDps9G1MGPrG9CGSu9-wgg8CdG6T78-nRfNQ,27779
8
- odoo/addons/account_reconcile_oca/i18n/es.po,sha256=FEvtD6fut0crMM9S7ybqbD8izYb7t9ZmJguAg4kz1j8,28186
9
- odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=k_vXxm0l1WEcFjIL0q19aXaPjuJeUpo9MlSmG0315rI,28594
10
- odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=GLuwpSKezylorFy_jDm-OdwbtF5WLVJP_GQCPSy5HSU,27208
11
- odoo/addons/account_reconcile_oca/i18n/it.po,sha256=pdEPQNSkrnQPN7iEwE11YT5CphKjKOb0riBiA2pf1Ao,28451
12
- odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=rRfC0Yp4GimmhZF6fyGaJ_8QmRvJxldcD4XdC8DmosU,27849
13
- odoo/addons/account_reconcile_oca/i18n/pt.po,sha256=CxVTgmFpP1o7fu5gTDr0J5WQymVdf5lVXfRgfRGhKa0,28198
14
- odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=N6zYX3DUYUVpkUy9TLITrxQMdeS4G5VUdPi9Dt7Yp8k,28572
15
- odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=Z-ZdTjQDCNPdYq6jruUhLfujF4pjUboKRB86PuDrC9g,28201
16
- odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=TZHjL9fFHkCKAOgVlaDXPLrf1P-SlYqU_OTbzbU84ds,28324
6
+ odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=2GZdc0u34JPm_Ge5mExrxFz9kI9FZlqdCsrjCHtefic,26662
7
+ odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=GkVjL_Ih7wWVDandR2IKX2BIwyBDPllLUKqtIEBh0cg,28670
8
+ odoo/addons/account_reconcile_oca/i18n/es.po,sha256=5zoNuWGdIJVZf1rha8G_3dLWYxgGytHrP3vbLfhvcfs,29077
9
+ odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=JKf3DfkZrbTJQFDd2kt76CIy9_iT5MScjqy2M_dIB8U,29485
10
+ odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=8pV7-oW5TTLiOSFiTWTBIzsGjLxS9b_hYepj6icTXrY,28099
11
+ odoo/addons/account_reconcile_oca/i18n/it.po,sha256=5XF8VLZhUKKJuzX0FCBLjpFh7sUIM7XkRjkdqr9HV2I,29342
12
+ odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=MFvITc8K69rso7rV7i6hOAyoa0n-2cy9J_YqiVITMWw,28740
13
+ odoo/addons/account_reconcile_oca/i18n/pt.po,sha256=WCJwdqYV_gy7ZvjO3lVEzV4xBXu30BTYLmVQk6oJmOw,29089
14
+ odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=iB-Wfo3usXOunbG8n9q2p876zLkFB6Rxkp5FLpY8qmg,29463
15
+ odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=X5pnDsXnv-EvB5MjfyUU_ZPgudELG8ZHFfNXxIQ2wVU,29092
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=Yyd1ww8ybpC4s6YiM2Z_oVLR2pkBEn6Wx6yRYpiYI-Q,6282
19
+ odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=e5SqpUFH4I592o4vqO_1YZNYsv4XZ94tp2qqTnQWMLM,6302
20
20
  odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
21
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=KdkRYf4UkrdiwEs29pBUUeGgd9U5CJhDYAa-q43SxDE,34190
21
+ odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=zfS6scDMFbT-sR35ykE6dRQ9is4DhgLW9KkEKWlj7WU,39407
22
22
  odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=prdylwu2cX8MQUCRUGJfPWeCu8R6MNgLvHqPscqwloQ,995
23
23
  odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=DGoyszrkLSlk42j-v_2J6tWbbU3VLtyXCh9zpGDl9UM,1100
24
- odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=vCJsUkzOv47ZeE1Qgp4wsqbI9gGXFxJB5xIv3cKvc6o,4083
24
+ odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=jRboiVtRZmFBoZB2OQU4FOK4wwv7WLwjtX00XUO3FzA,3916
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=Xb9rr2z3ijCb0Xho0Mukbqa3dPbCEFk07Zg1JCm4QOc,13829
33
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=8-Suxa2gcniLO2PgG7ycTsN9-ex0vZMOnswc-s_ZKIo,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
@@ -45,23 +45,23 @@ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_mo
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
46
  odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
47
47
  odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=9vYBd7Nr-csZujbLx6VmdZOZ7T4JTtqrM7w4slrWzIw,541
48
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=y44wPoddhxNJISNAFXYrAonv5CJQnC2GvlYRhQzCrrU,3123
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
51
  odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=qL7RJ_6X-qhUqAxPKJNglQ2k4rFOH96jMX292jt2WW8,2638
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
55
- odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=Sj9PSTutJJXSxhPaqAKrJK_i0AsoUpTuKpjW6hNrBJY,39086
55
+ odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=5Yw7AQ54c1q5AxFXJotSrDhDCporhu1OX4h9XZLgZC0,42939
56
56
  odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=Z6S9dDF2CnaSl8CYw69dxJiuVznJZzZX2BrhaDeMP3c,916
57
57
  odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=yGOV7nOj5dVwp09ItOIfvNiBQrO_FpAC36gcnjI98JE,7066
58
58
  odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=wG7C5SExLc3LeXy_megI-wVg6Ut7lbMihsEcHhXh5qo,1850
59
- odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=pv25iOvw4XEOIprDIesVPPGIR6S0lytP7P-GTxuBl94,20629
59
+ odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=uuV4PPNlweeLTFYG0Xz87F1JUKHysJvr9jc-HOEEQbQ,21620
60
60
  odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-IhSCzMXlbUoOjjkB11I9L2YHk1p3rak,3434
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.1.4.1.11.dist-info/METADATA,sha256=vE2r3yxhXw2Suj0Ujq-1Zn1HZW8jG3_o2xYoz6VRrnw,4327
65
- odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
66
- odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
- odoo_addon_account_reconcile_oca-16.0.1.4.1.11.dist-info/RECORD,,
64
+ odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info/METADATA,sha256=5ulaZcW4IDl6glOAT_CGfKHtPwd-5otbbW6ww5ivQiM,4326
65
+ odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
66
+ odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
67
+ odoo_addon_account_reconcile_oca-16.0.2.0.0.1.dist-info/RECORD,,