odoo-addon-account-statement-import-sheet-file 17.0.1.1.1__py3-none-any.whl → 18.0.1.0.0.3__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.
Potentially problematic release.
This version of odoo-addon-account-statement-import-sheet-file might be problematic. Click here for more details.
- odoo/addons/account_statement_import_sheet_file/README.rst +6 -6
- odoo/addons/account_statement_import_sheet_file/__manifest__.py +2 -2
- odoo/addons/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot +7 -17
- odoo/addons/account_statement_import_sheet_file/models/account_statement_import.py +2 -2
- odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py +7 -5
- odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py +30 -43
- odoo/addons/account_statement_import_sheet_file/static/description/index.html +4 -4
- odoo/addons/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py +118 -397
- odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml +10 -11
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.1.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info}/METADATA +11 -12
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.1.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info}/RECORD +13 -13
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.1.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info}/WHEEL +1 -1
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.1.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info}/top_level.txt +0 -0
odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
<field name="name">account.statement.import.sheet.mapping.form</field>
|
|
10
10
|
<field name="model">account.statement.import.sheet.mapping</field>
|
|
11
11
|
<field name="arch" type="xml">
|
|
12
|
-
<
|
|
12
|
+
<list>
|
|
13
13
|
<field name="name" />
|
|
14
|
-
</
|
|
14
|
+
</list>
|
|
15
15
|
</field>
|
|
16
16
|
</record>
|
|
17
17
|
<record id="account_statement_import_sheet_mapping_tree" model="ir.ui.view">
|
|
@@ -45,10 +45,11 @@
|
|
|
45
45
|
class="alert alert-warning"
|
|
46
46
|
role="alert"
|
|
47
47
|
invisible="not no_header"
|
|
48
|
+
colspan="2"
|
|
48
49
|
>
|
|
49
|
-
<span
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
<span class="fa fa-info-circle">
|
|
51
|
+
indicate the column number in the Columns section. The first column is 0.
|
|
52
|
+
</span>
|
|
52
53
|
</div>
|
|
53
54
|
</group>
|
|
54
55
|
<group invisible="not debit_credit_column">
|
|
@@ -65,11 +66,9 @@
|
|
|
65
66
|
<group string="Columns">
|
|
66
67
|
<group colspan="2" col="2">
|
|
67
68
|
<div class="alert alert-info" role="alert" colspan="2">
|
|
68
|
-
<span
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
You can concatenate multiple columns in the file into the same field, indicating the
|
|
72
|
-
column names or numbers separated by comma.
|
|
69
|
+
<span class="fa fa-info-circle">
|
|
70
|
+
Add the column names or column number (when the file has no header). You can concatenate multiple columns in the file into the same field, indicating the column names or numbers separated by comma.
|
|
71
|
+
</span>
|
|
73
72
|
</div>
|
|
74
73
|
</group>
|
|
75
74
|
<group>
|
|
@@ -120,7 +119,7 @@
|
|
|
120
119
|
>
|
|
121
120
|
<field name="name">Statement Sheet Mappings</field>
|
|
122
121
|
<field name="res_model">account.statement.import.sheet.mapping</field>
|
|
123
|
-
<field name="view_mode">
|
|
122
|
+
<field name="view_mode">list,form</field>
|
|
124
123
|
</record>
|
|
125
124
|
<menuitem
|
|
126
125
|
id="menu_statement_import_sheet_mapping"
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-account_statement_import_sheet_file
|
|
3
|
-
Version:
|
|
3
|
+
Version: 18.0.1.0.0.3
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
|
-
Requires-Dist:
|
|
6
|
-
Requires-Dist: odoo
|
|
7
|
-
Requires-Dist: odoo>=17.0a,<17.1dev
|
|
8
|
-
Requires-Dist: xlrd
|
|
5
|
+
Requires-Dist: odoo-addon-account_statement_import_file==18.0.*
|
|
6
|
+
Requires-Dist: odoo==18.0.*
|
|
9
7
|
Summary: Import TXT/CSV or XLSX files as Bank Statements in Odoo
|
|
10
8
|
Home-page: https://github.com/OCA/bank-statement-import
|
|
11
9
|
License: AGPL-3
|
|
@@ -13,8 +11,9 @@ Author: ForgeFlow, CorporateHub, Odoo Community Association (OCA)
|
|
|
13
11
|
Author-email: support@odoo-community.org
|
|
14
12
|
Classifier: Programming Language :: Python
|
|
15
13
|
Classifier: Framework :: Odoo
|
|
16
|
-
Classifier: Framework :: Odoo ::
|
|
14
|
+
Classifier: Framework :: Odoo :: 18.0
|
|
17
15
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
16
|
+
Description-Content-Type: text/x-rst
|
|
18
17
|
|
|
19
18
|
.. image:: https://odoo-community.org/readme-banner-image
|
|
20
19
|
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
@@ -29,7 +28,7 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
29
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
30
29
|
!! changes will be overwritten. !!
|
|
31
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
32
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:7f262d73d39b721a7fe36fc8279b95fed86757391be9ea917e3f13ee9f4cd83f
|
|
33
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
34
33
|
|
|
35
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -39,13 +38,13 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
39
38
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
40
39
|
:alt: License: AGPL-3
|
|
41
40
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
|
|
42
|
-
:target: https://github.com/OCA/bank-statement-import/tree/
|
|
41
|
+
:target: https://github.com/OCA/bank-statement-import/tree/18.0/account_statement_import_sheet_file
|
|
43
42
|
:alt: OCA/bank-statement-import
|
|
44
43
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
45
|
-
:target: https://translation.odoo-community.org/projects/bank-statement-import-
|
|
44
|
+
:target: https://translation.odoo-community.org/projects/bank-statement-import-18-0/bank-statement-import-18-0-account_statement_import_sheet_file
|
|
46
45
|
:alt: Translate me on Weblate
|
|
47
46
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
48
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&target_branch=
|
|
47
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&target_branch=18.0
|
|
49
48
|
:alt: Try me on Runboat
|
|
50
49
|
|
|
51
50
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
@@ -94,7 +93,7 @@ Bug Tracker
|
|
|
94
93
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_.
|
|
95
94
|
In case of trouble, please check there if your issue has already been reported.
|
|
96
95
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
97
|
-
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_sheet_file%0Aversion:%
|
|
96
|
+
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_sheet_file%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
98
97
|
|
|
99
98
|
Do not contact contributors directly about support or help with technical issues.
|
|
100
99
|
|
|
@@ -151,6 +150,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
|
151
150
|
|
|
152
151
|
|maintainer-alexey-pelykh|
|
|
153
152
|
|
|
154
|
-
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/
|
|
153
|
+
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/18.0/account_statement_import_sheet_file>`_ project on GitHub.
|
|
155
154
|
|
|
156
155
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
odoo/addons/account_statement_import_sheet_file/README.rst,sha256=
|
|
1
|
+
odoo/addons/account_statement_import_sheet_file/README.rst,sha256=NLjf-miy43diFV2hojRbkYSQWievJicb-tUDrC66DAg,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=xe37vMJSf3o6LAz0Ef8kx-4l87kJKhTNQPz1JIxeDEk,916
|
|
4
4
|
odoo/addons/account_statement_import_sheet_file/data/map_data.xml,sha256=nz_4CchVMF9pb_SI4I6UZAt2IBPxWapX37lU6J6sTJ0,1225
|
|
5
|
-
odoo/addons/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot,sha256=
|
|
5
|
+
odoo/addons/account_statement_import_sheet_file/i18n/account_statement_import_sheet_file.pot,sha256=AG8U1aMzt3a_sNYVvXW1WkVZzOvffjBh-hS3zLi_ddI,27095
|
|
6
6
|
odoo/addons/account_statement_import_sheet_file/i18n/es.po,sha256=AZXEocNT6Gp7W8ZpanJ0MENVamkH-nXANZtiu7Y_fB4,32246
|
|
7
7
|
odoo/addons/account_statement_import_sheet_file/i18n/es_AR.po,sha256=HWVBRxFW7P1g2XunUS8wCyYW9mg0opw-IB8VvTK_mqY,30982
|
|
8
8
|
odoo/addons/account_statement_import_sheet_file/i18n/it.po,sha256=B0Ig2xRyLqgGOMvgpI-bYRbjC78PMLs0c3OfSgM4ec8,32323
|
|
@@ -12,9 +12,9 @@ odoo/addons/account_statement_import_sheet_file/i18n/tr.po,sha256=ywXWa4dSz1J2IZ
|
|
|
12
12
|
odoo/addons/account_statement_import_sheet_file/i18n/zh_CN.po,sha256=AdXlAUPY3-6Gv6TNrB-xrX6if5c2Os8XQWBFb677FBA,30449
|
|
13
13
|
odoo/addons/account_statement_import_sheet_file/models/__init__.py,sha256=RsEvd89lQS7V0Mlk6D6FAWyOMDRd8YD0d9i4Xc-XcDo,240
|
|
14
14
|
odoo/addons/account_statement_import_sheet_file/models/account_journal.py,sha256=F4_deAvNErZ6o1gkw9uhDrEnHyWXUKNvk09mzCVzTIw,562
|
|
15
|
-
odoo/addons/account_statement_import_sheet_file/models/account_statement_import.py,sha256=
|
|
16
|
-
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py,sha256=
|
|
17
|
-
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py,sha256=
|
|
15
|
+
odoo/addons/account_statement_import_sheet_file/models/account_statement_import.py,sha256=_RibEjJfF5XAOJf_4MdXPI39txZTZquMbzHpIwN3gTU,1938
|
|
16
|
+
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_mapping.py,sha256=PUyVDYKQ5SrdkJvwSSA1ojGuJ_CIRYRSWx5Yl-fi7j0,9387
|
|
17
|
+
odoo/addons/account_statement_import_sheet_file/models/account_statement_import_sheet_parser.py,sha256=ltRx35KSi4AYdJzJnax64pYTdhWVBY9msad0hIgws10,18171
|
|
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,9 +22,9 @@ 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=3M0Pout0EW82MDmzaiAJ7u8uTHrfK0f0OmSTZJrYHE4,15710
|
|
26
26
|
odoo/addons/account_statement_import_sheet_file/tests/__init__.py,sha256=f7vTpmONnfbbcMp5wZ1p7muSkyLC2vcDONaw2VGyiBw,121
|
|
27
|
-
odoo/addons/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py,sha256=
|
|
27
|
+
odoo/addons/account_statement_import_sheet_file/tests/test_account_statement_import_sheet_file.py,sha256=OyuPUp97y4CvDrhj14rQYij90kNB-hIBmgoQibsDzqA,20503
|
|
28
28
|
odoo/addons/account_statement_import_sheet_file/tests/fixtures/balance.csv,sha256=-7VrGM_IbKhOJzbX-bUMIsnd99uDIBkalTytlj2jVtk,209
|
|
29
29
|
odoo/addons/account_statement_import_sheet_file/tests/fixtures/debit_credit.csv,sha256=AaVQ9G5gqsLhxtAsYXCmFCTxpBPonKA1uxy7ue5gYYE,223
|
|
30
30
|
odoo/addons/account_statement_import_sheet_file/tests/fixtures/debit_credit_amount.csv,sha256=y-VoBcF_7WaUZhnmOqSuCv7ElCKSHRbsqKWpCH49Ams,369
|
|
@@ -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-
|
|
49
|
-
odoo_addon_account_statement_import_sheet_file-
|
|
50
|
-
odoo_addon_account_statement_import_sheet_file-
|
|
51
|
-
odoo_addon_account_statement_import_sheet_file-
|
|
47
|
+
odoo/addons/account_statement_import_sheet_file/views/account_statement_import_sheet_mapping.xml,sha256=6tJov8VP3muFCbYv-qnZYNaRKgXntJlmdgPHCe9cSbI,6366
|
|
48
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info/METADATA,sha256=wgXC10iSv-KkYePQnvAmbWKN242J_U2YuC2wL4u22Z8,5406
|
|
49
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
50
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
51
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.3.dist-info/RECORD,,
|