diff --git a/import_bank_statement_odoo/README.rst b/import_bank_statement_odoo/README.rst
new file mode 100644
index 000000000..229ab7349
--- /dev/null
+++ b/import_bank_statement_odoo/README.rst
@@ -0,0 +1,50 @@
+.. image:: https://img.shields.io/badge/license-LGPL--3-green.svg
+ :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html
+ :alt: License: LGPL-3
+
+Import Bank Statement
+=====================
+This module import bank statement in CSV, XLSX, OFX and QIF format.
+
+Configuration
+=============
+- www.odoo.com/documentation/16.0/setup/install.html
+- Install our custom addon
+- Install openpyxl, ofxparse, qifparse
+
+Company
+-------
+* `Cybrosys Techno Solutions `__
+
+License
+-------
+General Public License, Version 3 (LGPL v3).
+(https://www.gnu.org/licenses/lgpl-3.0-standalone.html)
+
+Credits
+-------
+Developer: (V16) Sruthi Renjith,
+ (V17)Akhil Ashok,
+ Contact: odoo@cybrosys.com
+
+Contacts
+--------
+* Mail Contact : odoo@cybrosys.com
+* Website : https://cybrosys.com
+
+Bug Tracker
+-----------
+Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported.
+
+Maintainer
+==========
+.. image:: https://cybrosys.com/images/logo.png
+ :target: https://cybrosys.com
+
+This module is maintained by Cybrosys Technologies.
+
+For support and more information, please visit `Our Website `__
+
+Further information
+===================
+HTML Description: ``__
diff --git a/import_bank_statement_odoo/__init__.py b/import_bank_statement_odoo/__init__.py
new file mode 100755
index 000000000..e6dcffccf
--- /dev/null
+++ b/import_bank_statement_odoo/__init__.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Akhil Ashok (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+###############################################################################
+from .import models
+from . import wizard
diff --git a/import_bank_statement_odoo/__manifest__.py b/import_bank_statement_odoo/__manifest__.py
new file mode 100755
index 000000000..03bf71091
--- /dev/null
+++ b/import_bank_statement_odoo/__manifest__.py
@@ -0,0 +1,45 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Akhil Ashok (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+###############################################################################
+{
+ 'name': 'Import Bank Statement',
+ 'version': '17.0.1.0.0',
+ 'category': 'Accounting',
+ 'summary': 'Import bank statement in CSV, XLSX, QIF and OFX format',
+ 'description': """Uploading the data in CSV, XLSX, OFX and QIF format and
+ converting it into bank statement""",
+ 'author': "Cybrosys Techno Solutions",
+ 'company': 'Cybrosys Techno Solutions',
+ 'maintainer': 'Cybrosys Techno Solutions',
+ 'website': "https://www.cybrosys.com",
+ 'depends': ['base', 'base_accounting_kit'],
+ 'data': ['security/ir.model.access.csv',
+ 'views/account_journal_views.xml',
+ 'wizard/import_bank_statement_views.xml'],
+ 'external_dependencies': {
+ 'python': ['openpyxl', 'ofxparse']
+ },
+ 'images': ['static/description/banner.jpg'],
+ 'license': 'LGPL-3',
+ 'installable': True,
+ 'auto_install': False,
+ 'application': False,
+}
diff --git a/import_bank_statement_odoo/doc/RELEASE_NOTES.md b/import_bank_statement_odoo/doc/RELEASE_NOTES.md
new file mode 100644
index 000000000..529a246d7
--- /dev/null
+++ b/import_bank_statement_odoo/doc/RELEASE_NOTES.md
@@ -0,0 +1,5 @@
+## Module
+#### 06.02.2024
+#### Version 17.0.1.0.0
+#### ADD
+- Initial commit for Import Bank Statement
diff --git a/import_bank_statement_odoo/models/__init__.py b/import_bank_statement_odoo/models/__init__.py
new file mode 100755
index 000000000..8e435956a
--- /dev/null
+++ b/import_bank_statement_odoo/models/__init__.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Akhil Ashok (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+###############################################################################
+from . import account_journal
diff --git a/import_bank_statement_odoo/models/account_journal.py b/import_bank_statement_odoo/models/account_journal.py
new file mode 100644
index 000000000..2494cb4f5
--- /dev/null
+++ b/import_bank_statement_odoo/models/account_journal.py
@@ -0,0 +1,39 @@
+# -*- coding: utf-8 -*-
+###############################################################################
+#
+# Cybrosys Technologies Pvt. Ltd.
+#
+# Copyright (C) 2024-TODAY Cybrosys Technologies()
+# Author: Akhil Ashok (odoo@cybrosys.com)
+#
+# You can modify it under the terms of the GNU LESSER
+# GENERAL PUBLIC LICENSE (LGPL v3), Version 3.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details.
+#
+# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
+# (LGPL v3) along with this program.
+# If not, see .
+#
+###############################################################################
+from odoo import models
+
+
+class AccountJournal(models.Model):
+ """ To show the wizard to upload files """
+ _inherit = "account.journal"
+
+ def action_import_wizard(self):
+ """Function to open wizard"""
+ return {
+ 'type': 'ir.actions.act_window',
+ 'view_mode': 'form',
+ 'res_model': 'import.bank.statement',
+ 'target': 'new',
+ 'context': {
+ 'default_journal_id': self.id,
+ }
+ }
diff --git a/import_bank_statement_odoo/security/ir.model.access.csv b/import_bank_statement_odoo/security/ir.model.access.csv
new file mode 100755
index 000000000..1bf3f80b7
--- /dev/null
+++ b/import_bank_statement_odoo/security/ir.model.access.csv
@@ -0,0 +1,2 @@
+id,name,model_id/id,group_id/id,perm_read,perm_write,perm_create,perm_unlink
+access_import_bank_statement_user,access.import.bank.statement.user,model_import_bank_statement,base.group_user,1,1,1,1
diff --git a/import_bank_statement_odoo/static/description/assets/icons/cogs.png b/import_bank_statement_odoo/static/description/assets/icons/cogs.png
new file mode 100755
index 000000000..95d0bad62
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/cogs.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/consultation.png b/import_bank_statement_odoo/static/description/assets/icons/consultation.png
new file mode 100755
index 000000000..8319d4baa
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/consultation.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/ecom-black.png b/import_bank_statement_odoo/static/description/assets/icons/ecom-black.png
new file mode 100755
index 000000000..a9385ff13
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/ecom-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/education-black.png b/import_bank_statement_odoo/static/description/assets/icons/education-black.png
new file mode 100755
index 000000000..3eb09b27b
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/education-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/hotel-black.png b/import_bank_statement_odoo/static/description/assets/icons/hotel-black.png
new file mode 100755
index 000000000..130f613be
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/hotel-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/license.png b/import_bank_statement_odoo/static/description/assets/icons/license.png
new file mode 100755
index 000000000..a5869797e
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/license.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/lifebuoy.png b/import_bank_statement_odoo/static/description/assets/icons/lifebuoy.png
new file mode 100755
index 000000000..658d56ccc
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/lifebuoy.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/manufacturing-black.png b/import_bank_statement_odoo/static/description/assets/icons/manufacturing-black.png
new file mode 100755
index 000000000..697eb0e9f
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/manufacturing-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/pos-black.png b/import_bank_statement_odoo/static/description/assets/icons/pos-black.png
new file mode 100755
index 000000000..97c0f90c1
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/pos-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/puzzle.png b/import_bank_statement_odoo/static/description/assets/icons/puzzle.png
new file mode 100755
index 000000000..65cf854e7
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/puzzle.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/restaurant-black.png b/import_bank_statement_odoo/static/description/assets/icons/restaurant-black.png
new file mode 100755
index 000000000..4a35eb939
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/restaurant-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/service-black.png b/import_bank_statement_odoo/static/description/assets/icons/service-black.png
new file mode 100755
index 000000000..301ab51cb
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/service-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/trading-black.png b/import_bank_statement_odoo/static/description/assets/icons/trading-black.png
new file mode 100755
index 000000000..9398ba2f1
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/trading-black.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/training.png b/import_bank_statement_odoo/static/description/assets/icons/training.png
new file mode 100755
index 000000000..884ca024d
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/training.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/update.png b/import_bank_statement_odoo/static/description/assets/icons/update.png
new file mode 100755
index 000000000..ecbc5a01a
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/update.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/user.png b/import_bank_statement_odoo/static/description/assets/icons/user.png
new file mode 100755
index 000000000..6ffb23d9f
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/user.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/icons/wrench.png b/import_bank_statement_odoo/static/description/assets/icons/wrench.png
new file mode 100755
index 000000000..6c04dea0f
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/icons/wrench.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/Cybrosys R.png b/import_bank_statement_odoo/static/description/assets/misc/Cybrosys R.png
new file mode 100644
index 000000000..da4058087
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/Cybrosys R.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/categories.png b/import_bank_statement_odoo/static/description/assets/misc/categories.png
new file mode 100755
index 000000000..bedf1e0b1
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/categories.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/check-box.png b/import_bank_statement_odoo/static/description/assets/misc/check-box.png
new file mode 100755
index 000000000..42caf24b9
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/check-box.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/compass.png b/import_bank_statement_odoo/static/description/assets/misc/compass.png
new file mode 100755
index 000000000..d5fed8faa
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/compass.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/config.png b/import_bank_statement_odoo/static/description/assets/misc/config.png
new file mode 100755
index 000000000..71915e76c
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/config.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/corporate.png b/import_bank_statement_odoo/static/description/assets/misc/corporate.png
new file mode 100755
index 000000000..2eb13edbf
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/corporate.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/customer-support.png b/import_bank_statement_odoo/static/description/assets/misc/customer-support.png
new file mode 100755
index 000000000..79efc72ed
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/customer-support.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/features.png b/import_bank_statement_odoo/static/description/assets/misc/features.png
new file mode 100755
index 000000000..b41769f77
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/features.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/logo.png b/import_bank_statement_odoo/static/description/assets/misc/logo.png
new file mode 100644
index 000000000..cc3cc0ccf
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/logo.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/pictures.png b/import_bank_statement_odoo/static/description/assets/misc/pictures.png
new file mode 100755
index 000000000..56d255fe9
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/pictures.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/pie-chart.png b/import_bank_statement_odoo/static/description/assets/misc/pie-chart.png
new file mode 100755
index 000000000..426e05244
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/pie-chart.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/right-arrow.png b/import_bank_statement_odoo/static/description/assets/misc/right-arrow.png
new file mode 100755
index 000000000..730984a06
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/right-arrow.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/star.png b/import_bank_statement_odoo/static/description/assets/misc/star.png
new file mode 100755
index 000000000..2eb9ab29f
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/star.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/support.png b/import_bank_statement_odoo/static/description/assets/misc/support.png
new file mode 100755
index 000000000..4f18b8b82
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/support.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/misc/whatsapp.png b/import_bank_statement_odoo/static/description/assets/misc/whatsapp.png
new file mode 100755
index 000000000..d513a5356
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/misc/whatsapp.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/1.gif b/import_bank_statement_odoo/static/description/assets/modules/1.gif
new file mode 100644
index 000000000..ae3a880a2
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/1.gif differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/1.png b/import_bank_statement_odoo/static/description/assets/modules/1.png
new file mode 100644
index 000000000..d0f36b007
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/1.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/2.png b/import_bank_statement_odoo/static/description/assets/modules/2.png
new file mode 100644
index 000000000..8513873ea
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/2.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/3.png b/import_bank_statement_odoo/static/description/assets/modules/3.png
new file mode 100644
index 000000000..cb17cf612
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/3.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/4.jpg b/import_bank_statement_odoo/static/description/assets/modules/4.jpg
new file mode 100644
index 000000000..67c7f7062
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/4.jpg differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/5.jpg b/import_bank_statement_odoo/static/description/assets/modules/5.jpg
new file mode 100644
index 000000000..5141a7802
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/5.jpg differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/6.png b/import_bank_statement_odoo/static/description/assets/modules/6.png
new file mode 100644
index 000000000..0e311ca87
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/6.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/l2.png b/import_bank_statement_odoo/static/description/assets/modules/l2.png
new file mode 100644
index 000000000..f40a0756d
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/l2.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/l3.png b/import_bank_statement_odoo/static/description/assets/modules/l3.png
new file mode 100644
index 000000000..5738a486e
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/l3.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/l4.png b/import_bank_statement_odoo/static/description/assets/modules/l4.png
new file mode 100644
index 000000000..8d99e8c68
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/l4.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/l5.png b/import_bank_statement_odoo/static/description/assets/modules/l5.png
new file mode 100644
index 000000000..3415917c2
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/l5.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/modules/l6.png b/import_bank_statement_odoo/static/description/assets/modules/l6.png
new file mode 100644
index 000000000..c7ea331ee
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/modules/l6.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/bank_statements.png b/import_bank_statement_odoo/static/description/assets/screenshots/bank_statements.png
new file mode 100644
index 000000000..516db83cc
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/screenshots/bank_statements.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/hero.gif b/import_bank_statement_odoo/static/description/assets/screenshots/hero.gif
new file mode 100644
index 000000000..8ec6d459d
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/screenshots/hero.gif differ
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/import_button.png b/import_bank_statement_odoo/static/description/assets/screenshots/import_button.png
new file mode 100644
index 000000000..6db735354
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/screenshots/import_button.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/import_wizard.png b/import_bank_statement_odoo/static/description/assets/screenshots/import_wizard.png
new file mode 100644
index 000000000..2b5c10c57
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/screenshots/import_wizard.png differ
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/statement.csv b/import_bank_statement_odoo/static/description/assets/screenshots/statement.csv
new file mode 100644
index 000000000..04ca33a35
--- /dev/null
+++ b/import_bank_statement_odoo/static/description/assets/screenshots/statement.csv
@@ -0,0 +1,3 @@
+Account name,Amount,Amount in Currency,Date,Partner,Running Balance
+Bank-2023-04-14/1,2000,,2023-04-14,Deco Addict,10044.87
+Bank-2023-04-21/2,1000,,2023-03-20,Ready Mat,10044.8
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/statement.ofx b/import_bank_statement_odoo/static/description/assets/screenshots/statement.ofx
new file mode 100644
index 000000000..d246b13e5
--- /dev/null
+++ b/import_bank_statement_odoo/static/description/assets/screenshots/statement.ofx
@@ -0,0 +1,65 @@
+OFXHEADER:100
+DATA:OFXSGML
+VERSION:102
+SECURITY:NONE
+ENCODING:USASCII
+CHARSET:1252
+COMPRESSION:NONE
+OLDFILEUID:NONE
+NEWFILEUID:NONE
+
+
+
+
+
+ 0
+ INFO
+
+ 20230419
+ ENG
+
+ BANK123
+
+
+
+
+
+ 1234567890
+
+ 0
+ INFO
+
+
+ USD
+
+ Bank-2023-04-14/1
+ 1234567890
+ CHECKING
+
+
+ 20220101
+ 20220131
+
+ DEBIT
+ 20230419
+ -3000.00
+ 1234567890-20220102-1
+ Deco Addict
+
+
+ CREDIT
+ 20220115
+ 1000.00
+ 1234567890-20220115-1
+ Ready Mat
+
+
+
+ 10044.87
+ 20220131
+
+
+
+
+
+
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/statement.qif b/import_bank_statement_odoo/static/description/assets/screenshots/statement.qif
new file mode 100644
index 000000000..837d2fc4f
--- /dev/null
+++ b/import_bank_statement_odoo/static/description/assets/screenshots/statement.qif
@@ -0,0 +1,15 @@
+!Type:Bank
+D14/04/2023
+T2000.00
+PBank-2023-02-11/1
+^
+!Type:Bank
+D09/04/2023
+T-500.00
+PBank-2023-04-09/2
+^
+!Type:Bank
+D19/06/2022
+T1000.00
+PBank-2023-04-21/3
+^
diff --git a/import_bank_statement_odoo/static/description/assets/screenshots/statement.xlsx b/import_bank_statement_odoo/static/description/assets/screenshots/statement.xlsx
new file mode 100644
index 000000000..56af415c8
Binary files /dev/null and b/import_bank_statement_odoo/static/description/assets/screenshots/statement.xlsx differ
diff --git a/import_bank_statement_odoo/static/description/banner.jpg b/import_bank_statement_odoo/static/description/banner.jpg
new file mode 100644
index 000000000..33e51014e
Binary files /dev/null and b/import_bank_statement_odoo/static/description/banner.jpg differ
diff --git a/import_bank_statement_odoo/static/description/icon.png b/import_bank_statement_odoo/static/description/icon.png
new file mode 100644
index 000000000..50650ab9c
Binary files /dev/null and b/import_bank_statement_odoo/static/description/icon.png differ
diff --git a/import_bank_statement_odoo/static/description/index.html b/import_bank_statement_odoo/static/description/index.html
new file mode 100755
index 000000000..87be8f632
--- /dev/null
+++ b/import_bank_statement_odoo/static/description/index.html
@@ -0,0 +1,673 @@
+
+
+
+
+
+ Odoo App 3 Index
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Community
+
+
+
+
+
+
+
+ Import Bank Statement
+
+ Import Bank Statement in csv, xlsx, ofx and qif File Format.
+
+ After importing the file user can view the statements that imported.
+ (The example format for csv, xlsx, ofx and qif are added in screenshots folder in the module.)