odoo-addon-account-reconcile-oca 17.0.1.5.8__py3-none-any.whl → 18.0.1.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 (40) hide show
  1. odoo/addons/account_reconcile_oca/README.rst +6 -6
  2. odoo/addons/account_reconcile_oca/__manifest__.py +1 -1
  3. odoo/addons/account_reconcile_oca/demo/demo.xml +0 -1
  4. odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +6 -26
  5. odoo/addons/account_reconcile_oca/models/account_account_reconcile.py +6 -8
  6. odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +22 -16
  7. odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +1 -1
  8. odoo/addons/account_reconcile_oca/static/description/index.html +4 -4
  9. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +2 -3
  10. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js +0 -2
  11. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js +0 -2
  12. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js +0 -2
  13. odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js +1 -3
  14. odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js +0 -1
  15. odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js +0 -2
  16. odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js +0 -2
  17. odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js +2 -2
  18. odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_view.esm.js +0 -2
  19. odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js +0 -2
  20. odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js +0 -2
  21. odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js +0 -2
  22. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js +2 -4
  23. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js +2 -1
  24. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js +0 -2
  25. odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js +0 -1
  26. odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +3 -3
  27. odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py +32 -55
  28. odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py +31 -28
  29. odoo/addons/account_reconcile_oca/views/account_account.xml +3 -5
  30. odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml +13 -20
  31. odoo/addons/account_reconcile_oca/views/account_bank_statement.xml +0 -2
  32. odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +66 -71
  33. odoo/addons/account_reconcile_oca/views/account_journal.xml +8 -12
  34. odoo/addons/account_reconcile_oca/views/account_move.xml +0 -4
  35. odoo/addons/account_reconcile_oca/views/account_move_line.xml +23 -24
  36. odoo/addons/account_reconcile_oca/views/res_config_settings.xml +0 -4
  37. {odoo_addon_account_reconcile_oca-17.0.1.5.8.dist-info → odoo_addon_account_reconcile_oca-18.0.1.0.1.dist-info}/METADATA +11 -11
  38. {odoo_addon_account_reconcile_oca-17.0.1.5.8.dist-info → odoo_addon_account_reconcile_oca-18.0.1.0.1.dist-info}/RECORD +40 -40
  39. {odoo_addon_account_reconcile_oca-17.0.1.5.8.dist-info → odoo_addon_account_reconcile_oca-18.0.1.0.1.dist-info}/WHEEL +0 -0
  40. {odoo_addon_account_reconcile_oca-17.0.1.5.8.dist-info → odoo_addon_account_reconcile_oca-18.0.1.0.1.dist-info}/top_level.txt +0 -0
@@ -2,7 +2,6 @@
2
2
  <!-- Copyright 2023 Dixmit
3
3
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
4
  <odoo>
5
-
6
5
  <record id="bank_statement_line_reconcile_view" model="ir.ui.view">
7
6
  <field name="name">account.bank.statement.line.reconcile</field>
8
7
  <field name="model">account.bank.statement.line</field>
@@ -13,12 +12,12 @@
13
12
  <field name="foreign_currency_id" />
14
13
  <field name="statement_id" />
15
14
  <field name="statement_balance_end_real" />
16
- <field name="to_check" />
15
+ <field name="checked" />
17
16
  <field name="reconcile_aggregate" />
18
17
  <field name="aggregate_id" />
19
18
  <field name="aggregate_name" />
20
19
  <templates>
21
- <t t-name="kanban-box">
20
+ <t t-name="card">
22
21
  <div
23
22
  t-if="record.reconcile_aggregate.raw_value == 'statement' and !record.statement_id.raw_value"
24
23
  class="o_reconcile_create_statement text-center"
@@ -33,49 +32,43 @@
33
32
  Statement
34
33
  </a>
35
34
  </div>
36
- <div
37
- t-attf-class="oe_kanban_card oe_kanban_global_click"
38
- style="width:100%"
39
- >
40
- <div class="row">
41
- <div class="col-8">
42
- <field name="date" />
43
- </div>
44
- <div class="col-4" style="text-align:right">
45
- <field
46
- name="amount"
47
- t-if="! record.foreign_currency_id.raw_value"
48
- />
49
- <field
50
- name="amount_currency"
51
- t-if="record.foreign_currency_id.raw_value"
52
- widget="monetary"
53
- options="{'currency_field': 'foreign_currency_id'}"
54
- />
55
- </div>
56
-
35
+ <div class="row">
36
+ <div class="col-8">
37
+ <field name="date" />
57
38
  </div>
58
- <div>
59
- <field name="partner_id" />
39
+ <div class="col-4" style="text-align:right">
40
+ <field
41
+ name="amount"
42
+ t-if="!record.foreign_currency_id.raw_value"
43
+ />
44
+ <field
45
+ name="amount_currency"
46
+ t-if="record.foreign_currency_id.raw_value"
47
+ widget="monetary"
48
+ options="{'currency_field': 'foreign_currency_id'}"
49
+ />
60
50
  </div>
61
- <div class="row">
62
- <div class="col-8">
63
- <field name="payment_ref" />
64
- </div>
65
- <div class="col-4" style="text-align:right">
66
- <div
67
- t-if="record.to_check.raw_value"
68
- class="badge text-bg-warning"
69
- >
51
+ </div>
52
+ <div>
53
+ <field name="partner_id" widget="badge" />
54
+ </div>
55
+ <div class="row">
56
+ <div class="col-8">
57
+ <field name="payment_ref" />
58
+ </div>
59
+ <div class="col-4" style="text-align:right">
60
+ <div
61
+ t-if="!record.checked.raw_value"
62
+ class="badge text-bg-warning"
63
+ >
70
64
  To check
71
65
  </div>
72
- <div
73
- t-if="record.is_reconciled.raw_value"
74
- class="badge text-bg-success"
75
- >
66
+ <div
67
+ t-if="record.is_reconciled.raw_value"
68
+ class="badge text-bg-success"
69
+ >
76
70
  Reconciled
77
71
  </div>
78
- </div>
79
72
  </div>
80
73
  </div>
81
74
  </t>
@@ -157,20 +150,20 @@
157
150
  <form js_class="reconcile_form">
158
151
  <div class="o_form_statusbar o_account_reconcile_oca_statusbar">
159
152
  <div class="o_statusbar_buttons">
160
- <button
153
+ <button
161
154
  name="reconcile_bank_line"
162
155
  type="object"
163
156
  string="Validate"
164
157
  accesskey="v"
165
158
  class="btn btn-primary mx-1"
166
- invisible="is_reconciled == True or can_reconcile == False"
159
+ invisible="is_reconciled or not can_reconcile"
167
160
  />
168
161
  <button
169
162
  name="reconcile_bank_line"
170
163
  type="object"
171
164
  string="Reconcile"
172
165
  class="btn btn-primary disabled mx-1"
173
- invisible="is_reconciled == True or can_reconcile == True"
166
+ invisible="is_reconciled or can_reconcile"
174
167
  />
175
168
  <button
176
169
  name="unreconcile_bank_line"
@@ -178,7 +171,7 @@
178
171
  string="Unreconcile"
179
172
  accesskey="r"
180
173
  class="btn btn-warning mx-1"
181
- invisible="is_reconciled == False"
174
+ invisible="not is_reconciled"
182
175
  confirm="Are you sure that the move should be unreconciled?"
183
176
  />
184
177
  <button
@@ -186,7 +179,7 @@
186
179
  type="object"
187
180
  string="Reset reconciliation"
188
181
  class="btn btn-secondary mx-1"
189
- invisible="is_reconciled == True"
182
+ invisible="is_reconciled"
190
183
  />
191
184
  <button
192
185
  name="action_to_check"
@@ -194,7 +187,7 @@
194
187
  class="btn btn-secondary mx-1"
195
188
  accesskey="c"
196
189
  type="object"
197
- invisible="to_check == True"
190
+ invisible="not checked"
198
191
  />
199
192
  <button
200
193
  name="action_checked"
@@ -202,7 +195,7 @@
202
195
  class="btn btn-secondary mx-1"
203
196
  accesskey="c"
204
197
  type="object"
205
- invisible="to_check == False"
198
+ invisible="checked"
206
199
  />
207
200
  <button
208
201
  name="action_show_move"
@@ -216,7 +209,7 @@
216
209
  <field name="id" invisible="1" />
217
210
  <field name="name" invisible="1" />
218
211
  <field name="can_reconcile" invisible="1" />
219
- <field name="to_check" invisible="1" />
212
+ <field name="checked" invisible="1" />
220
213
  <field name="partner_id" invisible="1" />
221
214
  <field name="company_id" invisible="1" />
222
215
  <field name="journal_id" invisible="1" />
@@ -251,7 +244,7 @@
251
244
  name="add_account_move_line_id"
252
245
  widget="account_reconcile_oca_match"
253
246
  domain="[('parent_state', '=', 'posted'),('amount_residual', '!=', 0),('account_id.reconcile', '=', True), ('company_id', '=', company_id), ('statement_line_id', '!=', id)]"
254
- context="{'search_default_partner_id': partner_id, 'tree_view_ref': 'account_reconcile_oca.account_move_line_tree_reconcile_view', 'search_view_ref': 'account_reconcile_oca.account_move_line_search_reconcile_view'}"
247
+ context="{'search_default_partner_id': partner_id, 'list_view_ref': 'account_reconcile_oca.account_move_line_tree_reconcile_view', 'search_view_ref': 'account_reconcile_oca.account_move_line_search_reconcile_view'}"
255
248
  />
256
249
  </page>
257
250
  <page name="manual" string="Manual operation">
@@ -312,33 +305,35 @@
312
305
  insible="manual_move_type not in ['in_invoice', 'in_refund', 'out_invoice', 'out_refund'] or manual_original_amount == 0"
313
306
  >
314
307
  Invoice <field
315
- class="oe_inline"
316
- name="manual_move_id"
317
- />
308
+ class="oe_inline"
309
+ name="manual_move_id"
310
+ />
318
311
  with an open amount <field
319
- class="oe_inline"
320
- name="manual_original_amount"
321
- /> will be reduced by <field
322
- class="oe_inline"
323
- name="manual_amount"
324
- readonly="1"
325
- />.
312
+ class="oe_inline"
313
+ name="manual_original_amount"
314
+ /> will be reduced by <field
315
+ class="oe_inline"
316
+ name="manual_amount"
317
+ readonly="1"
318
+ />.
326
319
  <br />
327
320
  You might want to set the invoice as <button
328
- name="button_manual_reference_full_paid"
329
- type="object"
330
- method_args="[1]"
331
- >fully paid</button>.
321
+ name="button_manual_reference_full_paid"
322
+ type="object"
323
+ method_args="[1]"
324
+ >fully paid</button>.
332
325
  </div>
333
326
  </group>
334
327
  </group>
335
328
  </page>
336
- <page name="narration" string="Narration">
337
- <field name="payment_ref" />
338
- <field name="narration" />
329
+ <page name="narration" string="Other Info">
330
+ <group id="other-main">
331
+ <field name="payment_ref" />
332
+ <field name="narration" colspan="2" nolabel="1" />
333
+ </group>
339
334
  </page>
340
335
  <page name="chatter" string="Chatter">
341
- <field name="move_id" widget="account_reconcile_oca_chatter" />
336
+ <field name="move_id" widget="account_reconcile_oca_chatter" />
342
337
  </page>
343
338
  </notebook>
344
339
  </form>
@@ -351,12 +346,12 @@
351
346
  <field name="context">
352
347
  {'default_journal_id': active_id, 'search_default_not_reconciled': True, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}
353
348
  </field>
354
- <field name="view_mode">kanban,tree</field>
349
+ <field name="view_mode">kanban,list</field>
355
350
  <field
356
351
  name="view_ids"
357
352
  eval="[(5, 0, 0),
358
353
  (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')}),
359
- (0, 0, {'view_mode': 'tree', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')})]"
354
+ (0, 0, {'view_mode': 'list', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')})]"
360
355
  />
361
356
  <field name="help" type="html">
362
357
  <p class="o_view_nocontent_smiling_face">
@@ -371,12 +366,12 @@
371
366
  <field
372
367
  name="context"
373
368
  >{'default_journal_id': active_id, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}</field>
374
- <field name="view_mode">kanban,tree</field>
369
+ <field name="view_mode">kanban,list</field>
375
370
  <field
376
371
  name="view_ids"
377
372
  eval="[(5, 0, 0),
378
373
  (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')}),
379
- (0, 0, {'view_mode': 'tree', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')})]"
374
+ (0, 0, {'view_mode': 'list', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')})]"
380
375
  />
381
376
  <field name="help" type="html">
382
377
  <p class="o_view_nocontent_smiling_face">
@@ -2,7 +2,6 @@
2
2
  <!-- Copyright 2023 Dixmit
3
3
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
4
  <odoo>
5
-
6
5
  <record id="view_account_journal_form" model="ir.ui.view">
7
6
  <field name="name">account.journal.form.inherit</field>
8
7
  <field name="model">account.journal</field>
@@ -30,18 +29,15 @@
30
29
  <field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" />
31
30
  <field name="arch" type="xml">
32
31
  <xpath
33
- expr="//kanban/templates//div[@id='dashboard_bank_cash_left']/t[1]"
34
- position="before"
32
+ expr="//kanban/templates//div[@id='dashboard_bank_cash_left']/div[@name='bank_cash_buttons']"
33
+ position="inside"
35
34
  >
36
- <t t-if="dashboard.number_to_reconcile > 0">
37
- <button
38
- type="action"
39
- name="%(account_reconcile_oca.action_bank_statement_line_reconcile)s"
40
- class="btn btn-primary"
41
- > Reconcile <t
42
- t-esc="dashboard.number_to_reconcile"
43
- /> Items</button>
44
- </t>
35
+ <button
36
+ type="action"
37
+ t-if="dashboard.number_to_reconcile > 0"
38
+ name="%(account_reconcile_oca.action_bank_statement_line_reconcile)s"
39
+ class="btn btn-primary"
40
+ > Reconcile <t t-esc="dashboard.number_to_reconcile" /> Items</button>
45
41
  </xpath>
46
42
  <xpath
47
43
  expr="//kanban/templates//div[@id='dashboard_bank_cash_right']"
@@ -2,7 +2,6 @@
2
2
  <!-- Copyright 2023 Dixmit
3
3
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
4
  <odoo>
5
-
6
5
  <record model="ir.ui.view" id="account_move_form_view">
7
6
  <field name="name">account.move.form (in account_reconcile_oca)</field>
8
7
  <field name="model">account.move</field>
@@ -21,7 +20,4 @@
21
20
  </div>
22
21
  </field>
23
22
  </record>
24
-
25
-
26
-
27
23
  </odoo>
@@ -2,13 +2,12 @@
2
2
  <!-- Copyright 2023 Dixmit
3
3
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
4
  <odoo>
5
-
6
5
  <record id="account_move_line_tree_reconcile_view" model="ir.ui.view">
7
- <field name="name">account.move.line.tree.reconcile</field>
6
+ <field name="name">account.move.line.list.reconcile</field>
8
7
  <field name="model">account.move.line</field>
9
8
  <field name="priority">99</field>
10
9
  <field name="arch" type="xml">
11
- <tree
10
+ <list
12
11
  js_class="reconcile_move_line"
13
12
  create="0"
14
13
  edit="0"
@@ -32,7 +31,7 @@
32
31
  string="View"
33
32
  class="btn btn-secondary"
34
33
  />
35
- </tree>
34
+ </list>
36
35
  </field>
37
36
  </record>
38
37
 
@@ -42,69 +41,69 @@
42
41
  <field name="priority">99</field>
43
42
  <field name="arch" type="xml">
44
43
  <search string="Search Journal Items">
45
- <field
44
+ <field
46
45
  name="name"
47
46
  string="Journal Item"
48
47
  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)]"
49
48
  />
50
- <field name="name" />
51
- <field name="ref" />
52
- <field name="date" />
53
- <field name="account_id" />
54
- <field name="account_root_id" />
55
- <field name="account_type" />
56
- <field name="partner_id" domain="[('parent_id', '=', False)]" />
57
- <field name="journal_id" />
58
- <field
49
+ <field name="name" />
50
+ <field name="ref" />
51
+ <field name="date" />
52
+ <field name="account_id" />
53
+ <field name="account_root_id" />
54
+ <field name="account_type" />
55
+ <field name="partner_id" domain="[('parent_id', '=', False)]" />
56
+ <field name="journal_id" />
57
+ <field
59
58
  name="move_id"
60
59
  string="Journal Entry"
61
60
  filter_domain="[ '|', '|', ('move_id.name', 'ilike', self), ('move_id.ref', 'ilike', self), ('move_id.partner_id', 'ilike', self)]"
62
61
  />
63
- <separator />
64
- <filter
62
+ <separator />
63
+ <filter
65
64
  string="Sales"
66
65
  name="sales"
67
66
  domain="[('journal_id.type', '=', 'sale')]"
68
67
  context="{'default_journal_type': 'sale'}"
69
68
  />
70
- <filter
69
+ <filter
71
70
  string="Purchases"
72
71
  name="purchases"
73
72
  domain="[('journal_id.type', '=', 'purchase')]"
74
73
  context="{'default_journal_type': 'purchase'}"
75
74
  />
76
- <filter
75
+ <filter
77
76
  string="Bank"
78
77
  name="bank"
79
78
  domain="[('journal_id.type', '=', 'bank')]"
80
79
  context="{'default_journal_type': 'bank'}"
81
80
  />
82
- <filter
81
+ <filter
83
82
  string="Cash"
84
83
  name="cash"
85
84
  domain="[('journal_id.type', '=', 'cash')]"
86
85
  context="{'default_journal_type': 'cash'}"
87
86
  />
88
- <filter
87
+ <filter
89
88
  string="Miscellaneous"
90
89
  domain="[('journal_id.type', '=', 'general')]"
91
90
  name="misc_filter"
92
91
  context="{'default_journal_type': 'general'}"
93
92
  />
94
- <separator />
95
- <filter
93
+ <separator />
94
+ <filter
96
95
  string="Payable"
97
96
  domain="[('account_id.account_type', '=', 'liability_payable'), ('account_id.non_trade', '=', False)]"
98
97
  help="From Trade Payable accounts"
99
98
  name="trade_payable"
100
99
  />
101
- <filter
100
+ <filter
102
101
  string="Receivable"
103
102
  domain="[('account_id.account_type', '=', 'asset_receivable'), ('account_id.non_trade', '=', False)]"
104
103
  help="From Trade Receivable accounts"
105
104
  name="trade_receivable"
106
105
  />
107
- </search>
106
+ </search>
108
107
  </field>
109
108
  </record>
110
109
 
@@ -2,7 +2,6 @@
2
2
  <!-- Copyright 2024 Dixmit
3
3
  License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
4
  <odoo>
5
-
6
5
  <record model="ir.ui.view" id="res_config_settings_form_view">
7
6
  <field name="model">res.config.settings</field>
8
7
  <field name="inherit_id" ref="account.res_config_settings_view_form" />
@@ -18,7 +17,4 @@
18
17
  </block>
19
18
  </field>
20
19
  </record>
21
-
22
-
23
-
24
20
  </odoo>
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-account_reconcile_oca
3
- Version: 17.0.1.5.8
3
+ Version: 18.0.1.0.1
4
4
  Requires-Python: >=3.10
5
- Requires-Dist: odoo-addon-account_reconcile_model_oca>=17.0dev,<17.1dev
6
- Requires-Dist: odoo-addon-account_statement_base>=17.0dev,<17.1dev
7
- Requires-Dist: odoo>=17.0a,<17.1dev
5
+ Requires-Dist: odoo-addon-account_reconcile_model_oca==18.0.*
6
+ Requires-Dist: odoo-addon-account_statement_base==18.0.*
7
+ Requires-Dist: odoo==18.0.*
8
8
  Summary: Reconcile addons for Odoo CE accounting
9
9
  Home-page: https://github.com/OCA/account-reconcile
10
10
  License: AGPL-3
@@ -12,7 +12,7 @@ Author: CreuBlanca,Dixmit,Odoo Community Association (OCA)
12
12
  Author-email: support@odoo-community.org
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Framework :: Odoo
15
- Classifier: Framework :: Odoo :: 17.0
15
+ Classifier: Framework :: Odoo :: 18.0
16
16
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
17
17
 
18
18
  =====================
@@ -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:a1d19f7cb36b1b53954b505f964b766f7237615fc66c01368256cc9c5f390fd2
27
+ !! source digest: sha256:1fba165fd960adf33ffa23afb75c4c629e7eca96d670fc7bdc3b40a7f0da8620
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -34,13 +34,13 @@ Account Reconcile Oca
34
34
  :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
35
35
  :alt: License: AGPL-3
36
36
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github
37
- :target: https://github.com/OCA/account-reconcile/tree/17.0/account_reconcile_oca
37
+ :target: https://github.com/OCA/account-reconcile/tree/18.0/account_reconcile_oca
38
38
  :alt: OCA/account-reconcile
39
39
  .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
40
- :target: https://translation.odoo-community.org/projects/account-reconcile-17-0/account-reconcile-17-0-account_reconcile_oca
40
+ :target: https://translation.odoo-community.org/projects/account-reconcile-18-0/account-reconcile-18-0-account_reconcile_oca
41
41
  :alt: Translate me on Weblate
42
42
  .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
43
- :target: https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=17.0
43
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=18.0
44
44
  :alt: Try me on Runboat
45
45
 
46
46
  |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -82,7 +82,7 @@ Bug Tracker
82
82
  Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-reconcile/issues>`_.
83
83
  In case of trouble, please check there if your issue has already been reported.
84
84
  If you spotted it first, help us to smash it by providing a detailed and welcomed
85
- `feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20account_reconcile_oca%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
85
+ `feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20account_reconcile_oca%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
86
86
 
87
87
  Do not contact contributors directly about support or help with technical issues.
88
88
 
@@ -121,6 +121,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
121
121
 
122
122
  |maintainer-etobella|
123
123
 
124
- This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/17.0/account_reconcile_oca>`_ project on GitHub.
124
+ This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/18.0/account_reconcile_oca>`_ project on GitHub.
125
125
 
126
126
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.