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. +

+
+ +
+
+
+
+
+

+ Key Highlights +

+
+
+
+
+
+ +
+
+

+ Import CSV File Format.

+
+
+
+
+
+
+ +
+
+

+ Import XLSX File Format.

+
+
+
+
+
+
+
+ +
+
+

+ Import OFX File Format.

+
+
+
+
+
+
+ +
+
+

+ Import QIF File Format.

+
+
+
+
+
+ +
+
+
+
+
+ +
+
+

+ A quick option to import bank statement.

+
+
+
+
+
+
+ +
+
+

+ A wizard that allows user to upload file.

+
+
+
+
+
+
+ +
+
+

+ 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.)

+
+
+
+
+
+
+
    +
  • + Import CSV File Format. +
  • +
  • + Import XLSX File Format. +
  • +
  • + Import OFX File Format. +
  • +
  • + Import QIF File Format. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:6th Feb 2024 +
+

+ Initial commit for Import Bank Statement

+
+
+
+
+
+
+
+

+ Related Products

+
+
+ +
+
+

+ Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire + Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo + Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo + Licensing Consultancy

+
+
+
+
+
+
+

+ Our Industries

+ +
+
+
+
+
+
+ +

Trading

+

Easily procure and sell your products

+
+
+
+
+ +

POS

+

Easy configuration and convivial experience

+
+
+
+
+ +

+ Education

+

A platform for educational management

+
+
+
+
+ +

+ Manufacturing

+

Plan, track and schedule your operations

+
+
+
+
+ +

E-commerce & + Website

+

Mobile friendly, awe-inspiring product pages

+
+
+
+
+ +

Service + Management

+

Keep track of services and invoice

+
+
+
+
+ +

+ Restaurant

+

Run your bar or restaurant methodically

+
+
+
+
+ +

Hotel + Management

+

An all-inclusive hotel management application

+
+
+
+
+
+
+

+ Support

+
+
+
+
+
+
+
+ +
+ Need + Help? +

Got + questions or need help? Get in touch.

+
odoo@cybrosys.com +
+
+
+
+
+
+
+
+ +
+ WhatsApp +

Say hi to + us on WhatsApp!

+
+91 + 99456767686 +
+
+
+
+
+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/import_bank_statement_odoo/views/account_journal_views.xml b/import_bank_statement_odoo/views/account_journal_views.xml new file mode 100644 index 000000000..20e3baddd --- /dev/null +++ b/import_bank_statement_odoo/views/account_journal_views.xml @@ -0,0 +1,21 @@ + + + + + account.journal.view.kanban.inherit.import.bank.statement.odoo + account.journal + + + + + Import + + + + + + diff --git a/import_bank_statement_odoo/wizard/__init__.py b/import_bank_statement_odoo/wizard/__init__.py new file mode 100644 index 000000000..71ff7cc02 --- /dev/null +++ b/import_bank_statement_odoo/wizard/__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 import_bank_statement diff --git a/import_bank_statement_odoo/wizard/import_bank_statement.py b/import_bank_statement_odoo/wizard/import_bank_statement.py new file mode 100644 index 000000000..3df83f156 --- /dev/null +++ b/import_bank_statement_odoo/wizard/import_bank_statement.py @@ -0,0 +1,336 @@ +# -*- 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 . +# +############################################################################### +import base64 +import codecs +import openpyxl +import os +from datetime import datetime +from io import BytesIO +from odoo import fields, models, _ +from odoo.exceptions import ValidationError +from ofxparse import OfxParser +from qifparse.parser import QifParser + + +class ImportBankStatement(models.TransientModel): + """ A class to import files as bank statement """ + _name = "import.bank.statement" + _description = "Import button" + _rec_name = "file_name" + + attachment = fields.Binary(string="File", required=True, + help="Choose the file to import") + file_name = fields.Char(string="File Name", help="Name of the file") + journal_id = fields.Many2one('account.journal', string="Journal ID", + help="Journal in which the file importing") + + def action_statement_import(self): + """Function to import csv, xlsx, ofx and qif file format""" + split_tup = os.path.splitext(self.file_name) + if split_tup[1] == '.csv' or split_tup[1] == '.xlsx' or split_tup[ + 1] == '.ofx' or split_tup[1] == '.qif': + if split_tup[1] == '.csv': + # Reading csv file + try: + file = base64.b64decode(self.attachment) + file_string = file.decode('utf-8') + file_string = file_string.split('\n') + except: + raise ValidationError(_("Choose correct file")) + # Skipping the first line + firstline = True + for file_item in file_string: + if firstline: + firstline = False + continue + # Reading the content from csv file + if file_item.split(',') != ['']: + if file_item.split(',')[0] and file_item.split(',')[1] \ + and file_item.split(',')[4]: + date_obj = str(fields.date.today()) if not \ + file_item.split(',')[3] else \ + file_item.split(',')[ + 3] + transaction_date = datetime.strptime(date_obj, + "%Y-%m-%d") + partner = self.env['res.partner'].search( + [('name', '=', file_item.split(',')[4])]) + # Creating a record in account.bank.statement model + if partner: + statement = self.env[ + 'account.bank.statement'].create({ + 'name': file_item.split(',')[0], + 'line_ids': [ + (0, 0, { + 'date': transaction_date, + 'payment_ref': 'csv file', + 'partner_id': partner.id, + 'journal_id': self.journal_id.id, + 'amount': file_item.split(',')[1], + 'amount_currency': + file_item.split(',')[2], + }), + ], + }) + else: + raise ValidationError(_("Partner not exist")) + else: + if not file_item.split(',')[0]: + raise ValidationError( + _("Account name is not set")) + elif not file_item.split(',')[1]: + raise ValidationError( + _("Amount is not set")) + elif not file_item.split(',')[4]: + date_obj = str(fields.date.today()) if not \ + file_item.split(',')[3] else \ + file_item.split(',')[ + 3] + transaction_date = datetime.strptime(date_obj, + "%Y-%m-%d") + # Creating a record in account.bank.statement model + statement = self.env[ + 'account.bank.statement'].create({ + 'name': file_item.split(',')[0], + 'line_ids': [ + (0, 0, { + 'date': transaction_date, + 'payment_ref': 'csv file', + 'journal_id': self.journal_id.id, + 'amount': file_item.split(',')[ + 1], + 'amount_currency': + file_item.split(',')[2], + }), + ], + }) + return { + 'type': 'ir.actions.act_window', + 'name': 'Statements', + 'view_mode': 'tree', + 'res_model': 'account.bank.statement', + 'res_id': statement.id, + } + elif split_tup[1] == '.xlsx': + # Reading xlsx file + try: + order = openpyxl.load_workbook( + filename=BytesIO(base64.b64decode(self.attachment))) + xl_order = order.active + except: + raise ValidationError(_("Choose correct file")) + for record in xl_order.iter_rows(min_row=2, max_row=None, + min_col=None, + max_col=None, + values_only=True): + line = list(record) + # Reading the content from file + if line[0] and line[1] and line[3]: + partner = self.env['res.partner'].search( + [('name', '=', line[3])]) + date_obj = fields.date.today() if not line[2] else \ + line[2].date() + # Creating record + if partner: + statement = self.env[ + 'account.bank.statement'].create({ + 'name': line[0], + 'line_ids': [ + (0, 0, { + 'date': date_obj, + 'payment_ref': 'xlsx file', + 'partner_id': partner.id, + 'journal_id': self.journal_id.id, + 'amount': line[1], + }), + ], + }) + else: + raise ValidationError(_("Partner not exist")) + else: + if not line[0]: + raise ValidationError( + _("Account name is not set")) + elif not line[1]: + raise ValidationError( + _("Amount is not set")) + elif not line[3]: + date_obj = fields.date.today() if not line[2] else \ + line[2].date() + # Creating record + statement = self.env[ + 'account.bank.statement'].create({ + 'name': line[0], + 'line_ids': [ + (0, 0, { + 'date': date_obj, + 'payment_ref': 'xlsx file', + 'journal_id': self.journal_id.id, + 'amount': line[1], + }), + ], + }) + return { + 'type': 'ir.actions.act_window', + 'name': 'Statements', + 'view_mode': 'tree', + 'res_model': 'account.bank.statement', + 'res_id': statement.id, + } + elif split_tup[1] == '.ofx': + # Searching the path of the file + file_attachment = self.env["ir.attachment"].search( + ['|', ('res_field', '!=', False), + ('res_field', '=', False), + ('res_id', '=', self.id), + ('res_model', '=', 'import.bank.statement')], + limit=1) + file_path = file_attachment._full_path( + file_attachment.store_fname) + # Parsing the file + try: + with codecs.open(file_path) as fileobj: + ofx_file = OfxParser.parse(fileobj) + except: + raise ValidationError(_("Wrong file format")) + if not ofx_file.account: + raise ValidationError( + _("No account information found in OFX file.")) + if not ofx_file.account.statement: + raise ValidationError( + _("No statement information found in OFX file.")) + statement_list = [] + # Reading the content from file + for transaction in ofx_file.account.statement.transactions: + if transaction.type == "debit" and transaction.amount != 0: + payee = transaction.payee + amount = transaction.amount + date = transaction.date + if not date: + date = fields.date.today() + partner = self.env['res.partner'].search( + [('name', '=', payee)]) + if partner: + statement_list.append([partner.id, amount, date]) + else: + raise ValidationError(_("Partner not exist")) + if transaction.type == "credit" and transaction.amount != 0: + payee = transaction.payee + amount = transaction.amount + date = transaction.date + if not date: + date = fields.date.today() + partner = self.env['res.partner'].search( + [('name', '=', payee)]) + if partner: + statement_list.append([partner.id, amount, date]) + else: + raise ValidationError(_("Partner not exist")) + # Creating record + if statement_list: + for item in statement_list: + statement = self.env['account.bank.statement'].create({ + 'name': ofx_file.account.routing_number, + 'line_ids': [ + (0, 0, { + 'date': item[2], + 'payment_ref': 'ofx file', + 'partner_id': item[0], + 'journal_id': self.journal_id.id, + 'amount': item[1], + }), + ], + }) + return { + 'type': 'ir.actions.act_window', + 'name': 'Statements', + 'view_mode': 'tree', + 'res_model': 'account.bank.statement', + 'res_id': statement.id, + } + else: + raise ValidationError(_("There is no data to import")) + elif split_tup[1] == '.qif': + # Searching the path of qif file + file_attachment = self.env["ir.attachment"].search( + ['|', ('res_field', '!=', False), + ('res_field', '=', False), + ('res_id', '=', self.id), + ('res_model', '=', 'import.bank.statement')], + limit=1) + file_path = file_attachment._full_path( + file_attachment.store_fname) + # Parsing the qif file + try: + parser = QifParser() + with open(file_path, 'r') as qiffile: + qif = parser.parse(qiffile) + except: + raise ValidationError(_("Wrong file format")) + file_string = str(qif) + file_item = file_string.split('^') + file_item[-1] = file_item[-1].rstrip('\n') + if file_item[-1] == '': + file_item.pop() + statement_list = [] + for item in file_item: + if not item.startswith('!Type:Bank'): + item = '!Type:Bank' + item + data = item.split('\n') + # Reading the file content + date_entry = data[1][1:] + amount = float(data[2][1:]) + payee = data[3][1:] + if amount and payee: + if not date_entry: + date_entry = str(fields.date.today()) + date_object = datetime.strptime(date_entry, '%d/%m/%Y') + date = date_object.strftime('%Y-%m-%d') + statement_list.append([payee, amount, date]) + else: + if not amount: + raise ValidationError(_("Amount is not set")) + elif not payee: + raise ValidationError(_("Payee is not set")) + # Creating record + if statement_list: + for item in statement_list: + statement = self.env['account.bank.statement'].create({ + 'name': item[0], + 'line_ids': [ + (0, 0, { + 'date': item[2], + 'payment_ref': 'qif file', + 'journal_id': self.journal_id.id, + 'amount': item[1], + }), + ], + }) + return { + 'type': 'ir.actions.act_window', + 'name': 'Statements', + 'view_mode': 'tree', + 'res_model': 'account.bank.statement', + 'res_id': statement.id, + } + else: + raise ValidationError(_("Choose correct file")) diff --git a/import_bank_statement_odoo/wizard/import_bank_statement_views.xml b/import_bank_statement_odoo/wizard/import_bank_statement_views.xml new file mode 100644 index 000000000..8146f7721 --- /dev/null +++ b/import_bank_statement_odoo/wizard/import_bank_statement_views.xml @@ -0,0 +1,41 @@ + + + + + import.bank.statement.view.form + import.bank.statement + +
+ +

+

+ Upload csv or xlsx or ofx or qif file format +
+

+ + + + + + + +
+
+
+
+
+
+ + + import.bank.statement.view.action + ir.actions.act_window + import.bank.statement + form + + new + +