odoo-addon-account-statement-import-sheet-file 17.0.1.1.2__py3-none-any.whl → 18.0.1.0.0.4__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 -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/i18n/tr.po +10 -10
- 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 +13 -14
- 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 +9 -11
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info}/METADATA +10 -12
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info}/RECORD +14 -14
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info}/WHEEL +0 -0
- {odoo_addon_account_statement_import_sheet_file-17.0.1.1.2.dist-info → odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.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">
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
invisible="not no_header"
|
|
48
48
|
colspan="2"
|
|
49
49
|
>
|
|
50
|
-
<span
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
<span class="fa fa-info-circle">
|
|
51
|
+
indicate the column number in the Columns section. The first column is 0.
|
|
52
|
+
</span>
|
|
53
53
|
</div>
|
|
54
54
|
</group>
|
|
55
55
|
<group invisible="not debit_credit_column">
|
|
@@ -66,11 +66,9 @@
|
|
|
66
66
|
<group string="Columns">
|
|
67
67
|
<group colspan="2" col="2">
|
|
68
68
|
<div class="alert alert-info" role="alert" colspan="2">
|
|
69
|
-
<span
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
You can concatenate multiple columns in the file into the same field, indicating the
|
|
73
|
-
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>
|
|
74
72
|
</div>
|
|
75
73
|
</group>
|
|
76
74
|
<group>
|
|
@@ -121,7 +119,7 @@
|
|
|
121
119
|
>
|
|
122
120
|
<field name="name">Statement Sheet Mappings</field>
|
|
123
121
|
<field name="res_model">account.statement.import.sheet.mapping</field>
|
|
124
|
-
<field name="view_mode">
|
|
122
|
+
<field name="view_mode">list,form</field>
|
|
125
123
|
</record>
|
|
126
124
|
<menuitem
|
|
127
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.4
|
|
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,7 +11,7 @@ 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
|
|
18
16
|
Description-Content-Type: text/x-rst
|
|
19
17
|
|
|
@@ -30,7 +28,7 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
30
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
31
29
|
!! changes will be overwritten. !!
|
|
32
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
33
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:7f262d73d39b721a7fe36fc8279b95fed86757391be9ea917e3f13ee9f4cd83f
|
|
34
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
35
33
|
|
|
36
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -40,13 +38,13 @@ Bank Statement TXT/CSV/XLSX Import
|
|
|
40
38
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
41
39
|
:alt: License: AGPL-3
|
|
42
40
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github
|
|
43
|
-
: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
|
|
44
42
|
:alt: OCA/bank-statement-import
|
|
45
43
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
46
|
-
: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
|
|
47
45
|
:alt: Translate me on Weblate
|
|
48
46
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
49
|
-
: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
|
|
50
48
|
:alt: Try me on Runboat
|
|
51
49
|
|
|
52
50
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
@@ -95,7 +93,7 @@ Bug Tracker
|
|
|
95
93
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_.
|
|
96
94
|
In case of trouble, please check there if your issue has already been reported.
|
|
97
95
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
98
|
-
`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**>`_.
|
|
99
97
|
|
|
100
98
|
Do not contact contributors directly about support or help with technical issues.
|
|
101
99
|
|
|
@@ -152,6 +150,6 @@ Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
|
152
150
|
|
|
153
151
|
|maintainer-alexey-pelykh|
|
|
154
152
|
|
|
155
|
-
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.
|
|
156
154
|
|
|
157
155
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -1,20 +1,20 @@
|
|
|
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
|
|
9
9
|
odoo/addons/account_statement_import_sheet_file/i18n/nl.po,sha256=fSlXjDI2lvODK-PzlwiEFa8zww1_GqtgANMSLriHxD8,28131
|
|
10
10
|
odoo/addons/account_statement_import_sheet_file/i18n/pt.po,sha256=fC01rVr5XDk5p6eWc11HG4PLve_I2u1uhNxT0vv9Is4,27612
|
|
11
|
-
odoo/addons/account_statement_import_sheet_file/i18n/tr.po,sha256=
|
|
11
|
+
odoo/addons/account_statement_import_sheet_file/i18n/tr.po,sha256=L5Q939Dn-1-E-Y9TBCPplqkmyXrEOuvguZfgNohw7a0,31518
|
|
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.4.dist-info/METADATA,sha256=fRrHa9HwKaWsgGpVjWLhr9Vvy_ymsDnoSHAPjfSMqtc,5406
|
|
49
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
50
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
51
|
+
odoo_addon_account_statement_import_sheet_file-18.0.1.0.0.4.dist-info/RECORD,,
|
|
File without changes
|