odoo-addon-account-statement-import-sheet-file 17.0.1.1.0.2__py3-none-any.whl → 17.0.1.1.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_statement_import_sheet_file/README.rst +6 -2
- odoo/addons/account_statement_import_sheet_file/__manifest__.py +1 -1
- odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py +25 -29
- odoo/addons/account_statement_import_sheet_file/static/description/index.html +20 -14
- odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml +1 -0
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.0.2.dist-info → odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info}/METADATA +8 -3
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.0.2.dist-info → odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info}/RECORD +9 -9
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.0.2.dist-info → odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info}/WHEEL +1 -1
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.0.2.dist-info → odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
1
5
|
==================================
|
|
2
6
|
Bank Statement TXT/CSV/XLSX Import
|
|
3
7
|
==================================
|
|
@@ -7,13 +11,13 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:e91b66bd2dd7b69e871f22ebaea435ecc394e62eddbff8c196ccfb3f58c63d9a
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
{
|
|
6
6
|
"name": "Bank Statement TXT/CSV/XLSX Import",
|
|
7
7
|
"summary": "Import TXT/CSV or XLSX files as Bank Statements in Odoo",
|
|
8
|
-
"version": "17.0.1.1.
|
|
8
|
+
"version": "17.0.1.1.2",
|
|
9
9
|
"category": "Accounting",
|
|
10
10
|
"website": "https://github.com/OCA/bank-statement-import",
|
|
11
11
|
"author": "ForgeFlow, CorporateHub, Odoo Community Association (OCA)",
|
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py
CHANGED
|
@@ -39,22 +39,22 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
|
|
39
39
|
_description = "Bank Statement Import Sheet Parser"
|
|
40
40
|
|
|
41
41
|
@api.model
|
|
42
|
-
def parse_header(self,
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
42
|
+
def parse_header(self, csv_or_xlsx, mapping):
|
|
43
|
+
if mapping.no_header:
|
|
44
|
+
return []
|
|
45
|
+
header_line = mapping.header_lines_skip_count
|
|
46
|
+
# prevent negative indexes
|
|
47
|
+
if header_line > 0:
|
|
48
|
+
header_line -= 1
|
|
49
|
+
if isinstance(csv_or_xlsx, tuple):
|
|
50
|
+
header = [
|
|
51
|
+
str(value).strip() for value in csv_or_xlsx[1].row_values(header_line)
|
|
52
|
+
]
|
|
53
|
+
else:
|
|
54
|
+
[next(csv_or_xlsx) for _i in range(header_line)]
|
|
55
|
+
header = [value.strip() for value in next(csv_or_xlsx)]
|
|
56
|
+
if mapping.offset_column:
|
|
57
|
+
header = header[mapping.offset_column :]
|
|
58
58
|
return header
|
|
59
59
|
|
|
60
60
|
@api.model
|
|
@@ -177,19 +177,7 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
|
|
177
177
|
) from None
|
|
178
178
|
decoded_file = data_file.decode(detected_encoding)
|
|
179
179
|
csv_or_xlsx = reader(StringIO(decoded_file), **csv_options)
|
|
180
|
-
header =
|
|
181
|
-
if not mapping.no_header:
|
|
182
|
-
header_line = mapping.header_lines_skip_count - 1
|
|
183
|
-
if isinstance(csv_or_xlsx, tuple):
|
|
184
|
-
header = [
|
|
185
|
-
str(value).strip()
|
|
186
|
-
for value in csv_or_xlsx[1].row_values(header_line)
|
|
187
|
-
]
|
|
188
|
-
else:
|
|
189
|
-
[next(csv_or_xlsx) for _i in range(header_line)]
|
|
190
|
-
header = [value.strip() for value in next(csv_or_xlsx)]
|
|
191
|
-
if mapping.offset_column:
|
|
192
|
-
header = header[mapping.offset_column :]
|
|
180
|
+
header = self.parse_header(csv_or_xlsx, mapping)
|
|
193
181
|
|
|
194
182
|
# NOTE no seria necesario debit_column y credit_column ya que tenemos los
|
|
195
183
|
# respectivos campos related
|
|
@@ -348,6 +336,14 @@ class AccountStatementImportSheetParser(models.TransientModel):
|
|
|
348
336
|
|
|
349
337
|
if isinstance(timestamp, str):
|
|
350
338
|
timestamp = datetime.strptime(timestamp, mapping.timestamp_format)
|
|
339
|
+
if timestamp.year == 1900:
|
|
340
|
+
# No year indicated, so put the current or previous one depending
|
|
341
|
+
# on the current month (i.e. in January, importing December)
|
|
342
|
+
now = datetime.now()
|
|
343
|
+
year = now.year
|
|
344
|
+
if timestamp.month > now.month:
|
|
345
|
+
year -= 1
|
|
346
|
+
timestamp = timestamp.replace(year=year)
|
|
351
347
|
|
|
352
348
|
if balance:
|
|
353
349
|
balance = self._parse_decimal(balance, mapping)
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Bank Statement TXT/CSV/XLSX Import</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="bank-statement-txt-csv-xlsx-import">
|
|
370
|
+
<h1>Bank Statement TXT/CSV/XLSX Import</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:e91b66bd2dd7b69e871f22ebaea435ecc394e62eddbff8c196ccfb3f58c63d9a
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
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/
|
|
377
|
+
<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/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/bank-statement-import/tree/17.0/account_statement_import_sheet_file"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/bank-statement-import-17-0/bank-statement-import-17-0-account_statement_import_sheet_file"><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/bank-statement-import&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module allows you to import any TXT/CSV or XLSX file in Odoo as
|
|
374
379
|
bank statements.</p>
|
|
375
380
|
<p><strong>Table of contents</strong></p>
|
|
@@ -391,7 +396,7 @@ bank statements.</p>
|
|
|
391
396
|
</ul>
|
|
392
397
|
</div>
|
|
393
398
|
<div class="section" id="configuration">
|
|
394
|
-
<
|
|
399
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
395
400
|
<p>To create TXT/CSV/XLSX statement sheet columns mapping:</p>
|
|
396
401
|
<ol class="arabic simple">
|
|
397
402
|
<li>Open <em>Invoicing > Configuration > Accounting > Statement Sheet
|
|
@@ -401,7 +406,7 @@ format</li>
|
|
|
401
406
|
</ol>
|
|
402
407
|
</div>
|
|
403
408
|
<div class="section" id="usage">
|
|
404
|
-
<
|
|
409
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
|
|
405
410
|
<p>To use this module, you need to:</p>
|
|
406
411
|
<ol class="arabic simple">
|
|
407
412
|
<li>Get statement in TXT/CSV or XLSX from your online banking software</li>
|
|
@@ -410,9 +415,9 @@ format</li>
|
|
|
410
415
|
</ol>
|
|
411
416
|
</div>
|
|
412
417
|
<div class="section" id="changelog">
|
|
413
|
-
<
|
|
418
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Changelog</a></h2>
|
|
414
419
|
<div class="section" id="section-1">
|
|
415
|
-
<
|
|
420
|
+
<h3><a class="toc-backref" href="#toc-entry-4">12.0.2.0.0</a></h3>
|
|
416
421
|
<ul class="simple">
|
|
417
422
|
<li>[BREAKING] New mapping, please review mappings after upgrade.</li>
|
|
418
423
|
<li>[BREAKING] Different bank accounts have to be used per each currency.</li>
|
|
@@ -422,7 +427,7 @@ format</li>
|
|
|
422
427
|
</div>
|
|
423
428
|
</div>
|
|
424
429
|
<div class="section" id="bug-tracker">
|
|
425
|
-
<
|
|
430
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h2>
|
|
426
431
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/bank-statement-import/issues">GitHub Issues</a>.
|
|
427
432
|
In case of trouble, please check there if your issue has already been reported.
|
|
428
433
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -430,16 +435,16 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
430
435
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
431
436
|
</div>
|
|
432
437
|
<div class="section" id="credits">
|
|
433
|
-
<
|
|
438
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Credits</a></h2>
|
|
434
439
|
<div class="section" id="authors">
|
|
435
|
-
<
|
|
440
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Authors</a></h3>
|
|
436
441
|
<ul class="simple">
|
|
437
442
|
<li>ForgeFlow</li>
|
|
438
443
|
<li>CorporateHub</li>
|
|
439
444
|
</ul>
|
|
440
445
|
</div>
|
|
441
446
|
<div class="section" id="contributors">
|
|
442
|
-
<
|
|
447
|
+
<h3><a class="toc-backref" href="#toc-entry-8">Contributors</a></h3>
|
|
443
448
|
<ul class="simple">
|
|
444
449
|
<li>Alexis de Lattre <<a class="reference external" href="mailto:alexis.delattre@akretion.com">alexis.delattre@akretion.com</a>></li>
|
|
445
450
|
<li>Sebastien BEAU <<a class="reference external" href="mailto:sebastien.beau@akretion.com">sebastien.beau@akretion.com</a>></li>
|
|
@@ -463,7 +468,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
463
468
|
</ul>
|
|
464
469
|
</div>
|
|
465
470
|
<div class="section" id="maintainers">
|
|
466
|
-
<
|
|
471
|
+
<h3><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h3>
|
|
467
472
|
<p>This module is maintained by the OCA.</p>
|
|
468
473
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
469
474
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -478,5 +483,6 @@ promote its widespread use.</p>
|
|
|
478
483
|
</div>
|
|
479
484
|
</div>
|
|
480
485
|
</div>
|
|
486
|
+
</div>
|
|
481
487
|
</body>
|
|
482
488
|
</html>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_statement_import_sheet_file
|
|
3
|
-
Version: 17.0.1.1.
|
|
3
|
+
Version: 17.0.1.1.2
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: chardet
|
|
6
6
|
Requires-Dist: odoo-addon-account_statement_import_file>=17.0dev,<17.1dev
|
|
@@ -15,6 +15,11 @@ Classifier: Programming Language :: Python
|
|
|
15
15
|
Classifier: Framework :: Odoo
|
|
16
16
|
Classifier: Framework :: Odoo :: 17.0
|
|
17
17
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
18
|
+
Description-Content-Type: text/x-rst
|
|
19
|
+
|
|
20
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
21
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
22
|
+
:alt: Odoo Community Association
|
|
18
23
|
|
|
19
24
|
==================================
|
|
20
25
|
Bank Statement TXT/CSV/XLSX Import
|
|
@@ -25,13 +30,13 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
25
30
|
!! This file is generated by oca-gen-addon-readme !!
|
|
26
31
|
!! changes will be overwritten. !!
|
|
27
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
|
-
!! source digest: sha256:
|
|
33
|
+
!! source digest: sha256:e91b66bd2dd7b69e871f22ebaea435ecc394e62eddbff8c196ccfb3f58c63d9a
|
|
29
34
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
30
35
|
|
|
31
36
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
32
37
|
:target: https://odoo-community.org/page/development-status
|
|
33
38
|
:alt: Beta
|
|
34
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
39
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
35
40
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
36
41
|
:alt: License: AGPL-3
|
|
37
42
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/account_statement_import_sheet_file/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_statement_import_sheet_file/README.rst,sha256=5R4SgfFkgNehK3473mFo5gZmh6vWpTxdhgNdLC9JZ54,4724
|
|
2
2
|
odoo/addons/account_statement_import_sheet_file/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
|
|
3
|
-
odoo/addons/account_statement_import_sheet_file/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/account_statement_import_sheet_file/__manifest__.py,sha256=2EVavi_PYUEbhKyrPGkFqEsveMCVxpU9Pt-BsTvbE5M,934
|
|
4
4
|
odoo/addons/account_statement_import_sheet_file/data/map_data.xml,sha256=nz_4CchVMF9pb_SI4I6UZAt2IBPxWapX37lU6J6sTJ0,1225
|
|
5
5
|
odoo/addons/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot,sha256=0bOWoJHO8rwi8ouPB7ui-M2O7Ht80-pXCZkJTq3k2Tg,27191
|
|
6
6
|
odoo/addons/account_statement_import_sheet_file/i18n/es.po,sha256=AZXEocNT6Gp7W8ZpanJ0MENVamkH-nXANZtiu7Y_fB4,32246
|
|
@@ -14,7 +14,7 @@ odoo/addons/account_statement_import_sheet_file/models/__init__.py,sha256=RsEvd8
|
|
|
14
14
|
odoo/addons/account_statement_import_sheet_file/models/account_journal.py,sha256=F4_deAvNErZ6o1gkw9uhDrEnHyWXUKNvk09mzCVzTIw,562
|
|
15
15
|
odoo/addons/account_statement_import_sheet_file/models/account_statement_import.py,sha256=KWDYgO9-C1ZAF7JO9Qlq2ghROcJIwKhGp1CueTnA368,1932
|
|
16
16
|
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py,sha256=HDR7tcbzw-I6h_hKRNpCFTDiHvOtfgHeAgoFV-Fg_yY,9308
|
|
17
|
-
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py,sha256=
|
|
17
|
+
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py,sha256=Oe89O5vlG4otLPKpWbVeO2bArqI0AruQ3VG7RzARnGM,18150
|
|
18
18
|
odoo/addons/account_statement_import_sheet_file/readme/CONFIGURE.md,sha256=1Z-fR-OJrU8oshmBIcFA3yBd4evqZSgfqezqPRs8RpY,226
|
|
19
19
|
odoo/addons/account_statement_import_sheet_file/readme/CONTRIBUTORS.md,sha256=Xuy8w1BQ1Nh6eVxGLjqVWXlzIMK7EAGf3whVsycey_Q,535
|
|
20
20
|
odoo/addons/account_statement_import_sheet_file/readme/DESCRIPTION.md,sha256=VFlOJ-nljwNW6S9uaZVNb_x6Gw1P0FLr6gHcV2-dHk4,86
|
|
@@ -22,7 +22,7 @@ odoo/addons/account_statement_import_sheet_file/readme/HISTORY.md,sha256=7y-Qd00
|
|
|
22
22
|
odoo/addons/account_statement_import_sheet_file/readme/USAGE.md,sha256=KcCNrSS7xVkRrpqfoZoL6VVkysu1dpOgRRNTfn2QH0c,190
|
|
23
23
|
odoo/addons/account_statement_import_sheet_file/security/ir.model.access.csv,sha256=ofB5jVirJJ3FQ-uWfKFD-DIg8Lh9bYLaUDQWnb9MkgM,685
|
|
24
24
|
odoo/addons/account_statement_import_sheet_file/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
25
|
-
odoo/addons/account_statement_import_sheet_file/static/description/index.html,sha256=
|
|
25
|
+
odoo/addons/account_statement_import_sheet_file/static/description/index.html,sha256=myWqrK7VSDhGAGNfETV4aPcHRq_RQI0H_BMrt4ZWLgc,15710
|
|
26
26
|
odoo/addons/account_statement_import_sheet_file/tests/__init__.py,sha256=f7vTpmONnfbbcMp5wZ1p7muSkyLC2vcDONaw2VGyiBw,121
|
|
27
27
|
odoo/addons/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py,sha256=qLDrS6cmMQZnh1yKkuhToFD1vKXr19s33Rb-TDKPRUY,31320
|
|
28
28
|
odoo/addons/account_statement_import_sheet_file/tests/fixtures/balance.csv,sha256=-7VrGM_IbKhOJzbX-bUMIsnd99uDIBkalTytlj2jVtk,209
|
|
@@ -44,8 +44,8 @@ odoo/addons/account_statement_import_sheet_file/tests/fixtures/sample_statement_
|
|
|
44
44
|
odoo/addons/account_statement_import_sheet_file/tests/fixtures/sample_statement_offsets.xlsx,sha256=zfuCnPrKeXQmZ3VV3FgdMY59ZDt7WOQx5PYNchNbUp0,5993
|
|
45
45
|
odoo/addons/account_statement_import_sheet_file/views/account_journal_views.xml,sha256=h3A5JmNGunmCybjD_Gx_v6PghhHy0TOqos3Bu5PHhTk,594
|
|
46
46
|
odoo/addons/account_statement_import_sheet_file/views/account_statement_import.xml,sha256=KhgiMxHjI5tq1RlkmDYOhejqrxN4mXLc5nT9EM9gQ5s,842
|
|
47
|
-
odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml,sha256=
|
|
48
|
-
odoo_addon_account_statement_import_sheet_file-17.0.1.1.
|
|
49
|
-
odoo_addon_account_statement_import_sheet_file-17.0.1.1.
|
|
50
|
-
odoo_addon_account_statement_import_sheet_file-17.0.1.1.
|
|
51
|
-
odoo_addon_account_statement_import_sheet_file-17.0.1.1.
|
|
47
|
+
odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml,sha256=QiL4psn7CLxbbNE01mpkDDghoKs6AsSVx3pFSuA8Klk,6418
|
|
48
|
+
odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info/METADATA,sha256=Wz6MY4gBW3Yf_dRLo8v9O62rT_mZpMww5RhVtilskXs,5465
|
|
49
|
+
odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
50
|
+
odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
51
|
+
odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info/RECORD,,
|