From 2cb6f3ec69bcceb5c226e181ddda5df890a7e56c Mon Sep 17 00:00:00 2001 From: Marc Durepos Date: Wed, 29 May 2024 10:48:48 -0400 Subject: [PATCH] Revert "bemade_odoo_partner_scrapper_js_only moved to bemade-tools" This reverts commit ca348b11a209931d2462911c11522cc0fb3b8ead. --- .../__init__.py | 1 + .../__manifest__.py | 33 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 bemade_odoo_partner_scrapper_js_only/__init__.py create mode 100644 bemade_odoo_partner_scrapper_js_only/__manifest__.py diff --git a/bemade_odoo_partner_scrapper_js_only/__init__.py b/bemade_odoo_partner_scrapper_js_only/__init__.py new file mode 100644 index 0000000..40a96af --- /dev/null +++ b/bemade_odoo_partner_scrapper_js_only/__init__.py @@ -0,0 +1 @@ +# -*- coding: utf-8 -*- diff --git a/bemade_odoo_partner_scrapper_js_only/__manifest__.py b/bemade_odoo_partner_scrapper_js_only/__manifest__.py new file mode 100644 index 0000000..5214f00 --- /dev/null +++ b/bemade_odoo_partner_scrapper_js_only/__manifest__.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +{ + 'name': 'Bemade Odoo Partner Scrapper JS Only', + 'version': '17.0.1.0.0', + 'category': 'Administration', + 'summary': 'Module for scraping partners from odoo.com.', + 'description': """ + This module enables the scraping of partners from odoo.com. It allows for the collection and management of partner contact information. + + Main Features: + * Automatically scrape partners from odoo.com. + * Extracts partner name, website, and contact information. + * Manage contact information of partners. + """, + 'license': 'GPL-3', + 'author': 'Bemade', + 'website': 'https://www.bemade.org', + 'depends': [ + 'bemade_odoo_partner_scrapper' + ], + 'data': [ + ], + "assets": { + "web.assets_backend": [ + "bemade_odoo_partner_scrapper/static/src/js/odoo_scrapper.js", + "bemade_odoo_partner_scrapper/static/src/xml/odoo_scrapper_templates.xml", + ], + }, + 'demo': [], + 'installable': True, + 'application': False, + 'auto_install': False +}