odoo-addon-account-reconcile-oca 16.0.1.2.13.1__py3-none-any.whl → 16.0.1.2.14__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.
- odoo/addons/account_reconcile_oca/README.rst +1 -1
- odoo/addons/account_reconcile_oca/__manifest__.py +3 -1
- odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +108 -1
- odoo/addons/account_reconcile_oca/models/__init__.py +3 -0
- odoo/addons/account_reconcile_oca/models/account_bank_statement.py +15 -0
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +74 -0
- odoo/addons/account_reconcile_oca/models/account_journal.py +11 -0
- odoo/addons/account_reconcile_oca/models/res_company.py +14 -0
- odoo/addons/account_reconcile_oca/models/res_config_settings.py +12 -0
- odoo/addons/account_reconcile_oca/static/description/index.html +1 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +38 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js +53 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js +3 -0
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js +0 -2
- odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss +16 -0
- odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +37 -0
- odoo/addons/account_reconcile_oca/views/account_bank_statement.xml +46 -0
- odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml +20 -1
- odoo/addons/account_reconcile_oca/views/account_journal.xml +5 -0
- odoo/addons/account_reconcile_oca/views/res_config_settings.xml +38 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info}/METADATA +2 -2
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info}/RECORD +24 -19
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info}/WHEEL +0 -0
- {odoo_addon_account_reconcile_oca-16.0.1.2.13.1.dist-info → odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info}/top_level.txt +0 -0
@@ -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:
|
10
|
+
!! source digest: sha256:ae1b52beaba19e5505c337af5a93c52cf915340af8a58faf0ae74d79c378e6f7
|
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.1.2.
|
8
|
+
"version": "16.0.1.2.14",
|
9
9
|
"license": "AGPL-3",
|
10
10
|
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
11
11
|
"maintainers": ["etobella"],
|
@@ -15,6 +15,7 @@
|
|
15
15
|
"base_sparse_field",
|
16
16
|
],
|
17
17
|
"data": [
|
18
|
+
"views/res_config_settings.xml",
|
18
19
|
"security/ir.model.access.csv",
|
19
20
|
"views/account_account_reconcile.xml",
|
20
21
|
"views/account_bank_statement_line.xml",
|
@@ -22,6 +23,7 @@
|
|
22
23
|
"views/account_journal.xml",
|
23
24
|
"views/account_move.xml",
|
24
25
|
"views/account_account.xml",
|
26
|
+
"views/account_bank_statement.xml",
|
25
27
|
],
|
26
28
|
"demo": ["demo/demo.xml"],
|
27
29
|
"post_init_hook": "post_init_hook",
|
@@ -52,6 +52,21 @@ msgstr ""
|
|
52
52
|
msgid "Add Bank Statement Line"
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
+
#. module: account_reconcile_oca
|
56
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__aggregate_id
|
57
|
+
msgid "Aggregate"
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
#. module: account_reconcile_oca
|
61
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__aggregate_name
|
62
|
+
msgid "Aggregate Name"
|
63
|
+
msgstr ""
|
64
|
+
|
65
|
+
#. module: account_reconcile_oca
|
66
|
+
#: model:ir.model.fields,help:account_reconcile_oca.field_account_journal__reconcile_aggregate
|
67
|
+
msgid "Aggregation to use on reconcile view"
|
68
|
+
msgstr ""
|
69
|
+
|
55
70
|
#. module: account_reconcile_oca
|
56
71
|
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.bank_statement_line_form_reconcile_view
|
57
72
|
msgid "Amount"
|
@@ -84,6 +99,12 @@ msgstr ""
|
|
84
99
|
msgid "Bank"
|
85
100
|
msgstr ""
|
86
101
|
|
102
|
+
#. module: account_reconcile_oca
|
103
|
+
#: model:ir.model,name:account_reconcile_oca.model_account_bank_statement
|
104
|
+
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.account_bank_statement_form_edit
|
105
|
+
msgid "Bank Statement"
|
106
|
+
msgstr ""
|
107
|
+
|
87
108
|
#. module: account_reconcile_oca
|
88
109
|
#: model:ir.model,name:account_reconcile_oca.model_account_bank_statement_line
|
89
110
|
msgid "Bank Statement Line"
|
@@ -119,6 +140,11 @@ msgstr ""
|
|
119
140
|
msgid "Clean"
|
120
141
|
msgstr ""
|
121
142
|
|
143
|
+
#. module: account_reconcile_oca
|
144
|
+
#: model:ir.model,name:account_reconcile_oca.model_res_company
|
145
|
+
msgid "Companies"
|
146
|
+
msgstr ""
|
147
|
+
|
122
148
|
#. module: account_reconcile_oca
|
123
149
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__company_id
|
124
150
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__company_id
|
@@ -131,6 +157,11 @@ msgstr ""
|
|
131
157
|
msgid "Company related to this journal"
|
132
158
|
msgstr ""
|
133
159
|
|
160
|
+
#. module: account_reconcile_oca
|
161
|
+
#: model:ir.model,name:account_reconcile_oca.model_res_config_settings
|
162
|
+
msgid "Config Settings"
|
163
|
+
msgstr ""
|
164
|
+
|
134
165
|
#. module: account_reconcile_oca
|
135
166
|
#. odoo-javascript
|
136
167
|
#: code:addons/account_reconcile_oca/static/src/xml/reconcile.xml:0
|
@@ -159,6 +190,7 @@ msgstr ""
|
|
159
190
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__company_currency_id
|
160
191
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__currency_id
|
161
192
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__company_currency_id
|
193
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_journal__company_currency_id
|
162
194
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_reconcile_abstract__company_currency_id
|
163
195
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_reconcile_abstract__currency_id
|
164
196
|
msgid "Currency"
|
@@ -176,6 +208,11 @@ msgstr ""
|
|
176
208
|
msgid "Date"
|
177
209
|
msgstr ""
|
178
210
|
|
211
|
+
#. module: account_reconcile_oca
|
212
|
+
#: model:ir.model.fields.selection,name:account_reconcile_oca.selection__account_journal__reconcile_aggregate__day
|
213
|
+
msgid "Day"
|
214
|
+
msgstr ""
|
215
|
+
|
179
216
|
#. module: account_reconcile_oca
|
180
217
|
#. odoo-javascript
|
181
218
|
#: code:addons/account_reconcile_oca/static/src/xml/reconcile.xml:0
|
@@ -189,11 +226,21 @@ msgstr ""
|
|
189
226
|
msgid "Display Name"
|
190
227
|
msgstr ""
|
191
228
|
|
229
|
+
#. module: account_reconcile_oca
|
230
|
+
#: model:ir.actions.act_window,name:account_reconcile_oca.account_bank_statement_action_edit
|
231
|
+
msgid "Edit Bank Statement"
|
232
|
+
msgstr ""
|
233
|
+
|
192
234
|
#. module: account_reconcile_oca
|
193
235
|
#: model:ir.model.fields.selection,name:account_reconcile_oca.selection__account_journal__reconcile_mode__edit
|
194
236
|
msgid "Edit Move"
|
195
237
|
msgstr ""
|
196
238
|
|
239
|
+
#. module: account_reconcile_oca
|
240
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__statement_balance_end_real
|
241
|
+
msgid "Ending Balance"
|
242
|
+
msgstr ""
|
243
|
+
|
197
244
|
#. module: account_reconcile_oca
|
198
245
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__foreign_currency_id
|
199
246
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__foreign_currency_id
|
@@ -211,6 +258,13 @@ msgstr ""
|
|
211
258
|
msgid "From Trade Receivable accounts"
|
212
259
|
msgstr ""
|
213
260
|
|
261
|
+
#. module: account_reconcile_oca
|
262
|
+
#. odoo-javascript
|
263
|
+
#: code:addons/account_reconcile_oca/static/src/xml/reconcile.xml:0
|
264
|
+
#, python-format
|
265
|
+
msgid "Global Balance"
|
266
|
+
msgstr ""
|
267
|
+
|
214
268
|
#. module: account_reconcile_oca
|
215
269
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__id
|
216
270
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile_data__id
|
@@ -222,11 +276,21 @@ msgstr ""
|
|
222
276
|
msgid "Invoice"
|
223
277
|
msgstr ""
|
224
278
|
|
279
|
+
#. module: account_reconcile_oca
|
280
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__statement_complete
|
281
|
+
msgid "Is Complete"
|
282
|
+
msgstr ""
|
283
|
+
|
225
284
|
#. module: account_reconcile_oca
|
226
285
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__is_reconciled
|
227
286
|
msgid "Is Reconciled"
|
228
287
|
msgstr ""
|
229
288
|
|
289
|
+
#. module: account_reconcile_oca
|
290
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__statement_valid
|
291
|
+
msgid "Is Valid"
|
292
|
+
msgstr ""
|
293
|
+
|
230
294
|
#. module: account_reconcile_oca
|
231
295
|
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.account_journal_dashboard_kanban_view
|
232
296
|
msgid "Items"
|
@@ -367,6 +431,11 @@ msgstr ""
|
|
367
431
|
msgid "Miscellaneous"
|
368
432
|
msgstr ""
|
369
433
|
|
434
|
+
#. module: account_reconcile_oca
|
435
|
+
#: model:ir.model.fields.selection,name:account_reconcile_oca.selection__account_journal__reconcile_aggregate__month
|
436
|
+
msgid "Month"
|
437
|
+
msgstr ""
|
438
|
+
|
370
439
|
#. module: account_reconcile_oca
|
371
440
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_account_reconcile__name
|
372
441
|
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.bank_statement_line_form_reconcile_view
|
@@ -435,6 +504,13 @@ msgstr ""
|
|
435
504
|
msgid "Reconcile"
|
436
505
|
msgstr ""
|
437
506
|
|
507
|
+
#. module: account_reconcile_oca
|
508
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__reconcile_aggregate
|
509
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_res_company__reconcile_aggregate
|
510
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_res_config_settings__reconcile_aggregate
|
511
|
+
msgid "Reconcile Aggregate"
|
512
|
+
msgstr ""
|
513
|
+
|
438
514
|
#. module: account_reconcile_oca
|
439
515
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__reconcile_data
|
440
516
|
msgid "Reconcile Data"
|
@@ -453,9 +529,14 @@ msgstr ""
|
|
453
529
|
msgid "Reconcile Mode"
|
454
530
|
msgstr ""
|
455
531
|
|
532
|
+
#. module: account_reconcile_oca
|
533
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_journal__reconcile_aggregate
|
534
|
+
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.res_config_settings_form_view
|
535
|
+
msgid "Reconcile aggregation"
|
536
|
+
msgstr ""
|
537
|
+
|
456
538
|
#. module: account_reconcile_oca
|
457
539
|
#: model:ir.actions.act_window,name:account_reconcile_oca.action_bank_statement_line_move_view_reconcile
|
458
|
-
#: model:ir.actions.act_window,name:account_reconcile_oca.action_bank_statement_line_reconcile
|
459
540
|
#: model:ir.actions.act_window,name:account_reconcile_oca.action_bank_statement_line_reconcile_all
|
460
541
|
#: model:ir.actions.act_window,name:account_reconcile_oca.action_bank_statement_line_reconcile_to_check
|
461
542
|
msgid "Reconcile bank statement lines"
|
@@ -496,6 +577,27 @@ msgstr ""
|
|
496
577
|
msgid "Set as Checked"
|
497
578
|
msgstr ""
|
498
579
|
|
580
|
+
#. module: account_reconcile_oca
|
581
|
+
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.res_config_settings_form_view
|
582
|
+
msgid "Standard aggregation to use on bank reconciliation"
|
583
|
+
msgstr ""
|
584
|
+
|
585
|
+
#. module: account_reconcile_oca
|
586
|
+
#: model:ir.model.fields.selection,name:account_reconcile_oca.selection__account_journal__reconcile_aggregate__statement
|
587
|
+
#: model_terms:ir.ui.view,arch_db:account_reconcile_oca.bank_statement_line_reconcile_view
|
588
|
+
msgid "Statement"
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
#. module: account_reconcile_oca
|
592
|
+
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__statement_name
|
593
|
+
msgid "Statement Name"
|
594
|
+
msgstr ""
|
595
|
+
|
596
|
+
#. module: account_reconcile_oca
|
597
|
+
#: model:ir.actions.act_window,name:account_reconcile_oca.action_bank_statement_line_reconcile
|
598
|
+
msgid "Statement lines"
|
599
|
+
msgstr ""
|
600
|
+
|
499
601
|
#. module: account_reconcile_oca
|
500
602
|
#: model:ir.model.fields,help:account_reconcile_oca.field_account_bank_statement_line__foreign_currency_id
|
501
603
|
msgid "The optional other currency if it is a multi-currency entry."
|
@@ -548,6 +650,11 @@ msgstr ""
|
|
548
650
|
msgid "View move"
|
549
651
|
msgstr ""
|
550
652
|
|
653
|
+
#. module: account_reconcile_oca
|
654
|
+
#: model:ir.model.fields.selection,name:account_reconcile_oca.selection__account_journal__reconcile_aggregate__week
|
655
|
+
msgid "Week"
|
656
|
+
msgstr ""
|
657
|
+
|
551
658
|
#. module: account_reconcile_oca
|
552
659
|
#. odoo-python
|
553
660
|
#: code:addons/account_reconcile_oca/models/account_journal.py:0
|
@@ -1,5 +1,8 @@
|
|
1
1
|
from . import account_reconcile_abstract
|
2
2
|
from . import account_journal
|
3
3
|
from . import account_bank_statement_line
|
4
|
+
from . import account_bank_statement
|
4
5
|
from . import account_account_reconcile
|
5
6
|
from . import account_move_line
|
7
|
+
from . import res_company
|
8
|
+
from . import res_config_settings
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Copyright 2024 Dixmit
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
from odoo import models
|
4
|
+
|
5
|
+
|
6
|
+
class AccountBankStatement(models.Model):
|
7
|
+
_inherit = "account.bank.statement"
|
8
|
+
|
9
|
+
def action_open_statement(self):
|
10
|
+
self.ensure_one()
|
11
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
12
|
+
"account_reconcile_oca.account_bank_statement_action_edit"
|
13
|
+
)
|
14
|
+
action["res_id"] = self.id
|
15
|
+
return action
|
@@ -3,6 +3,9 @@
|
|
3
3
|
|
4
4
|
from collections import defaultdict
|
5
5
|
|
6
|
+
from dateutil import rrule
|
7
|
+
from dateutil.relativedelta import relativedelta
|
8
|
+
|
6
9
|
from odoo import Command, _, api, fields, models
|
7
10
|
from odoo.exceptions import UserError
|
8
11
|
from odoo.tools import float_is_zero
|
@@ -86,6 +89,55 @@ class AccountBankStatementLine(models.Model):
|
|
86
89
|
"account.move", default=False, store=False, prefetch=False, readonly=True
|
87
90
|
)
|
88
91
|
can_reconcile = fields.Boolean(sparse="reconcile_data_info")
|
92
|
+
statement_complete = fields.Boolean(
|
93
|
+
related="statement_id.is_complete",
|
94
|
+
)
|
95
|
+
statement_valid = fields.Boolean(
|
96
|
+
related="statement_id.is_valid",
|
97
|
+
)
|
98
|
+
statement_balance_end_real = fields.Monetary(
|
99
|
+
related="statement_id.balance_end_real",
|
100
|
+
)
|
101
|
+
statement_name = fields.Char(
|
102
|
+
string="Statement Name",
|
103
|
+
related="statement_id.name",
|
104
|
+
)
|
105
|
+
reconcile_aggregate = fields.Char(compute="_compute_reconcile_aggregate")
|
106
|
+
aggregate_id = fields.Integer(compute="_compute_reconcile_aggregate")
|
107
|
+
aggregate_name = fields.Char(compute="_compute_reconcile_aggregate")
|
108
|
+
|
109
|
+
@api.model
|
110
|
+
def _reconcile_aggregate_map(self):
|
111
|
+
lang = self.env["res.lang"]._lang_get(self.env.user.lang)
|
112
|
+
week_start = rrule.weekday(int(lang.week_start) - 1)
|
113
|
+
return {
|
114
|
+
False: lambda s: (False, False),
|
115
|
+
"statement": lambda s: (s.statement_id.id, s.statement_id.name),
|
116
|
+
"day": lambda s: (s.date.toordinal(), s.date.strftime(lang.date_format)),
|
117
|
+
"week": lambda s: (
|
118
|
+
(s.date + relativedelta(weekday=week_start(-1))).toordinal(),
|
119
|
+
(s.date + relativedelta(weekday=week_start(-1))).strftime(
|
120
|
+
lang.date_format
|
121
|
+
),
|
122
|
+
),
|
123
|
+
"month": lambda s: (
|
124
|
+
s.date.replace(day=1).toordinal(),
|
125
|
+
s.date.replace(day=1).strftime(lang.date_format),
|
126
|
+
),
|
127
|
+
}
|
128
|
+
|
129
|
+
@api.depends("company_id", "journal_id")
|
130
|
+
def _compute_reconcile_aggregate(self):
|
131
|
+
reconcile_aggregate_map = self._reconcile_aggregate_map()
|
132
|
+
for record in self:
|
133
|
+
reconcile_aggregate = (
|
134
|
+
record.journal_id.reconcile_aggregate
|
135
|
+
or record.company_id.reconcile_aggregate
|
136
|
+
)
|
137
|
+
record.reconcile_aggregate = reconcile_aggregate
|
138
|
+
record.aggregate_id, record.aggregate_name = reconcile_aggregate_map[
|
139
|
+
reconcile_aggregate
|
140
|
+
](record)
|
89
141
|
|
90
142
|
def save(self):
|
91
143
|
return {"type": "ir.actions.act_window_close"}
|
@@ -752,3 +804,25 @@ class AccountBankStatementLine(models.Model):
|
|
752
804
|
if vals["partner_id"] is False:
|
753
805
|
vals["partner_id"] = (False, self.partner_name)
|
754
806
|
return vals
|
807
|
+
|
808
|
+
def add_statement(self):
|
809
|
+
self.ensure_one()
|
810
|
+
action = self.env["ir.actions.act_window"]._for_xml_id(
|
811
|
+
"account_reconcile_oca.account_bank_statement_action_edit"
|
812
|
+
)
|
813
|
+
previous_line_with_statement = self.env["account.bank.statement.line"].search(
|
814
|
+
[
|
815
|
+
("internal_index", "<", self.internal_index),
|
816
|
+
("journal_id", "=", self.journal_id.id),
|
817
|
+
("state", "=", "posted"),
|
818
|
+
("statement_id", "!=", self.statement_id.id),
|
819
|
+
("statement_id", "!=", False),
|
820
|
+
],
|
821
|
+
limit=1,
|
822
|
+
)
|
823
|
+
action["context"] = {
|
824
|
+
"default_journal_id": self.journal_id.id,
|
825
|
+
"default_balance_start": previous_line_with_statement.statement_id.balance_end_real,
|
826
|
+
"split_line_id": self.id,
|
827
|
+
}
|
828
|
+
return action
|
@@ -12,6 +12,17 @@ class AccountJournal(models.Model):
|
|
12
12
|
default="edit",
|
13
13
|
required=True,
|
14
14
|
)
|
15
|
+
company_currency_id = fields.Many2one(related="company_id.currency_id")
|
16
|
+
reconcile_aggregate = fields.Selection(
|
17
|
+
[
|
18
|
+
("statement", "Statement"),
|
19
|
+
("day", "Day"),
|
20
|
+
("week", "Week"),
|
21
|
+
("month", "Month"),
|
22
|
+
],
|
23
|
+
string="Reconcile aggregation",
|
24
|
+
help="Aggregation to use on reconcile view",
|
25
|
+
)
|
15
26
|
|
16
27
|
def get_rainbowman_message(self):
|
17
28
|
self.ensure_one()
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Copyright 2024 Dixmit
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from odoo import fields, models
|
5
|
+
|
6
|
+
|
7
|
+
class ResCompany(models.Model):
|
8
|
+
_inherit = "res.company"
|
9
|
+
|
10
|
+
reconcile_aggregate = fields.Selection(
|
11
|
+
selection=lambda self: self.env["account.journal"]
|
12
|
+
._fields["reconcile_aggregate"]
|
13
|
+
.selection
|
14
|
+
)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
# Copyright 2024 Dixmit
|
2
|
+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
3
|
+
|
4
|
+
from odoo import fields, models
|
5
|
+
|
6
|
+
|
7
|
+
class ResConfigSettings(models.TransientModel):
|
8
|
+
_inherit = "res.config.settings"
|
9
|
+
|
10
|
+
reconcile_aggregate = fields.Selection(
|
11
|
+
related="company_id.reconcile_aggregate", readonly=False
|
12
|
+
)
|
@@ -366,7 +366,7 @@ ul.auto-toc {
|
|
366
366
|
!! This file is generated by oca-gen-addon-readme !!
|
367
367
|
!! changes will be overwritten. !!
|
368
368
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
369
|
-
!! source digest: sha256:
|
369
|
+
!! source digest: sha256:ae1b52beaba19e5505c337af5a93c52cf915340af8a58faf0ae74d79c378e6f7
|
370
370
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
371
371
|
<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&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
372
372
|
<p>This addon allows to reconcile bank statements and account marked as <cite>reconcile</cite>.</p>
|
@@ -1,7 +1,8 @@
|
|
1
1
|
/** @odoo-module */
|
2
|
-
const {useState, useSubEnv} = owl;
|
2
|
+
const {onMounted, onWillStart, useState, useSubEnv} = owl;
|
3
3
|
import {KanbanController} from "@web/views/kanban/kanban_controller";
|
4
4
|
import {View} from "@web/views/view";
|
5
|
+
import {formatMonetary} from "@web/views/fields/formatters";
|
5
6
|
import {useService} from "@web/core/utils/hooks";
|
6
7
|
|
7
8
|
export class ReconcileController extends KanbanController {
|
@@ -9,6 +10,8 @@ export class ReconcileController extends KanbanController {
|
|
9
10
|
super.setup();
|
10
11
|
this.state = useState({
|
11
12
|
selectedRecordId: null,
|
13
|
+
journalBalance: 0,
|
14
|
+
currency: false,
|
12
15
|
});
|
13
16
|
useSubEnv({
|
14
17
|
parentController: this,
|
@@ -20,6 +23,39 @@ export class ReconcileController extends KanbanController {
|
|
20
23
|
this.router = useService("router");
|
21
24
|
this.activeActions = this.props.archInfo.activeActions;
|
22
25
|
this.model.addEventListener("update", () => this.selectRecord(), {once: true});
|
26
|
+
onWillStart(() => {
|
27
|
+
this.updateJournalInfo();
|
28
|
+
});
|
29
|
+
onMounted(() => {
|
30
|
+
this.selectRecord();
|
31
|
+
});
|
32
|
+
}
|
33
|
+
get journalId() {
|
34
|
+
if (this.props.resModel === "account.bank.statement.line") {
|
35
|
+
return this.props.context.active_id;
|
36
|
+
}
|
37
|
+
return false;
|
38
|
+
}
|
39
|
+
async updateJournalInfo() {
|
40
|
+
var journalId = this.journalId;
|
41
|
+
if (!journalId) {
|
42
|
+
return;
|
43
|
+
}
|
44
|
+
var result = await this.orm.call("account.journal", "read", [
|
45
|
+
[journalId],
|
46
|
+
["current_statement_balance", "currency_id", "company_currency_id"],
|
47
|
+
]);
|
48
|
+
this.state.journalBalance = result[0].current_statement_balance;
|
49
|
+
this.state.currency = (result[0].currency_id ||
|
50
|
+
result[0].company_currency_id)[0];
|
51
|
+
}
|
52
|
+
get journalBalanceStr() {
|
53
|
+
if (!this.state.journalBalance) {
|
54
|
+
return "";
|
55
|
+
}
|
56
|
+
return formatMonetary(this.state.journalBalance, {
|
57
|
+
currencyId: this.state.currency,
|
58
|
+
});
|
23
59
|
}
|
24
60
|
exposeController(controller) {
|
25
61
|
this.form_controller = controller;
|
@@ -45,6 +81,7 @@ export class ReconcileController extends KanbanController {
|
|
45
81
|
return {
|
46
82
|
resId: this.state.selectedRecordId,
|
47
83
|
type: "form",
|
84
|
+
noBreadcrumbs: true,
|
48
85
|
context: {
|
49
86
|
...(this.props.context || {}),
|
50
87
|
form_view_ref: this.props.context.view_ref,
|
@@ -2,7 +2,59 @@
|
|
2
2
|
|
3
3
|
import {KanbanRenderer} from "@web/views/kanban/kanban_renderer";
|
4
4
|
import {ReconcileKanbanRecord} from "./reconcile_kanban_record.esm.js";
|
5
|
-
|
5
|
+
import {formatMonetary} from "@web/views/fields/formatters";
|
6
|
+
import {useService} from "@web/core/utils/hooks";
|
7
|
+
|
8
|
+
export class ReconcileRenderer extends KanbanRenderer {
|
9
|
+
setup() {
|
10
|
+
super.setup();
|
11
|
+
this.action = useService("action");
|
12
|
+
this.orm = useService("orm");
|
13
|
+
}
|
14
|
+
getAggregates() {
|
15
|
+
if (
|
16
|
+
this.env.parentController.props.resModel !== "account.bank.statement.line"
|
17
|
+
) {
|
18
|
+
return [];
|
19
|
+
}
|
20
|
+
const {list} = this.props;
|
21
|
+
const aggregates = [];
|
22
|
+
for (const record of list.records) {
|
23
|
+
const aggregateId = record.data.aggregate_id && record.data.aggregate_id;
|
24
|
+
if (
|
25
|
+
aggregateId &&
|
26
|
+
(!aggregates.length ||
|
27
|
+
aggregates[aggregates.length - 1].id !== aggregateId)
|
28
|
+
) {
|
29
|
+
aggregates.push({
|
30
|
+
id: aggregateId,
|
31
|
+
name: record.data.aggregate_name,
|
32
|
+
balance: record.data.statement_balance_end_real,
|
33
|
+
balanceStr: formatMonetary(record.data.statement_balance_end_real, {
|
34
|
+
currencyId: record.data.currency_id[0],
|
35
|
+
}),
|
36
|
+
});
|
37
|
+
}
|
38
|
+
}
|
39
|
+
return aggregates;
|
40
|
+
}
|
41
|
+
async onClickStatement(statementId) {
|
42
|
+
const action = await this.orm.call(
|
43
|
+
"account.bank.statement",
|
44
|
+
"action_open_statement",
|
45
|
+
[[statementId]],
|
46
|
+
{
|
47
|
+
context: this.props.context,
|
48
|
+
}
|
49
|
+
);
|
50
|
+
const model = this.props.list.model;
|
51
|
+
this.action.doAction(action, {
|
52
|
+
async onClose() {
|
53
|
+
model.root.load();
|
54
|
+
},
|
55
|
+
});
|
56
|
+
}
|
57
|
+
}
|
6
58
|
|
7
59
|
ReconcileRenderer.components = {
|
8
60
|
...KanbanRenderer.components,
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js
CHANGED
@@ -17,6 +17,9 @@ export class ReconcileFormController extends FormController {
|
|
17
17
|
afterExecuteAction: this.afterExecuteActionButton.bind(this),
|
18
18
|
});
|
19
19
|
}
|
20
|
+
displayName() {
|
21
|
+
return this.env.config.getDisplayName();
|
22
|
+
}
|
20
23
|
async reloadFormController() {
|
21
24
|
var is_reconciled = this.model.root.data.is_reconciled;
|
22
25
|
await this.model.root.load();
|
@@ -45,7 +45,6 @@ export class AccountReconcileDataWidget extends Component {
|
|
45
45
|
);
|
46
46
|
data[line].amount_currency_format = fieldUtils.format.monetary(
|
47
47
|
data[line].currency_amount,
|
48
|
-
undefined,
|
49
48
|
{
|
50
49
|
currency: session.get_currency(data[line].line_currency_id),
|
51
50
|
}
|
@@ -53,7 +52,6 @@ export class AccountReconcileDataWidget extends Component {
|
|
53
52
|
if (data[line].original_amount) {
|
54
53
|
data[line].original_amount_format = fieldUtils.format.monetary(
|
55
54
|
data[line].original_amount,
|
56
|
-
undefined,
|
57
55
|
{
|
58
56
|
currency: session.get_currency(data[line].currency_id),
|
59
57
|
}
|
@@ -6,7 +6,23 @@
|
|
6
6
|
flex-flow: row wrap;
|
7
7
|
height: 100%;
|
8
8
|
.o_kanban_renderer.o_kanban_ungrouped .o_kanban_record {
|
9
|
+
&:hover {
|
10
|
+
.o_reconcile_create_statement {
|
11
|
+
opacity: 100;
|
12
|
+
}
|
13
|
+
}
|
9
14
|
margin: 0 0 0;
|
15
|
+
min-width: fit-content;
|
16
|
+
width: 100%;
|
17
|
+
.o_reconcile_create_statement {
|
18
|
+
position: absolute;
|
19
|
+
height: 4px;
|
20
|
+
margin: 0;
|
21
|
+
padding: 2px 0 0 0;
|
22
|
+
border: 0;
|
23
|
+
top: -14px;
|
24
|
+
opacity: 0;
|
25
|
+
}
|
10
26
|
> div {
|
11
27
|
border-right: thick solid rgba(0, 0, 0, 0);
|
12
28
|
}
|
@@ -6,6 +6,43 @@
|
|
6
6
|
t-inherit-mode="primary"
|
7
7
|
owl="1"
|
8
8
|
>
|
9
|
+
<xpath expr="//t[@t-as='groupOrRecord']" position="before">
|
10
|
+
<div class="m-2 d-flex w-100" t-if="env.parentController.journalId">
|
11
|
+
<span
|
12
|
+
class="flex-fill text-900 text-start ps-0 fw-bold fs-4 align-self-center"
|
13
|
+
>Global Balance</span>
|
14
|
+
<span
|
15
|
+
class="pe-0 fw-bold fs-4 align-self-center"
|
16
|
+
t-esc="env.parentController.journalBalanceStr"
|
17
|
+
/>
|
18
|
+
</div>
|
19
|
+
<t t-set="aggregates" t-value="getAggregates()" />
|
20
|
+
</xpath>
|
21
|
+
<xpath expr="//t[@t-else='']/KanbanRecord" position="before">
|
22
|
+
<t
|
23
|
+
t-if="aggregates.length and groupOrRecord.record.data.aggregate_id and aggregates[0].id == groupOrRecord.record.data.aggregate_id"
|
24
|
+
>
|
25
|
+
<t t-set="aggregate" t-value="aggregates.shift()" />
|
26
|
+
<div class="m-2 d-flex w-100">
|
27
|
+
<span
|
28
|
+
class="flex-fill text-900 text-start ps-0 fw-bold fs-4 align-self-center"
|
29
|
+
t-esc="aggregate.name"
|
30
|
+
/>
|
31
|
+
<span
|
32
|
+
t-if="groupOrRecord.record.data.reconcile_aggregate == 'statement'"
|
33
|
+
t-on-click="() => this.onClickStatement(aggregate.id)"
|
34
|
+
class="pe-0 fw-bold fs-4 align-self-center btn btn-link"
|
35
|
+
t-esc="aggregate.balanceStr"
|
36
|
+
/>
|
37
|
+
<!--
|
38
|
+
<span
|
39
|
+
t-if="groupOrRecord.record.data.reconcile_aggregate != 'statement'"
|
40
|
+
class="pe-0 fw-bold fs-4 align-self-center text-link"
|
41
|
+
t-esc="aggregate.balanceStr"
|
42
|
+
/>-->
|
43
|
+
</div>
|
44
|
+
</t>
|
45
|
+
</xpath>
|
9
46
|
<xpath expr="div[hasclass('o_kanban_renderer')]" position="attributes">
|
10
47
|
<attribute
|
11
48
|
name="class"
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<!-- Copyright 2023 Dixmit
|
3
|
+
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -->
|
4
|
+
<odoo>
|
5
|
+
|
6
|
+
<record id="account_bank_statement_form_edit" model="ir.ui.view">
|
7
|
+
<field name="name">Edit Bank statement</field>
|
8
|
+
<field name="model">account.bank.statement</field>
|
9
|
+
<field name="priority">99</field>
|
10
|
+
<field name="arch" type="xml">
|
11
|
+
<form string="Bank Statement">
|
12
|
+
<div
|
13
|
+
class="alert alert-warning text-center"
|
14
|
+
role="alert"
|
15
|
+
attrs="{'invisible': [('is_valid', '=',True), ('is_complete','=',True)]}"
|
16
|
+
>
|
17
|
+
<field name="problem_description" />
|
18
|
+
<field name="is_valid" invisible="1" />
|
19
|
+
<field name="is_complete" invisible="1" />
|
20
|
+
</div>
|
21
|
+
<sheet>
|
22
|
+
<group>
|
23
|
+
<field name="name" required="1" />
|
24
|
+
<field name="balance_start" />
|
25
|
+
<field name="balance_end_real" />
|
26
|
+
<field name="attachment_ids" widget="many2many_binary" />
|
27
|
+
<field name="line_ids" invisible="1" />
|
28
|
+
</group>
|
29
|
+
</sheet>
|
30
|
+
|
31
|
+
</form>
|
32
|
+
</field>
|
33
|
+
</record>
|
34
|
+
|
35
|
+
<record id="account_bank_statement_action_edit" model="ir.actions.act_window">
|
36
|
+
<field name="name">Edit Bank Statement</field>
|
37
|
+
<field name="res_model">account.bank.statement</field>
|
38
|
+
<field name="view_mode">form</field>
|
39
|
+
<field
|
40
|
+
name="view_ids"
|
41
|
+
eval="[(5, 0, 0),
|
42
|
+
(0, 0, {'view_mode': 'form', 'view_id': ref('account_bank_statement_form_edit')})]"
|
43
|
+
/>
|
44
|
+
<field name="target">new</field>
|
45
|
+
</record>
|
46
|
+
</odoo>
|
@@ -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%"
|
@@ -300,7 +319,7 @@
|
|
300
319
|
</field>
|
301
320
|
</record>
|
302
321
|
<record id="action_bank_statement_line_reconcile" model="ir.actions.act_window">
|
303
|
-
<field name="name">
|
322
|
+
<field name="name">Statement lines</field>
|
304
323
|
<field name="res_model">account.bank.statement.line</field>
|
305
324
|
<field name="domain">[('journal_id', '=', active_id)]</field>
|
306
325
|
<field
|
@@ -15,6 +15,11 @@
|
|
15
15
|
options="{'no_quick_create': True}"
|
16
16
|
groups="account.group_account_readonly"
|
17
17
|
/>
|
18
|
+
<field
|
19
|
+
name="reconcile_aggregate"
|
20
|
+
attrs="{'invisible': [('type','not in', ['bank', 'cash'])]}"
|
21
|
+
groups="account.group_account_readonly"
|
22
|
+
/>
|
18
23
|
</field>
|
19
24
|
</field>
|
20
25
|
</record>
|
@@ -0,0 +1,38 @@
|
|
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
|
+
<xpath expr="//div[@id='bank_cash']" position="inside">
|
11
|
+
<div
|
12
|
+
class="col-12 col-lg-6 o_setting_box"
|
13
|
+
id="reconcile_aggregate"
|
14
|
+
title="Standard aggregation to use on bank reconciliation"
|
15
|
+
>
|
16
|
+
<div class="o_setting_left_pane">
|
17
|
+
</div>
|
18
|
+
<div class="o_setting_right_pane">
|
19
|
+
<label
|
20
|
+
for="reconcile_aggregate"
|
21
|
+
string="Reconcile aggregation"
|
22
|
+
/>
|
23
|
+
<div class="o_setting_container">
|
24
|
+
<field name="reconcile_aggregate" />
|
25
|
+
</div>
|
26
|
+
|
27
|
+
<div class="text-muted">
|
28
|
+
Standard aggregation to use on bank reconciliation
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</xpath>
|
33
|
+
</field>
|
34
|
+
</record>
|
35
|
+
|
36
|
+
|
37
|
+
|
38
|
+
</odoo>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-account-reconcile-oca
|
3
|
-
Version: 16.0.1.2.
|
3
|
+
Version: 16.0.1.2.14
|
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)
|
@@ -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:
|
27
|
+
!! source digest: sha256:ae1b52beaba19e5505c337af5a93c52cf915340af8a58faf0ae74d79c378e6f7
|
28
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
29
29
|
|
30
30
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,9 +1,9 @@
|
|
1
|
-
odoo/addons/account_reconcile_oca/README.rst,sha256=
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=afNfJ1kBaS4H2SG94o-yQWMCvc9n4TwyGmCMu_iFN3c,3709
|
2
2
|
odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
|
3
|
-
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=
|
3
|
+
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=gYnAZFDXn5PIRPeA8g7BLLb7qteTKF6XXZ-hKY0tCK4,1827
|
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=
|
6
|
+
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=UZyARD1kCXXPDRyO0KLVkv12XDLCh4sp0pcJVU8ZkoI,25739
|
7
7
|
odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=fuHqEPtI9NRQlCpJ7O74MkIgfmm0wH4nu7SuoeT3NJw,23705
|
8
8
|
odoo/addons/account_reconcile_oca/i18n/es.po,sha256=FHjUP966LhEcVriSldu31QWat3GmLacwjeM6iWAMTFY,24112
|
9
9
|
odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=7jl7_QBloqWLiviD8nZIp2tbPKpQdmYZ0gIqrbrjNoM,23934
|
@@ -14,24 +14,27 @@ odoo/addons/account_reconcile_oca/i18n/pt_BR.po,sha256=wxgyd9oXLZk7NLMzr8AJTzc9Z
|
|
14
14
|
odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=Ek5R5BxNXnwoIz_s3G4zi3MhUBgHKtrv5HGrDAsHyeY,23769
|
15
15
|
odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=EB9K-ZISDdIN-9KEabi3Cr35a2PajvS-IwZVQZjut98,23035
|
16
16
|
odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py,sha256=Z_OLx-fclggJUAtYpepXRAAc68AizrIN6MWtl4zp0Qw,642
|
17
|
-
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=
|
17
|
+
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
|
18
18
|
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=Yyd1ww8ybpC4s6YiM2Z_oVLR2pkBEn6Wx6yRYpiYI-Q,6282
|
19
|
-
odoo/addons/account_reconcile_oca/models/
|
20
|
-
odoo/addons/account_reconcile_oca/models/
|
19
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=JuIl9m0FzsoD_29Vb4TiXYoqFLd6gjSvntpRB_JrVLU,463
|
20
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=C9cXEY0P3SBeSFgc-pr_0jxW4MMszY7-tC6XNC-0aOE,33539
|
21
|
+
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=kSDYeTyI26BKKQuFnGH7IRbPttjFHvwycUfwhgT5PB0,954
|
21
22
|
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=DGoyszrkLSlk42j-v_2J6tWbbU3VLtyXCh9zpGDl9UM,1100
|
22
23
|
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=RXnBqfV8mSHv3dVjy-752l1ALZ9rfQLxR_xz5mdyTOQ,4072
|
24
|
+
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
|
25
|
+
odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
|
23
26
|
odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst,sha256=GAYxzAZEN5wTBewMNx4PD2y_QoI-dzpokacQ9NnaEso,16
|
24
27
|
odoo/addons/account_reconcile_oca/readme/DESCRIPTION.rst,sha256=nc8nUT3VmwXIXvJXpq_hj2MeJzNnpsByDS4G3elJsrU,82
|
25
28
|
odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_WGKVTLQK-9RCMgCjGT-TAJU,104
|
26
29
|
odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
|
27
30
|
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
28
31
|
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
29
|
-
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=
|
30
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=
|
32
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=Zi_YRTgRucWyUWleUv_20r8RfyVGPQMxyjLdrXlrZnE,13746
|
33
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=nDTsO-XR9jF4krkW7ZhWf8SdeCERH8uDXGreEZ9USog,4808
|
31
34
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
|
32
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=
|
35
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
|
33
36
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_view.esm.js,sha256=cVNQ5mpho24LnHPN5uC2aAU8cD729TjaO85z5mq9kag,535
|
34
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=
|
37
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js,sha256=7EyyPuo9rBx1eZiYL6mpR2fIqNvP33JvOJiI9NA6cXo,1748
|
35
38
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_notebook.esm.js,sha256=csG1CGQJEj3atDyyKSpkhIPUIfOuWJAbS00aYDMFmdY,974
|
36
39
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_renderer.esm.js,sha256=4QBWIcvrYTVKnFdKbRLkRtEi0s_bYJYLSwPIZeeAs5s,332
|
37
40
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
|
@@ -41,21 +44,23 @@ odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_mo
|
|
41
44
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=UhOEnNAeVyXR4v4c4kMTne6Rw9_y3IOXWo-jUn7Kx-Q,594
|
42
45
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=TFHNQB-A2wyBlfUHXpqKBt_-ICY0pbO90n4ao9dCVBI,510
|
43
46
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=9vYBd7Nr-csZujbLx6VmdZOZ7T4JTtqrM7w4slrWzIw,541
|
44
|
-
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=
|
47
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=y44wPoddhxNJISNAFXYrAonv5CJQnC2GvlYRhQzCrrU,3123
|
45
48
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=s_GHeElGkhsa2nQvd0eKxXdrsMPL2g0YfPC-REyUqew,1604
|
46
49
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=zH2cqAerAF4cYDQMyMYTeFKoPIo1v_UmeFyPiwAz8tM,943
|
47
|
-
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=
|
48
|
-
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=
|
50
|
+
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=qL7RJ_6X-qhUqAxPKJNglQ2k4rFOH96jMX292jt2WW8,2638
|
51
|
+
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=sLoq3aN8Rs4Ex9dyEqENhRU9FYT9Cm1R_KrI4zk7FJY,8698
|
49
52
|
odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
|
50
53
|
odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=opQs4FgChPdphc25Jzs07TuYxoVGBCj6IAPueMLNkH0,10576
|
51
54
|
odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=RnWWQIhXINja99G9Fs7O_RQowJnwfy80yOYL7C0EL7Y,38809
|
52
55
|
odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=Z6S9dDF2CnaSl8CYw69dxJiuVznJZzZX2BrhaDeMP3c,916
|
53
56
|
odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=7QxYjURyRa0XvtjgUs3l95j2IMqWpeK8QktltJHh864,7008
|
54
|
-
odoo/addons/account_reconcile_oca/views/
|
55
|
-
odoo/addons/account_reconcile_oca/views/
|
57
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=wG7C5SExLc3LeXy_megI-wVg6Ut7lbMihsEcHhXh5qo,1850
|
58
|
+
odoo/addons/account_reconcile_oca/views/account_bank_statement_line.xml,sha256=pv25iOvw4XEOIprDIesVPPGIR6S0lytP7P-GTxuBl94,20629
|
59
|
+
odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-IhSCzMXlbUoOjjkB11I9L2YHk1p3rak,3434
|
56
60
|
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=EwbPYENnMYA6eRAz8N-l3qBosjOzw-S77sJ3a46meMU,934
|
57
61
|
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=Wzf76i6mhryqpCOHA06CMnUPzpEUBOaVL_L-8CKumNA,5239
|
58
|
-
|
59
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
60
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
61
|
-
odoo_addon_account_reconcile_oca-16.0.1.2.
|
62
|
+
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
|
63
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info/METADATA,sha256=psEyX1Rc90mw_b5zc0PfLKzjUC6lvYY3nJOoR7ELAgU,4345
|
64
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
65
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
66
|
+
odoo_addon_account_reconcile_oca-16.0.1.2.14.dist-info/RECORD,,
|
File without changes
|