odoo-addon-account-reconcile-oca 16.0.1.2.12.3__py3-none-any.whl → 17.0.1.0.0.21__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 (58) hide show
  1. odoo/addons/account_reconcile_oca/README.rst +19 -18
  2. odoo/addons/account_reconcile_oca/__manifest__.py +4 -1
  3. odoo/addons/account_reconcile_oca/hooks.py +2 -2
  4. odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +89 -8
  5. odoo/addons/account_reconcile_oca/i18n/ca.po +91 -7
  6. odoo/addons/account_reconcile_oca/i18n/es.po +94 -10
  7. odoo/addons/account_reconcile_oca/i18n/fr.po +91 -7
  8. odoo/addons/account_reconcile_oca/i18n/hr.po +91 -7
  9. odoo/addons/account_reconcile_oca/i18n/nl.po +91 -7
  10. odoo/addons/account_reconcile_oca/i18n/pt_BR.po +91 -7
  11. odoo/addons/account_reconcile_oca/i18n/sv.po +126 -42
  12. odoo/addons/account_reconcile_oca/i18n/tr.po +91 -7
  13. odoo/addons/account_reconcile_oca/models/__init__.py +3 -0
  14. odoo/addons/account_reconcile_oca/models/account_account_reconcile.py +2 -2
  15. odoo/addons/account_reconcile_oca/models/account_bank_statement.py +15 -0
  16. odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +98 -19
  17. odoo/addons/account_reconcile_oca/models/account_journal.py +15 -1
  18. odoo/addons/account_reconcile_oca/models/account_move_line.py +0 -1
  19. odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +4 -2
  20. odoo/addons/account_reconcile_oca/models/res_company.py +14 -0
  21. odoo/addons/account_reconcile_oca/models/res_config_settings.py +12 -0
  22. odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.md +1 -0
  23. odoo/addons/account_reconcile_oca/readme/{DESCRIPTION.rst → DESCRIPTION.md} +2 -1
  24. odoo/addons/account_reconcile_oca/readme/ROADMAP.md +3 -0
  25. odoo/addons/account_reconcile_oca/readme/USAGE.md +10 -0
  26. odoo/addons/account_reconcile_oca/static/description/index.html +10 -9
  27. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +44 -4
  28. odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js +52 -1
  29. odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js +3 -0
  30. odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js +3 -0
  31. odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js +1 -1
  32. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js +11 -4
  33. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js +22 -33
  34. odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js +62 -6
  35. odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js +10 -1
  36. odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss +16 -15
  37. odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +44 -10
  38. odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py +15 -9
  39. odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py +28 -21
  40. odoo/addons/account_reconcile_oca/views/account_account.xml +3 -3
  41. odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml +7 -7
  42. odoo/addons/account_reconcile_oca/views/account_bank_statement.xml +46 -0
  43. odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +71 -37
  44. odoo/addons/account_reconcile_oca/views/account_journal.xml +10 -4
  45. odoo/addons/account_reconcile_oca/views/account_move.xml +1 -1
  46. odoo/addons/account_reconcile_oca/views/account_move_line.xml +8 -3
  47. odoo/addons/account_reconcile_oca/views/res_config_settings.xml +24 -0
  48. {odoo_addon_account_reconcile_oca-16.0.1.2.12.3.dist-info → odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info}/METADATA +27 -28
  49. odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/RECORD +64 -0
  50. {odoo_addon_account_reconcile_oca-16.0.1.2.12.3.dist-info → odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info}/WHEEL +1 -1
  51. odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/top_level.txt +1 -0
  52. odoo/addons/account_reconcile_oca/i18n/it.po +0 -598
  53. odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py +0 -23
  54. odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst +0 -1
  55. odoo/addons/account_reconcile_oca/readme/ROADMAP.rst +0 -3
  56. odoo/addons/account_reconcile_oca/readme/USAGE.rst +0 -12
  57. odoo_addon_account_reconcile_oca-16.0.1.2.12.3.dist-info/RECORD +0 -61
  58. odoo_addon_account_reconcile_oca-16.0.1.2.12.3.dist-info/top_level.txt +0 -1
@@ -11,9 +11,28 @@
11
11
  <field name="is_reconciled" />
12
12
  <field name="currency_id" />
13
13
  <field name="foreign_currency_id" />
14
+ <field name="statement_id" />
15
+ <field name="statement_balance_end_real" />
14
16
  <field name="to_check" />
17
+ <field name="reconcile_aggregate" />
18
+ <field name="aggregate_id" />
19
+ <field name="aggregate_name" />
15
20
  <templates>
16
21
  <t t-name="kanban-box">
22
+ <div
23
+ t-if="record.reconcile_aggregate.raw_value == 'statement' and !record.statement_id.raw_value"
24
+ class="o_reconcile_create_statement text-center"
25
+ >
26
+ <a
27
+ role="button"
28
+ class="btn btn-secondary btn-sm"
29
+ tabindex="-1"
30
+ type="object"
31
+ name="add_statement"
32
+ >
33
+ Statement
34
+ </a>
35
+ </div>
17
36
  <div
18
37
  t-attf-class="oe_kanban_card oe_kanban_global_click"
19
38
  style="width:100%"
@@ -117,6 +136,19 @@
117
136
  </field>
118
137
  </record>
119
138
 
139
+ <record id="account_bank_statement_line_search" model="ir.ui.view">
140
+ <field name="name">account.bank.statement.line.search</field>
141
+ <field name="model">account.bank.statement.line</field>
142
+ <field
143
+ name="inherit_id"
144
+ ref="account_statement_base.account_bank_statement_line_search"
145
+ />
146
+ <field name="arch" type="xml">
147
+ <field name="journal_id" position="after">
148
+ <field name="move_id" />
149
+ </field>
150
+ </field>
151
+ </record>
120
152
  <record id="bank_statement_line_form_reconcile_view" model="ir.ui.view">
121
153
  <field name="name">account.bank.statement.line.reconcile</field>
122
154
  <field name="model">account.bank.statement.line</field>
@@ -130,53 +162,54 @@
130
162
  type="object"
131
163
  string="Validate"
132
164
  accesskey="v"
133
- class="btn btn-primary"
134
- attrs="{'invisible': ['|', ('is_reconciled', '=', True), ('can_reconcile', '=', False)]}"
165
+ class="btn btn-primary mx-1"
166
+ invisible="is_reconciled == True or can_reconcile == False"
135
167
  />
136
168
  <button
137
169
  name="reconcile_bank_line"
138
170
  type="object"
139
171
  string="Reconcile"
140
- class="btn btn-primary disabled"
141
- attrs="{'invisible': ['|', ('is_reconciled', '=', True), ('can_reconcile', '=', True)]}"
172
+ class="btn btn-primary disabled mx-1"
173
+ invisible="is_reconciled == True or can_reconcile == True"
142
174
  />
143
175
  <button
144
176
  name="unreconcile_bank_line"
145
177
  type="object"
146
178
  string="Unreconcile"
147
179
  accesskey="r"
148
- class="btn btn-warning"
149
- attrs="{'invisible': [('is_reconciled', '=', False)]}"
180
+ class="btn btn-warning mx-1"
181
+ invisible="is_reconciled == False"
150
182
  confirm="Are you sure that the move should be unreconciled?"
151
183
  />
152
184
  <button
153
185
  name="clean_reconcile"
154
186
  type="object"
155
187
  string="Reset reconciliation"
156
- class="btn btn-secondary"
157
- attrs="{'invisible': [('is_reconciled', '=', True)]}"
188
+ class="btn btn-secondary mx-1"
189
+ invisible="is_reconciled == True"
158
190
  />
159
191
  <button
160
192
  name="action_to_check"
161
193
  string="To Check"
162
- class="btn btn-secondary"
194
+ class="btn btn-secondary mx-1"
163
195
  accesskey="c"
164
196
  type="object"
165
- attrs="{'invisible': [('to_check', '=', True)]}"
197
+ invisible="to_check == True"
166
198
  />
167
- <button
199
+ <button
168
200
  name="action_checked"
169
201
  string="Set as Checked"
202
+ class="btn btn-secondary mx-1"
170
203
  accesskey="c"
171
204
  type="object"
172
- attrs="{'invisible': [('to_check', '=', False)]}"
205
+ invisible="to_check == False"
173
206
  />
174
207
  <button
175
208
  name="action_show_move"
176
209
  type="object"
177
210
  accesskey="m"
178
211
  string="View move"
179
- class="btn btn-info"
212
+ class="btn btn-info mx-1"
180
213
  />
181
214
  </div>
182
215
  </div>
@@ -205,14 +238,14 @@
205
238
  name="manual_model_id"
206
239
  widget="selection_badge_uncheck"
207
240
  nolabel="1"
208
- attrs="{'invisible': [('is_reconciled', '=', True)]}"
241
+ invisible="is_reconciled == True"
209
242
  />
210
243
  </div>
211
244
  <notebook>
212
245
  <page
213
246
  name="reconcile_line"
214
247
  string="Reconcile"
215
- attrs="{'invisible': [('is_reconciled', '=', True)]}"
248
+ invisible="is_reconciled == True"
216
249
  >
217
250
  <field
218
251
  name="add_account_move_line_id"
@@ -229,31 +262,32 @@
229
262
  <field
230
263
  name="manual_account_id"
231
264
  string="Account"
232
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), ('manual_line_id', '!=', False)]}"
265
+ readonly="manual_reference == False or is_reconciled == True or manual_line_id != False"
233
266
  />
234
267
  <field
235
268
  name="manual_partner_id"
236
269
  string="Partner"
237
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
270
+ readonly="manual_reference == False or is_reconciled == True or (manual_line_id != False and manual_kind != 'liquidity')"
238
271
  />
239
272
  <field
240
273
  name="analytic_distribution"
241
274
  widget="analytic_distribution"
242
275
  groups="analytic.group_analytic_accounting"
243
276
  options="{'account_field': 'manual_account_id', 'business_domain': 'general'}"
244
- attrs="{'invisible': ['|', ('manual_kind', '=', 'liquidity'), ('manual_reference', '=', False)], 'readonly': [('is_reconciled', '=', True)]}"
277
+ invisible="manual_kind == 'liquidity' or manual_reference == False"
278
+ readonly="is_reconciled == True"
245
279
  />
246
280
  </group>
247
281
  <group>
248
282
  <field
249
283
  name="manual_name"
250
284
  string="Name"
251
- attrs="{'readonly': ['|', '|', ('manual_reference', '=', False), ('is_reconciled', '=', True), '&amp;', ('manual_line_id', '!=', False), ('manual_kind', '!=', 'liquidity')]}"
285
+ readonly="manual_reference == False or is_reconciled == True or (manual_line_id != False and manual_kind != 'liquidity')"
252
286
  />
253
287
  <field
254
288
  name="manual_amount"
255
289
  string="Amount"
256
- attrs="{'readonly': ['|', ('manual_reference', '=', False), ('is_reconciled', '=', True)]}"
290
+ readonly="manual_reference == False or is_reconciled == True"
257
291
  />
258
292
  <field name="manual_currency_id" invisible="1" />
259
293
  <field name="manual_original_amount" invisible="1" />
@@ -261,10 +295,10 @@
261
295
  <label
262
296
  for="manual_move_id"
263
297
  string=""
264
- attrs="{'invisible': ['|', ('manual_move_type', 'not in', ['in_invoice', 'in_refund', 'out_invoice', 'out_refund']), ('manual_original_amount', '=', 0)]}"
298
+ insible="manual_move_type not in ['in_invoice', 'in_refund', 'out_invoice', 'out_refund'] or manual_original_amount == 0"
265
299
  />
266
300
  <div
267
- attrs="{'invisible': ['|', ('manual_move_type', 'not in', ['in_invoice', 'in_refund', 'out_invoice', 'out_refund']), ('manual_original_amount', '=', 0)]}"
301
+ insible="manual_move_type not in ['in_invoice', 'in_refund', 'out_invoice', 'out_refund'] or manual_original_amount == 0"
268
302
  >
269
303
  Invoice <field
270
304
  class="oe_inline"
@@ -293,19 +327,19 @@
293
327
  <field name="narration" />
294
328
  </page>
295
329
  <page name="chatter" string="Chatter">
296
- <field name="move_id" widget="account_reconcile_oca_chatter" />
330
+ <field name="move_id" widget="account_reconcile_oca_chatter" />
297
331
  </page>
298
332
  </notebook>
299
333
  </form>
300
334
  </field>
301
335
  </record>
302
336
  <record id="action_bank_statement_line_reconcile" model="ir.actions.act_window">
303
- <field name="name">Reconcile bank statement lines</field>
337
+ <field name="name">Statement lines</field>
304
338
  <field name="res_model">account.bank.statement.line</field>
305
339
  <field name="domain">[('journal_id', '=', active_id)]</field>
306
- <field
307
- name="context"
308
- >{'default_journal_id': active_id, 'search_default_not_reconciled': True, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}</field>
340
+ <field name="context">
341
+ {'default_journal_id': active_id, 'search_default_not_reconciled': True, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}
342
+ </field>
309
343
  <field name="view_mode">kanban,tree</field>
310
344
  <field
311
345
  name="view_ids"
@@ -326,12 +360,12 @@
326
360
  <field
327
361
  name="context"
328
362
  >{'default_journal_id': active_id, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}</field>
329
- <field name="view_mode">tree,kanban</field>
363
+ <field name="view_mode">kanban,tree</field>
330
364
  <field
331
365
  name="view_ids"
332
366
  eval="[(5, 0, 0),
333
- (0, 0, {'view_mode': 'tree', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')}),
334
- (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')})]"
367
+ (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')}),
368
+ (0, 0, {'view_mode': 'tree', 'view_id': ref('account_statement_base.account_bank_statement_line_tree')})]"
335
369
  />
336
370
  <field name="help" type="html">
337
371
  <p class="o_view_nocontent_smiling_face">
@@ -346,14 +380,14 @@
346
380
  <field name="name">Reconcile bank statement lines</field>
347
381
  <field name="res_model">account.bank.statement.line</field>
348
382
  <field name="domain">[('journal_id', '=', active_id)]</field>
349
- <field
350
- name="context"
351
- >{'default_journal_id': active_id, 'search_default_to_check': True, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}</field>
352
- <field name="view_mode">tree</field>
383
+ <field name="context">
384
+ {'default_journal_id': active_id, 'search_default_to_check': True, 'view_ref': 'account_reconcile_oca.bank_statement_line_form_reconcile_view'}
385
+ </field>
386
+ <field name="view_mode">kanban</field>
353
387
  <field
354
388
  name="view_ids"
355
389
  eval="[(5, 0, 0),
356
- (0, 0, {'view_mode': 'tree', 'view_id': ref('bank_statement_line_reconcile_view')})]"
390
+ (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')})]"
357
391
  />
358
392
  <field name="help" type="html">
359
393
  <p class="o_view_nocontent_smiling_face">
@@ -369,11 +403,11 @@
369
403
  <field name="name">Reconcile bank statement lines</field>
370
404
  <field name="res_model">account.bank.statement.line</field>
371
405
  <field name="context">{'search_default_move_id': active_id}</field>
372
- <field name="view_mode">tree</field>
406
+ <field name="view_mode">kanban</field>
373
407
  <field
374
408
  name="view_ids"
375
409
  eval="[(5, 0, 0),
376
- (0, 0, {'view_mode': 'tree', 'view_id': ref('bank_statement_line_reconcile_view')})]"
410
+ (0, 0, {'view_mode': 'kanban', 'view_id': ref('bank_statement_line_reconcile_view')})]"
377
411
  />
378
412
  <field name="help" type="html">
379
413
  <p class="o_view_nocontent_smiling_face">
@@ -4,22 +4,28 @@
4
4
  <odoo>
5
5
 
6
6
  <record id="view_account_journal_form" model="ir.ui.view">
7
- <field name="name">account.journal.inherit.dashboard.kanban</field>
7
+ <field name="name">account.journal.form.inherit</field>
8
8
  <field name="model">account.journal</field>
9
9
  <field name="inherit_id" ref="account.view_account_journal_form" />
10
10
  <field name="arch" type="xml">
11
11
  <field name="suspense_account_id" position="before">
12
12
  <field
13
13
  name="reconcile_mode"
14
- attrs="{'required': [('type', 'in', ('bank', 'cash'))], 'invisible': [('type', 'not in', ('bank', 'cash'))]}"
14
+ required="type in ('bank', 'cash')"
15
+ invisible="type not in ('bank', 'cash')"
15
16
  options="{'no_quick_create': True}"
16
17
  groups="account.group_account_readonly"
17
18
  />
19
+ <field
20
+ name="reconcile_aggregate"
21
+ invisible="type not in ('bank', 'cash')"
22
+ groups="account.group_account_readonly"
23
+ />
18
24
  </field>
19
25
  </field>
20
26
  </record>
21
27
  <record id="account_journal_dashboard_kanban_view" model="ir.ui.view">
22
- <field name="name">account.journal.inherit.dashboard.kanban</field>
28
+ <field name="name">account.journal.kanban.inherit</field>
23
29
  <field name="model">account.journal</field>
24
30
  <field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" />
25
31
  <field name="arch" type="xml">
@@ -59,7 +65,7 @@
59
65
  </t>
60
66
  </xpath>
61
67
 
62
- <xpath expr="//div[@id='card_action_view_menus']" position="after">
68
+ <xpath expr="//h5[@id='card_action_view_menus']" position="after">
63
69
  <div>
64
70
  <a
65
71
  role="menuitem"
@@ -15,7 +15,7 @@
15
15
  string="Bank reconcile"
16
16
  class="btn btn-primary"
17
17
  icon="fa-list"
18
- attrs="{'invisible': [('statement_line_id', '=', False)]}"
18
+ invisible="statement_line_id == False"
19
19
  />
20
20
  </div>
21
21
  </field>
@@ -8,14 +8,19 @@
8
8
  <field name="model">account.move.line</field>
9
9
  <field name="priority">99</field>
10
10
  <field name="arch" type="xml">
11
- <tree js_class="reconcile_move_line">
11
+ <tree
12
+ js_class="reconcile_move_line"
13
+ create="0"
14
+ edit="0"
15
+ export_xlsx="false"
16
+ >
12
17
  <field name="date" />
13
18
  <field name="move_id" optional="show" />
14
19
  <field name="invoice_due_date" optional="show" />
15
20
  <field name="account_id" optional="show" />
16
21
  <field name="partner_id" />
17
- <field name="company_currency_id" invisible="1" />
18
- <field name="currency_id" invisible="1" />
22
+ <field name="company_currency_id" column_invisible="1" />
23
+ <field name="currency_id" column_invisible="1" />
19
24
  <field name="name" optional="show" />
20
25
  <field name="amount_residual_currency" optional="hide" />
21
26
  <field name="amount_residual" optional="show" />
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <!-- Copyright 2024 Dixmit
3
+ License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
4
+ <odoo>
5
+
6
+ <record model="ir.ui.view" id="res_config_settings_form_view">
7
+ <field name="model">res.config.settings</field>
8
+ <field name="inherit_id" ref="account.res_config_settings_view_form" />
9
+ <field name="arch" type="xml">
10
+ <block id="bank_cash" position="inside">
11
+ <setting
12
+ id="reconcile_aggregate"
13
+ title="Standard aggregation to use on bank reconciliation"
14
+ string="Reconcile aggregation"
15
+ >
16
+ <field name="reconcile_aggregate" />
17
+ </setting>
18
+ </block>
19
+ </field>
20
+ </record>
21
+
22
+
23
+
24
+ </odoo>
@@ -1,19 +1,19 @@
1
1
  Metadata-Version: 2.1
2
- Name: odoo-addon-account-reconcile-oca
3
- Version: 16.0.1.2.12.3
2
+ Name: odoo-addon-account_reconcile_oca
3
+ Version: 17.0.1.0.0.21
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
4
8
  Summary: Reconcile addons for Odoo CE accounting
5
9
  Home-page: https://github.com/OCA/account-reconcile
10
+ License: AGPL-3
6
11
  Author: CreuBlanca,Dixmit,Odoo Community Association (OCA)
7
12
  Author-email: support@odoo-community.org
8
- License: AGPL-3
9
- Platform: UNKNOWN
10
13
  Classifier: Programming Language :: Python
11
14
  Classifier: Framework :: Odoo
12
- Classifier: Framework :: Odoo :: 16.0
15
+ Classifier: Framework :: Odoo :: 17.0
13
16
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
14
- Requires-Python: >=3.10
15
- Requires-Dist: odoo-addon-account-statement-base <16.1dev,>=16.0dev
16
- Requires-Dist: odoo <16.1dev,>=16.0a
17
17
 
18
18
  =====================
19
19
  Account Reconcile Oca
@@ -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:7fe40b33ad622d1d511a9203e3e94c024050eb427a77330a46a60977c6ce423b
27
+ !! source digest: sha256:eaa1b6b3dece89dbb5fd23794f5d597769b2e3cc3823ffb127b4dd7808251d19
28
28
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29
29
 
30
30
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -34,18 +34,19 @@ 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/16.0/account_reconcile_oca
37
+ :target: https://github.com/OCA/account-reconcile/tree/17.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-16-0/account-reconcile-16-0-account_reconcile_oca
40
+ :target: https://translation.odoo-community.org/projects/account-reconcile-17-0/account-reconcile-17-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=16.0
43
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=17.0
44
44
  :alt: Try me on Runboat
45
45
 
46
46
  |badge1| |badge2| |badge3| |badge4| |badge5|
47
47
 
48
- This addon allows to reconcile bank statements and account marked as `reconcile`.
48
+ This addon allows to reconcile bank statements and account marked as
49
+ reconcile.
49
50
 
50
51
  **Table of contents**
51
52
 
@@ -56,16 +57,16 @@ Usage
56
57
  =====
57
58
 
58
59
  Bank reconcile
59
- ~~~~~~~~~~~~~~
60
+ --------------
60
61
 
61
- Access `Invoicing / Dashboard` with a user with Full Acounting capabilities.
62
- Select reconcile on the journal of your choice.
62
+ Access Invoicing / Dashboard with a user with Full Acounting
63
+ capabilities. Select reconcile on the journal of your choice.
63
64
 
64
65
  Account reconcile
65
- ~~~~~~~~~~~~~~~~~
66
+ -----------------
66
67
 
67
- Access `Invoicing / Accounting / Actions / Reconcile`
68
- All the possible reconcile options will show and you will be able to reconcile properly.
68
+ Access Invoicing / Accounting / Actions / Reconcile All the possible
69
+ reconcile options will show and you will be able to reconcile properly.
69
70
  You can access the same widget from accounts and Partners.
70
71
 
71
72
  Known issues / Roadmap
@@ -73,7 +74,7 @@ Known issues / Roadmap
73
74
 
74
75
  The following bugs are already detected:
75
76
 
76
- * Creation of activities on the chatter do show automatically
77
+ - Creation of activities on the chatter do show automatically
77
78
 
78
79
  Bug Tracker
79
80
  ===========
@@ -81,7 +82,7 @@ Bug Tracker
81
82
  Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-reconcile/issues>`_.
82
83
  In case of trouble, please check there if your issue has already been reported.
83
84
  If you spotted it first, help us to smash it by providing a detailed and welcomed
84
- `feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20account_reconcile_oca%0Aversion:%2016.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:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
85
86
 
86
87
  Do not contact contributors directly about support or help with technical issues.
87
88
 
@@ -89,18 +90,18 @@ Credits
89
90
  =======
90
91
 
91
92
  Authors
92
- ~~~~~~~
93
+ -------
93
94
 
94
95
  * CreuBlanca
95
96
  * Dixmit
96
97
 
97
98
  Contributors
98
- ~~~~~~~~~~~~
99
+ ------------
99
100
 
100
- * Enric Tobella
101
+ - Enric Tobella
101
102
 
102
103
  Maintainers
103
- ~~~~~~~~~~~
104
+ -----------
104
105
 
105
106
  This module is maintained by the OCA.
106
107
 
@@ -120,8 +121,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
120
121
 
121
122
  |maintainer-etobella|
122
123
 
123
- This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/16.0/account_reconcile_oca>`_ project on GitHub.
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
125
 
125
126
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
126
-
127
-
@@ -0,0 +1,64 @@
1
+ odoo/addons/account_reconcile_oca/README.rst,sha256=uRx20QI-ffjNCgPG1ExDXIreHk3YGrt4W53LfMm3mrE,3705
2
+ odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
3
+ odoo/addons/account_reconcile_oca/__manifest__.py,sha256=UcSS71TAhpNSk1SlGVQBwIQKLkv0VtTw8VWXsyJsOdU,1865
4
+ odoo/addons/account_reconcile_oca/hooks.py,sha256=SfJ-GlIGYL1kf8xhQs5qDqwNnE8S9Gs-5dP3vOD-IMM,182
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=NqjiQangfJbyut75b90qoKJNxuUkABxRiA5CZ0_6_lY,24873
7
+ odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=AmP4AG7aU8i-_8x0QxXLB0uIntplqk3bFdAxkdmYPA8,26822
8
+ odoo/addons/account_reconcile_oca/i18n/es.po,sha256=wO9VIHKThfAn9fdSHLcJM7Pp8f-wy0HrzHUzB-gxr14,27106
9
+ odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=0EV7ldcAXzeca-fKvr67Fs9xP1CLUy7cw1zoPxgVrT4,27051
10
+ odoo/addons/account_reconcile_oca/i18n/hr.po,sha256=bq6JkSR42_aROSXf9rsgWNmLkDdTiwaW7azM-FsLO0Q,26352
11
+ odoo/addons/account_reconcile_oca/i18n/nl.po,sha256=5ZWEUN95PW53dpI8fZjhizwFfTF76tZNAi0YTyJTJSA,26892
12
+ odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=xbKdCOILpzuV6Gqz40L8CTIknt7Wfwg0qjvHEI1lBhc,27064
13
+ odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=MJgj3SwaxPTydaer4AVUv5ummOAR_HRvtDW-ZT7I8es,26681
14
+ odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=_MxDN_e2-b2mhSor71ixcaNhoGzkM2fmEaWVeRs-dq0,26152
15
+ odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
16
+ odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=H84BGOSCCjrdrocXhq6c0jJb9Cm6BySg5Ay-UQmZ1z4,6285
17
+ odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
18
+ odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=ffZVKmG_yV2EZ70KWchDNgy-6iVf25dlXDVbn-zXx-8,34028
19
+ odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=Z9sJu1qeWt9eD8AM6vl78LcRB-o8owbS9IbopLjOAeA,1007
20
+ odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=Xk7DcYAAh6lSnrf4u8dJx_2QRPQhYVX028vXL---0js,1217
21
+ odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=2mrEWTxwZXCsFcTA8wzf3rCwlREMY9wiGAyaEblcKPw,4139
22
+ odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
23
+ odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
24
+ odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.md,sha256=subC7gWq_kRC_nJfLRfrI_IXlNoGgWaq9Es5qXuMa1w,16
25
+ odoo/addons/account_reconcile_oca/readme/DESCRIPTION.md,sha256=zG0ZonPDBNpqhobe3NhDifYpE0Pm-yhUlwqndR732IY,80
26
+ odoo/addons/account_reconcile_oca/readme/ROADMAP.md,sha256=fxR8QnC8BkHyODdPScpgJZ7K_fXxarzkGTjAk-zCv4M,104
27
+ odoo/addons/account_reconcile_oca/readme/USAGE.md,sha256=yNLGo35X7TW2TLyJqHU-gdQiXazW8Iu59rI0dpa4WjM,365
28
+ odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
29
+ odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
30
+ odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Uw-hY26Gwrr8gXdj4RwdvPAExEvExUJRWW241wmaQyY,13707
31
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=bdOQxAg_1tQ1XH87z0OOCViERNu_aYMDy3pZ0YNX2aQ,4819
32
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
33
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=9NSr3iZ7H_QGTpixW5D4WEJuD_u4KRpdYwRmKqcML_k,2117
34
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js,sha256=cVNQ5mpho24LnHPN5uC2aAU8cD729TjaO85z5mq9kag,535
35
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=7EyyPuo9rBx1eZiYL6mpR2fIqNvP33JvOJiI9NA6cXo,1748
36
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js,sha256=csG1CGQJEj3atDyyKSpkhIPUIfOuWJAbS00aYDMFmdY,974
37
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js,sha256=4QBWIcvrYTVKnFdKbRLkRtEi0s_bYJYLSwPIZeeAs5s,332
38
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
39
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js,sha256=JQeFCL7UxM4AhF9LZZAiLGUnHf--ftbS9E4T5CxswDU,1188
40
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_view.esm.js,sha256=GXC6xTc3VYTXEZvX-bn9SH2ylQbN_4gXiLeIwuMIfxI,381
41
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=QWLzFB7fNAK1hj_mUGDAeu5J8LmTDj6kOkswtyM5G6s,598
42
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=TwiLpAbPJtr9VDZs8ZDIVFoieiogueHnpw0n0a1P_Kk,605
43
+ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
44
+ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=_Q01ZrNtgaxhJRvlB_UF2gWDLGhVX1lljPmf8ZxXJ3c,901
45
+ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=-Tjt96wi2UnHK4FM1-rqzd97Ht82HqA8RhHCLmVfxyA,2863
46
+ odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=G5lbsagkTYErqNlPvhW0vfljQWRKI4eI5spDlH3_emk,3772
47
+ odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=rlwwhfX9jK65Lze3HeXFmW-p6Lo_38ZsyTLS7sx4XV8,1223
48
+ odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=ewCAJf_W-NS8avSFN0YVbu41qL3wdbh9jlO0aj1PN3M,2147
49
+ odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=hnXWp6pYXbAGf9EjmZaGDb4GHe1CBLGZMbbwbz0WuaY,8637
50
+ odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
51
+ odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=MP5M-NsVhMoYiU675hr1nsvZRRK-4e5KUYMCCKTUHB8,10807
52
+ odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=B7i-37PBP6cx5iWAWck0f1KTCG1ay0wGoxzJLdibZeY,39127
53
+ odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=0RiPmzfRUj54oMYKWM7mLnZL-5IhI5W8fiRruHL0SYc,866
54
+ odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=BB5r3voPKsiTaDywwfS7DMKKubd1uiqyul08UYK9vuc,6944
55
+ odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=6AA1iZR1EmnVYyBXhLw51QQS1k9QmXLLNMAPDOl8Oz4,1813
56
+ odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=DrPBdQaYUM2BxlhjFfwWFA0amTNnvd_oaL_V6pd53v0,20822
57
+ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=T5tZ5Ev0psYp78f3NkNVJjWMUOssYJ7WzLpsMKyOvI4,3378
58
+ odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=vMLfS41u1POGDRaRwihuvcJjJpJcduwLy9-9WwhdS0U,914
59
+ odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BKw8tzzhH7T8ifwQxt56allkr447CG59YsLkRB4hm6w,5373
60
+ odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=PxIqWILg_L_ahR-SDlDWEqWDJKNumPRifFAGF0BG57E,807
61
+ odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/METADATA,sha256=KsKG95VIc2jHnpwFi7-TYugKQ-HP_uws7QLPEuDLwlc,4393
62
+ odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
63
+ odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
64
+ odoo_addon_account_reconcile_oca-17.0.1.0.0.21.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: Whool 1.0.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5