odoo-addon-account-reconcile-oca 16.0.2.3.0__py3-none-any.whl → 16.0.2.3.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/account_reconcile_oca/README.rst +1 -1
- odoo/addons/account_reconcile_oca/__manifest__.py +1 -1
- odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot +7 -0
- odoo/addons/account_reconcile_oca/models/account_account_reconcile.py +16 -8
- odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py +123 -29
- odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py +3 -0
- odoo/addons/account_reconcile_oca/static/description/index.html +1 -1
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js +9 -0
- odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js +1 -0
- odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js +2 -1
- odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml +10 -0
- odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py +13 -0
- {odoo_addon_account_reconcile_oca-16.0.2.3.0.dist-info → odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info}/METADATA +2 -2
- {odoo_addon_account_reconcile_oca-16.0.2.3.0.dist-info → odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info}/RECORD +16 -16
- {odoo_addon_account_reconcile_oca-16.0.2.3.0.dist-info → odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info}/WHEEL +0 -0
- {odoo_addon_account_reconcile_oca-16.0.2.3.0.dist-info → odoo_addon_account_reconcile_oca-16.0.2.3.2.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:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
12
12
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -5,7 +5,7 @@
|
|
5
5
|
"name": "Account Reconcile Oca",
|
6
6
|
"summary": """
|
7
7
|
Reconcile addons for Odoo CE accounting""",
|
8
|
-
"version": "16.0.2.3.
|
8
|
+
"version": "16.0.2.3.2",
|
9
9
|
"license": "AGPL-3",
|
10
10
|
"author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)",
|
11
11
|
"maintainers": ["etobella"],
|
@@ -52,6 +52,13 @@ msgstr ""
|
|
52
52
|
msgid "Add Bank Statement Line"
|
53
53
|
msgstr ""
|
54
54
|
|
55
|
+
#. module: account_reconcile_oca
|
56
|
+
#. odoo-javascript
|
57
|
+
#: code:addons/account_reconcile_oca/static/src/xml/reconcile.xml:0
|
58
|
+
#, python-format
|
59
|
+
msgid "Add all"
|
60
|
+
msgstr ""
|
61
|
+
|
55
62
|
#. module: account_reconcile_oca
|
56
63
|
#: model:ir.model.fields,field_description:account_reconcile_oca.field_account_bank_statement_line__aggregate_id
|
57
64
|
msgid "Aggregate"
|
@@ -132,16 +132,17 @@ class AccountAccountReconcile(models.Model):
|
|
132
132
|
@api.onchange("add_account_move_line_id")
|
133
133
|
def _onchange_add_account_move_line(self):
|
134
134
|
if self.add_account_move_line_id:
|
135
|
-
|
136
|
-
if self.add_account_move_line_id.id not in data["counterparts"]:
|
137
|
-
data["counterparts"].append(self.add_account_move_line_id.id)
|
138
|
-
else:
|
139
|
-
del data["counterparts"][
|
140
|
-
data["counterparts"].index(self.add_account_move_line_id.id)
|
141
|
-
]
|
142
|
-
self.reconcile_data_info = self._recompute_data(data)
|
135
|
+
self._add_account_move_line(self.add_account_move_line_id)
|
143
136
|
self.add_account_move_line_id = False
|
144
137
|
|
138
|
+
def _add_account_move_line(self, move_line, keep_current=False):
|
139
|
+
data = self.reconcile_data_info
|
140
|
+
if move_line.id not in data["counterparts"]:
|
141
|
+
data["counterparts"].append(move_line.id)
|
142
|
+
elif not keep_current:
|
143
|
+
del data["counterparts"][data["counterparts"].index(move_line.id)]
|
144
|
+
self.reconcile_data_info = self._recompute_data(data)
|
145
|
+
|
145
146
|
@api.onchange("manual_reference", "manual_delete")
|
146
147
|
def _onchange_manual_reconcile_reference(self):
|
147
148
|
self.ensure_one()
|
@@ -188,6 +189,13 @@ class AccountAccountReconcile(models.Model):
|
|
188
189
|
)
|
189
190
|
data_record.unlink()
|
190
191
|
|
192
|
+
def add_multiple_lines(self, domain):
|
193
|
+
res = super().add_multiple_lines(domain)
|
194
|
+
lines = self.env["account.move.line"].search(domain)
|
195
|
+
for line in lines:
|
196
|
+
self._add_account_move_line(line, keep_current=True)
|
197
|
+
return res
|
198
|
+
|
191
199
|
|
192
200
|
class AccountAccountReconcileData(models.TransientModel):
|
193
201
|
_name = "account.account.reconcile.data"
|
@@ -9,7 +9,7 @@ from dateutil.relativedelta import relativedelta
|
|
9
9
|
from odoo import Command, _, api, fields, models
|
10
10
|
from odoo.exceptions import UserError
|
11
11
|
from odoo.fields import first
|
12
|
-
from odoo.tools import float_is_zero
|
12
|
+
from odoo.tools import float_compare, float_is_zero
|
13
13
|
|
14
14
|
|
15
15
|
class AccountBankStatementLine(models.Model):
|
@@ -210,36 +210,39 @@ class AccountBankStatementLine(models.Model):
|
|
210
210
|
@api.onchange("add_account_move_line_id")
|
211
211
|
def _onchange_add_account_move_line_id(self):
|
212
212
|
if self.add_account_move_line_id:
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
213
|
+
self._add_account_move_line(self.add_account_move_line_id)
|
214
|
+
self.add_account_move_line_id = False
|
215
|
+
|
216
|
+
def _add_account_move_line(self, move_line, keep_current=False):
|
217
|
+
data = self.reconcile_data_info["data"]
|
218
|
+
new_data = []
|
219
|
+
is_new_line = True
|
220
|
+
pending_amount = 0.0
|
221
|
+
currency = self._get_reconcile_currency()
|
222
|
+
for line in data:
|
223
|
+
if line["kind"] != "suspense":
|
224
|
+
pending_amount += self._get_amount_currency(line, currency)
|
225
|
+
if move_line.id in line.get("counterpart_line_ids", []):
|
226
|
+
is_new_line = False
|
227
|
+
if keep_current:
|
226
228
|
new_data.append(line)
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
)
|
235
|
-
|
236
|
-
self.reconcile_data_info = self._recompute_suspense_line(
|
237
|
-
new_data,
|
238
|
-
self.reconcile_data_info["reconcile_auxiliary_id"],
|
239
|
-
self.manual_reference,
|
229
|
+
else:
|
230
|
+
new_data.append(line)
|
231
|
+
if is_new_line:
|
232
|
+
reconcile_auxiliary_id, lines = self._get_reconcile_line(
|
233
|
+
move_line,
|
234
|
+
"other",
|
235
|
+
is_counterpart=True,
|
236
|
+
max_amount=currency.round(pending_amount),
|
237
|
+
move=True,
|
240
238
|
)
|
241
|
-
|
242
|
-
|
239
|
+
new_data += lines
|
240
|
+
self.reconcile_data_info = self._recompute_suspense_line(
|
241
|
+
new_data,
|
242
|
+
self.reconcile_data_info["reconcile_auxiliary_id"],
|
243
|
+
self.manual_reference,
|
244
|
+
)
|
245
|
+
self.can_reconcile = self.reconcile_data_info.get("can_reconcile", False)
|
243
246
|
|
244
247
|
def _recompute_suspense_line(self, data, reconcile_auxiliary_id, manual_reference):
|
245
248
|
can_reconcile = True
|
@@ -340,6 +343,28 @@ class AccountBankStatementLine(models.Model):
|
|
340
343
|
or self.analytic_distribution != line.get("analytic_distribution", False)
|
341
344
|
)
|
342
345
|
|
346
|
+
def _check_reconcile_data_changed(self):
|
347
|
+
self.ensure_one()
|
348
|
+
data = self.reconcile_data_info.get("data", [])
|
349
|
+
liquidity_lines, _suspense_lines, _other_lines = self._seek_for_lines()
|
350
|
+
move_amount_cur = sum(liquidity_lines.mapped("amount_currency"))
|
351
|
+
move_credit = sum(liquidity_lines.mapped("credit"))
|
352
|
+
move_debit = sum(liquidity_lines.mapped("debit"))
|
353
|
+
stmt_amount_curr = stmt_debit = stmt_credit = 0.0
|
354
|
+
for line_data in data:
|
355
|
+
if line_data["kind"] != "liquidity":
|
356
|
+
continue
|
357
|
+
stmt_amount_curr += line_data["currency_amount"]
|
358
|
+
stmt_debit += line_data["debit"]
|
359
|
+
stmt_credit += line_data["credit"]
|
360
|
+
prec = self.currency_id.rounding
|
361
|
+
return (
|
362
|
+
float_compare(move_amount_cur, move_amount_cur, precision_rounding=prec)
|
363
|
+
!= 0
|
364
|
+
or float_compare(move_credit, stmt_credit, precision_rounding=prec) != 0
|
365
|
+
or float_compare(move_debit, stmt_debit, precision_rounding=prec) != 0
|
366
|
+
)
|
367
|
+
|
343
368
|
def _get_manual_delete_vals(self):
|
344
369
|
return {
|
345
370
|
"manual_reference": False,
|
@@ -953,6 +978,68 @@ class AccountBankStatementLine(models.Model):
|
|
953
978
|
)(self._prepare_reconcile_line_data(data["data"]))
|
954
979
|
return result
|
955
980
|
|
981
|
+
def _synchronize_to_moves(self, changed_fields):
|
982
|
+
"""We want to avoid to change stuff (mainly amounts ) in accounting entries
|
983
|
+
when some changes happen in the reconciliation widget. The only change
|
984
|
+
(among the fields triggering the synchronization) possible from the
|
985
|
+
reconciliation widget is the partner_id field.
|
986
|
+
|
987
|
+
So, in case of change on partner_id field we do not call super but make
|
988
|
+
only the required change (relative to partner) on accounting entries.
|
989
|
+
|
990
|
+
And if something else changes, we then re-define reconcile_data_info to
|
991
|
+
make the data consistent (for example, if debit/credit has changed by
|
992
|
+
applying a different rate or even if there was a correction on statement
|
993
|
+
line amount).
|
994
|
+
"""
|
995
|
+
if self._context.get("skip_account_move_synchronization"):
|
996
|
+
return
|
997
|
+
if "partner_id" in changed_fields and not any(
|
998
|
+
field_name in changed_fields
|
999
|
+
for field_name in (
|
1000
|
+
"payment_ref",
|
1001
|
+
"amount",
|
1002
|
+
"amount_currency",
|
1003
|
+
"foreign_currency_id",
|
1004
|
+
"currency_id",
|
1005
|
+
)
|
1006
|
+
):
|
1007
|
+
for st_line in self.with_context(skip_account_move_synchronization=True):
|
1008
|
+
|
1009
|
+
(
|
1010
|
+
liquidity_lines,
|
1011
|
+
suspense_lines,
|
1012
|
+
_other_lines,
|
1013
|
+
) = st_line._seek_for_lines()
|
1014
|
+
line_vals = {"partner_id": st_line.partner_id}
|
1015
|
+
line_ids_commands = [(1, liquidity_lines.id, line_vals)]
|
1016
|
+
if suspense_lines:
|
1017
|
+
line_ids_commands.append((1, suspense_lines.id, line_vals))
|
1018
|
+
st_line_vals = {"line_ids": line_ids_commands}
|
1019
|
+
if st_line.move_id.partner_id != st_line.partner_id:
|
1020
|
+
st_line_vals["partner_id"] = st_line.partner_id.id
|
1021
|
+
st_line.move_id.write(st_line_vals)
|
1022
|
+
else:
|
1023
|
+
super()._synchronize_to_moves(changed_fields=changed_fields)
|
1024
|
+
|
1025
|
+
if not any(
|
1026
|
+
field_name in changed_fields
|
1027
|
+
for field_name in (
|
1028
|
+
"payment_ref",
|
1029
|
+
"amount",
|
1030
|
+
"amount_currency",
|
1031
|
+
"foreign_currency_id",
|
1032
|
+
"currency_id",
|
1033
|
+
"partner_id",
|
1034
|
+
)
|
1035
|
+
):
|
1036
|
+
return
|
1037
|
+
# reset reconcile_data_info if amounts are not consistent anymore with the
|
1038
|
+
# amounts of the accounting entries
|
1039
|
+
for st_line in self:
|
1040
|
+
if st_line._check_reconcile_data_changed():
|
1041
|
+
st_line.reconcile_data_info = st_line._default_reconcile_data()
|
1042
|
+
|
956
1043
|
def _prepare_reconcile_line_data(self, lines):
|
957
1044
|
new_lines = []
|
958
1045
|
reverse_lines = {}
|
@@ -1169,3 +1256,10 @@ class AccountBankStatementLine(models.Model):
|
|
1169
1256
|
or self.journal_id.currency_id
|
1170
1257
|
or self.company_id.currency_id
|
1171
1258
|
)
|
1259
|
+
|
1260
|
+
def add_multiple_lines(self, domain):
|
1261
|
+
res = super().add_multiple_lines(domain)
|
1262
|
+
lines = self.env["account.move.line"].search(domain)
|
1263
|
+
for line in lines:
|
1264
|
+
self._add_account_move_line(line, keep_current=True)
|
1265
|
+
return res
|
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
368
368
|
!! changes will be overwritten. !!
|
369
369
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
370
|
-
!! source digest: sha256:
|
370
|
+
!! source digest: sha256:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
|
371
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
372
372
|
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/account-reconcile/tree/16.0/account_reconcile_oca"><img alt="OCA/account-reconcile" src="https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/account-reconcile-16-0/account-reconcile-16-0-account_reconcile_oca"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/account-reconcile&target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
373
373
|
<p>This addon allows to reconcile bank statements and account marked as <cite>reconcile</cite>.</p>
|
@@ -8,6 +8,15 @@ export class ReconcileMoveLineController extends ListController {
|
|
8
8
|
data[this.props.parentField] = [record.resId, record.display_name];
|
9
9
|
this.props.parentRecord.update(data);
|
10
10
|
}
|
11
|
+
async clickAddAll() {
|
12
|
+
await this.props.parentRecord.save();
|
13
|
+
await this.orm.call(this.props.parentRecord.resModel, "add_multiple_lines", [
|
14
|
+
this.props.parentRecord.resIds,
|
15
|
+
this.model.root.domain,
|
16
|
+
]);
|
17
|
+
await this.props.parentRecord.load();
|
18
|
+
this.props.parentRecord.model.notify();
|
19
|
+
}
|
11
20
|
}
|
12
21
|
|
13
22
|
ReconcileMoveLineController.template = `account_reconcile_oca.ReconcileMoveLineController`;
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js
CHANGED
@@ -10,6 +10,7 @@ export const ReconcileMoveLineView = {
|
|
10
10
|
...listView,
|
11
11
|
Controller: ReconcileMoveLineController,
|
12
12
|
Renderer: ReconcileMoveLineRenderer,
|
13
|
+
buttonTemplate: "reconcile_move_line.ListView.Buttons",
|
13
14
|
};
|
14
15
|
|
15
16
|
registry.category("views").add("reconcile_move_line", ReconcileMoveLineView);
|
@@ -21,7 +21,7 @@ export class AccountReconcileMatchWidget extends Component {
|
|
21
21
|
controlPanel: {
|
22
22
|
// Hiding the control panel buttons
|
23
23
|
"top-left": false,
|
24
|
-
"bottom-left":
|
24
|
+
"bottom-left": true,
|
25
25
|
},
|
26
26
|
},
|
27
27
|
resModel: this.props.record.fields[this.props.name].relation,
|
@@ -36,6 +36,7 @@ export class AccountReconcileMatchWidget extends Component {
|
|
36
36
|
searchViewId: false,
|
37
37
|
parentRecord: this.props.record,
|
38
38
|
parentField: this.props.name,
|
39
|
+
showButtons: false,
|
39
40
|
};
|
40
41
|
}
|
41
42
|
}
|
@@ -203,4 +203,14 @@
|
|
203
203
|
<attribute name="parentField">props.parentField</attribute>
|
204
204
|
</xpath>
|
205
205
|
</t>
|
206
|
+
<t
|
207
|
+
t-name="reconcile_move_line.ListView.Buttons"
|
208
|
+
t-inherit="web.ListView.Buttons"
|
209
|
+
t-inherit-mode="primary"
|
210
|
+
owl="1"
|
211
|
+
>
|
212
|
+
<xpath expr="//div[hasclass('o_list_buttons')]" position="inside">
|
213
|
+
<button class="btn btn-primary" t-on-click="clickAddAll">Add all</button>
|
214
|
+
</xpath>
|
215
|
+
</t>
|
206
216
|
</templates>
|
@@ -892,6 +892,7 @@ class TestReconciliationWidget(TestAccountReconciliationCommon):
|
|
892
892
|
self.assertFalse(f.partner_id)
|
893
893
|
f.manual_reference = "account.move.line;%s" % liquidity_lines.id
|
894
894
|
f.manual_partner_id = inv1.partner_id
|
895
|
+
f.save()
|
895
896
|
self.assertEqual(f.partner_id, inv1.partner_id)
|
896
897
|
bank_stmt_line.clean_reconcile()
|
897
898
|
# As we have a set a partner, the cleaning should assign the invoice automatically
|
@@ -1296,6 +1297,7 @@ class TestReconciliationWidget(TestAccountReconciliationCommon):
|
|
1296
1297
|
"rate": 1.25,
|
1297
1298
|
}
|
1298
1299
|
)
|
1300
|
+
liquidity_lines, suspense_lines, other_lines = bank_stmt_line._seek_for_lines()
|
1299
1301
|
with Form(
|
1300
1302
|
bank_stmt_line,
|
1301
1303
|
view="account_reconcile_oca.bank_statement_line_form_reconcile_view",
|
@@ -1309,6 +1311,17 @@ class TestReconciliationWidget(TestAccountReconciliationCommon):
|
|
1309
1311
|
line["amount"],
|
1310
1312
|
83.33,
|
1311
1313
|
)
|
1314
|
+
# check that adding a partner does not recompute the amounts on accounting
|
1315
|
+
# entries, but is still synchronized with accounting entries
|
1316
|
+
f.manual_reference = "account.move.line;%s" % liquidity_lines.id
|
1317
|
+
f.manual_partner_id = inv1.partner_id
|
1318
|
+
self.assertEqual(f.partner_id, inv1.partner_id)
|
1319
|
+
self.assertEqual(liquidity_lines.debit, 83.33)
|
1320
|
+
f.save()
|
1321
|
+
# check liquidity line did not recompute debit with the new rate with
|
1322
|
+
# partner change
|
1323
|
+
self.assertEqual(liquidity_lines.debit, 83.33)
|
1324
|
+
self.assertEqual(liquidity_lines.partner_id, inv1.partner_id)
|
1312
1325
|
f.manual_reference = "account.move.line;%s" % line["id"]
|
1313
1326
|
# simulate click on statement line, check amount does not recompute
|
1314
1327
|
f.manual_partner_id = inv1.partner_id
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: odoo-addon-account_reconcile_oca
|
3
|
-
Version: 16.0.2.3.
|
3
|
+
Version: 16.0.2.3.2
|
4
4
|
Summary: Reconcile addons for Odoo CE accounting
|
5
5
|
Home-page: https://github.com/OCA/account-reconcile
|
6
6
|
Author: CreuBlanca,Dixmit,Odoo Community Association (OCA)
|
@@ -23,7 +23,7 @@ Account Reconcile Oca
|
|
23
23
|
!! This file is generated by oca-gen-addon-readme !!
|
24
24
|
!! changes will be overwritten. !!
|
25
25
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
26
|
-
!! source digest: sha256:
|
26
|
+
!! source digest: sha256:7e8a6f936e83ce56a074c1e8cc315ebb70ff51d33391ddacf9c0dc8f3e0f78b1
|
27
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
28
28
|
|
29
29
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
@@ -1,9 +1,9 @@
|
|
1
|
-
odoo/addons/account_reconcile_oca/README.rst,sha256=
|
1
|
+
odoo/addons/account_reconcile_oca/README.rst,sha256=04M4PgjRoxUaOO176_ANuhQgC83RHoQwXIxP3wxkb2A,3709
|
2
2
|
odoo/addons/account_reconcile_oca/__init__.py,sha256=vqRYeBgCVZMpZhYvILSxVsNLC9V7zDnvxMnKU8RQP94,55
|
3
|
-
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=
|
3
|
+
odoo/addons/account_reconcile_oca/__manifest__.py,sha256=ScEwTMub9AhjOcWkMLorthmRfNg66a84t9y2ara-b8Y,1826
|
4
4
|
odoo/addons/account_reconcile_oca/hooks.py,sha256=l2-vYiPh-Wu_4Hi3GvfoUmc527S-Jozb07-DbP6LzDA,187
|
5
5
|
odoo/addons/account_reconcile_oca/demo/demo.xml,sha256=6k0uK-H1aBiyogVNhQMQfFGL5zUfUGV2M-sSV6LHeUs,204
|
6
|
-
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256
|
6
|
+
odoo/addons/account_reconcile_oca/i18n/account_reconcile_oca.pot,sha256=-mUJwfpIhw4hcbXforS8LRmN8UEcA0b5mcALWU2rG6Y,26901
|
7
7
|
odoo/addons/account_reconcile_oca/i18n/ca.po,sha256=V2CvS0DOFF6a4Icr-0sFYJEgYp2XKAQBiM9toi67ID8,28745
|
8
8
|
odoo/addons/account_reconcile_oca/i18n/es.po,sha256=b7I6dJ3vb8wlDt08LgBRBCOznsD5R-NBwysbgUh6-Jg,29663
|
9
9
|
odoo/addons/account_reconcile_oca/i18n/fr.po,sha256=Insh_trMpG5e1E5-QQ6qreIlDyHNohJeNn4cF9SFhuA,29811
|
@@ -16,12 +16,12 @@ odoo/addons/account_reconcile_oca/i18n/sv.po,sha256=aHozw_7rtEPrdtsgiz0gVu78gPX_
|
|
16
16
|
odoo/addons/account_reconcile_oca/i18n/tr.po,sha256=rMhwTubzqfo7UVshljWMjy28QJ4UW9pFB-aqPzqBWCA,29447
|
17
17
|
odoo/addons/account_reconcile_oca/migrations/16.0.1.2.0/pre-migration.py,sha256=Z_OLx-fclggJUAtYpepXRAAc68AizrIN6MWtl4zp0Qw,642
|
18
18
|
odoo/addons/account_reconcile_oca/models/__init__.py,sha256=28wbZjUZa30uHQY10BMJtKQ_BqJgwLQMQvB9uv0H_fY,282
|
19
|
-
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=
|
19
|
+
odoo/addons/account_reconcile_oca/models/account_account_reconcile.py,sha256=rjHMGUUBBRls89YlZLnNoYrxcZzFaAmz9dU-qVpsxNo,7182
|
20
20
|
odoo/addons/account_reconcile_oca/models/account_bank_statement.py,sha256=CFqlLLtmTqmt5yH3v_pkUfkZezSb1nEhBTu2J5gCjxM,1034
|
21
|
-
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=
|
21
|
+
odoo/addons/account_reconcile_oca/models/account_bank_statement_line.py,sha256=MEnkbE2W4OO3X3zZRgZ00qmE7Z198066PqJYFI6uwFQ,51429
|
22
22
|
odoo/addons/account_reconcile_oca/models/account_journal.py,sha256=8vluuQ0q0rGmVnJWyaSOAhTD0WZQuawKNqhUCEEYRvo,1306
|
23
23
|
odoo/addons/account_reconcile_oca/models/account_move_line.py,sha256=yLNHitduzhS5ShrWWw31S5zirIadFsG8ga1gtXehRTc,1213
|
24
|
-
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=
|
24
|
+
odoo/addons/account_reconcile_oca/models/account_reconcile_abstract.py,sha256=hmuorywUhHLLFjfYOuUIlB4e6xp5gWMU6kcgnhBvf6s,5013
|
25
25
|
odoo/addons/account_reconcile_oca/models/res_company.py,sha256=IaSLPwHJZre5RYPVW8V6mnSoxltS_w0GUN1Ev-cfcB4,354
|
26
26
|
odoo/addons/account_reconcile_oca/models/res_config_settings.py,sha256=AuenxX0UfqYWWP-QvtB0irSf_JuWVh4a9QylPfl-Lxc,325
|
27
27
|
odoo/addons/account_reconcile_oca/readme/CONTRIBUTORS.rst,sha256=GAYxzAZEN5wTBewMNx4PD2y_QoI-dzpokacQ9NnaEso,16
|
@@ -30,7 +30,7 @@ odoo/addons/account_reconcile_oca/readme/ROADMAP.rst,sha256=MlQ8cFQmu5MzBoFW2WP_
|
|
30
30
|
odoo/addons/account_reconcile_oca/readme/USAGE.rst,sha256=npPsx_C8T-JuCEJiTK4V44_5Io1j4ltO831T3yHFuCs,396
|
31
31
|
odoo/addons/account_reconcile_oca/security/ir.model.access.csv,sha256=XfN2EKOoChlEDonVd5DtodVAQyRbShiJ8nrXx6EwNmM,339
|
32
32
|
odoo/addons/account_reconcile_oca/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
33
|
-
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=
|
33
|
+
odoo/addons/account_reconcile_oca/static/description/index.html,sha256=qcUfiWQ2gXdFEPboyvRjiaKULswdIMtStiFRE3vXb24,13829
|
34
34
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js,sha256=4bw-Dc1pmVx6sv-fBzyPfBj-rZrqFUVZ8C19n9Pfpi0,4880
|
35
35
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_kanban_record.esm.js,sha256=ewNK1VQgFZWccTiyJMKYkOG6KtbHHVnI2pdNy9kjkig,467
|
36
36
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile/reconcile_renderer.esm.js,sha256=jm7p1yKiSw7oz32IZ_uwjFOMMz77sxicv-zPomVVt4U,2157
|
@@ -41,18 +41,18 @@ odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_re
|
|
41
41
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_view.esm.js,sha256=tG43BF1TUtYmCdc89OKnma5210UvIjvomcuxDJ9_8hY,470
|
42
42
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_controller.esm.js,sha256=TqMA5PUI81WCOp8elcl5aS_K47wReKauwJkdzVJ5CKA,1113
|
43
43
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_manual/reconcile_manual_view.esm.js,sha256=GXC6xTc3VYTXEZvX-bn9SH2ylQbN_4gXiLeIwuMIfxI,381
|
44
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=
|
44
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_controller.esm.js,sha256=3mApRNQb-3CXWRkLjjFMiFngTjonx6TPh_E7P2iZH3U,948
|
45
45
|
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_renderer.esm.js,sha256=UhOEnNAeVyXR4v4c4kMTne6Rw9_y3IOXWo-jUn7Kx-Q,594
|
46
|
-
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=
|
46
|
+
odoo/addons/account_reconcile_oca/static/src/js/reconcile_move_line/reconcile_move_line_view.esm.js,sha256=lWr_tCa44oMioQ2iXMhteGoxQOrrY6GxBp4wTnFGlrw,570
|
47
47
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_chatter_field.esm.js,sha256=9vYBd7Nr-csZujbLx6VmdZOZ7T4JTtqrM7w4slrWzIw,541
|
48
48
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_data_widget.esm.js,sha256=gP5XuA9D6KrHf_PPop1FoUVNAh88lV1L50FVjY6LB2k,3595
|
49
|
-
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=
|
49
|
+
odoo/addons/account_reconcile_oca/static/src/js/widgets/reconcile_move_line_widget.esm.js,sha256=VEudzTbkfL6tpcjfULot2Nfz-tMI5zpzztNaZkD5ZTM,1635
|
50
50
|
odoo/addons/account_reconcile_oca/static/src/js/widgets/selection_badge_uncheck.esm.js,sha256=zH2cqAerAF4cYDQMyMYTeFKoPIo1v_UmeFyPiwAz8tM,943
|
51
51
|
odoo/addons/account_reconcile_oca/static/src/scss/reconcile.scss,sha256=cQoernconYYErBp0nkOQOPeDq1NGDP9kds5r_q1nrk0,2809
|
52
|
-
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=
|
52
|
+
odoo/addons/account_reconcile_oca/static/src/xml/reconcile.xml,sha256=aBm6PxYfEciRO8tmtoj955h8pDzKFjFN_0MXWbaAZSY,9671
|
53
53
|
odoo/addons/account_reconcile_oca/tests/__init__.py,sha256=8JhP4auByShS8Z_Ik5dShMuWdh1kBlYP_DLI4Ku8XWA,79
|
54
54
|
odoo/addons/account_reconcile_oca/tests/test_account_reconcile.py,sha256=opQs4FgChPdphc25Jzs07TuYxoVGBCj6IAPueMLNkH0,10576
|
55
|
-
odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=
|
55
|
+
odoo/addons/account_reconcile_oca/tests/test_bank_account_reconcile.py,sha256=36vQlGdKlDTV6anNu3VA5HWTzqSiAUf7gQHdgx1AD3c,51426
|
56
56
|
odoo/addons/account_reconcile_oca/views/account_account.xml,sha256=Z6S9dDF2CnaSl8CYw69dxJiuVznJZzZX2BrhaDeMP3c,916
|
57
57
|
odoo/addons/account_reconcile_oca/views/account_account_reconcile.xml,sha256=yGOV7nOj5dVwp09ItOIfvNiBQrO_FpAC36gcnjI98JE,7066
|
58
58
|
odoo/addons/account_reconcile_oca/views/account_bank_statement.xml,sha256=e8ojLqYeZaMdTj-F0QdmFST4ICAlaKV66SJPkHXCdEU,2473
|
@@ -61,7 +61,7 @@ odoo/addons/account_reconcile_oca/views/account_journal.xml,sha256=WQGxMPgl4Um-I
|
|
61
61
|
odoo/addons/account_reconcile_oca/views/account_move.xml,sha256=qMXpycJJfaztyToulMmLY1NF2UDL2lcZM-m1tTiAoRY,995
|
62
62
|
odoo/addons/account_reconcile_oca/views/account_move_line.xml,sha256=BfObEwM6vXHMtxOFMOGDdCPOWO4ybz3w1_fm4_ufqM0,5274
|
63
63
|
odoo/addons/account_reconcile_oca/views/res_config_settings.xml,sha256=hL06Z_0Eg96LU6ta7VHRaheUDehJ6tVexBjU6X52Vng,1412
|
64
|
-
odoo_addon_account_reconcile_oca-16.0.2.3.
|
65
|
-
odoo_addon_account_reconcile_oca-16.0.2.3.
|
66
|
-
odoo_addon_account_reconcile_oca-16.0.2.3.
|
67
|
-
odoo_addon_account_reconcile_oca-16.0.2.3.
|
64
|
+
odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/METADATA,sha256=aZhzUbYqIgXmUEsko9Nucrk6PaeFfXqcJWWQGTeDmeY,4322
|
65
|
+
odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
66
|
+
odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
67
|
+
odoo_addon_account_reconcile_oca-16.0.2.3.2.dist-info/RECORD,,
|
File without changes
|