diff --git a/auto_fill/README.rst b/auto_fill/README.rst deleted file mode 100755 index 92c0684e4..000000000 --- a/auto_fill/README.rst +++ /dev/null @@ -1,64 +0,0 @@ -.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 - -Auto Fill -========= -* Widget that suggests field value in existing records -* Widget = **auto_fill** - -Developer -========= -* Developer: - odoo v11 Avinash Nk (odoo@cybrosys.com) - odoo v12 Akshay Babu - odoo v16 Mruthul Raj -Company -------- -* `Cybrosys Techno Solutions `__ - -License -------- -General Public License, Version 3 (AGPL v3). -(https://www.odoo.com/documentation/user/16.0/legal/licenses/licenses.html) - -Known issues / Roadmap -====================== - -* ... - -Credits -------- -Developers: Version 16 - Mruthul @cybrosys, -Contact: odoo@cybrosys.com - - -Bug Tracker -=========== - -Contact odoo@cybrosys.com - - -Contributors ------------- - -* Mruthul Raj - -Contacts --------- -* Mail Contact : odoo@cybrosys.com -* Website : https://cybrosys.com - - -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/auto_fill/__init__.py b/auto_fill/__init__.py deleted file mode 100755 index 638b31c60..000000000 --- a/auto_fill/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Mruthul (odoo@cybrosys.com) -# -# You can modify it under the terms of the GNU AFFERO -# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. -# -# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################### -from . import controllers diff --git a/auto_fill/__manifest__.py b/auto_fill/__manifest__.py deleted file mode 100755 index c6899b9fd..000000000 --- a/auto_fill/__manifest__.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Mruthul (odoo@cybrosys.com) -# -# You can modify it under the terms of the GNU AFFERO -# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. -# -# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################### -{ - 'name': 'Auto Fill', - 'version': '16.0.1.0.0', - 'summary': """Widget that suggests field value from existing records""", - 'description': 'Widget for auto completing a character field according to its existing record values', - 'category': 'Extra Tools', - 'author': 'Cybrosys Techno Solutions', - 'company': 'Cybrosys Techno Solutions', - 'website': "https://www.cybrosys.com", - 'depends': ['base'], - "assets": { - 'web.assets_backend': [ - 'auto_fill/static/src/css/auto_fill.css', - 'auto_fill/static/src/js/auto_fill.js', - 'auto_fill/static/src/xml/auto_fill.xml', - ], - }, - 'images': ['static/description/banner.jpg'], - 'license': 'AGPL-3', - 'installable': True, - 'auto_install': False, - 'application': False, -} diff --git a/auto_fill/controllers/__init__.py b/auto_fill/controllers/__init__.py deleted file mode 100755 index daf5c4487..000000000 --- a/auto_fill/controllers/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Mruthul (odoo@cybrosys.com) -# -# You can modify it under the terms of the GNU AFFERO -# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. -# -# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################### -from . import auto_fill diff --git a/auto_fill/controllers/auto_fill.py b/auto_fill/controllers/auto_fill.py deleted file mode 100755 index 2d815d345..000000000 --- a/auto_fill/controllers/auto_fill.py +++ /dev/null @@ -1,58 +0,0 @@ -# -*- coding: utf-8 -*- -############################################################################### -# -# Cybrosys Technologies Pvt. Ltd. -# -# Copyright (C) 2023-TODAY Cybrosys Technologies() -# Author: Mruthul (odoo@cybrosys.com) -# -# You can modify it under the terms of the GNU AFFERO -# GENERAL PUBLIC LICENSE (AGPL 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 AFFERO GENERAL PUBLIC LICENSE (AGPL v3) for more details. -# -# You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE -# (AGPL v3) along with this program. -# If not, see . -# -############################################################################### -from odoo import http -from odoo.http import request - - -class GetMatchingRecords(http.Controller): - """This is a controller for fetching data from the specific field - from backend - get_matching_records: - this function fetch data from backend and return - the value in res to the js - """ - - @http.route(['/matching/records'], type='json', auth="none") - def get_matching_records(self, **kwargs): - """summary: - This is a route which is called from js to get data - from backend - Args: - **kwargs:Which will have the values of model,field,value - which is passed from js as args - Return: - This function returns res that have the values fetched - from database - """ - model = str(kwargs.get('model', '')) - field = str(kwargs.get('field', '')) - value = str(kwargs.get('value', '')) - model = model.replace(".", "_") - cr = request.cr - if len(value) > 0: - query = """SELECT %s FROM %s WHERE %s ~* '%s' GROUP BY %s""" % ( - field, model, field, value, field) - cr.execute(query) - res = cr.fetchall() - else: - res = [] - return res diff --git a/auto_fill/doc/RELEASE_NOTES.md b/auto_fill/doc/RELEASE_NOTES.md deleted file mode 100644 index 14d1fb804..000000000 --- a/auto_fill/doc/RELEASE_NOTES.md +++ /dev/null @@ -1,7 +0,0 @@ -## Module - -#### 20.05.2023 -#### Version 16.0.1.0.0 -#### ADD - -- Initial Commit For Auto Fill \ No newline at end of file diff --git a/auto_fill/static/description/assets/icons/check.png b/auto_fill/static/description/assets/icons/check.png deleted file mode 100644 index c8e85f51d..000000000 Binary files a/auto_fill/static/description/assets/icons/check.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/chevron.png b/auto_fill/static/description/assets/icons/chevron.png deleted file mode 100644 index 2089293d6..000000000 Binary files a/auto_fill/static/description/assets/icons/chevron.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/cogs.png b/auto_fill/static/description/assets/icons/cogs.png deleted file mode 100644 index 95d0bad62..000000000 Binary files a/auto_fill/static/description/assets/icons/cogs.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/consultation.png b/auto_fill/static/description/assets/icons/consultation.png deleted file mode 100644 index 8319d4baa..000000000 Binary files a/auto_fill/static/description/assets/icons/consultation.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/ecom-black.png b/auto_fill/static/description/assets/icons/ecom-black.png deleted file mode 100644 index a9385ff13..000000000 Binary files a/auto_fill/static/description/assets/icons/ecom-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/education-black.png b/auto_fill/static/description/assets/icons/education-black.png deleted file mode 100644 index 3eb09b27b..000000000 Binary files a/auto_fill/static/description/assets/icons/education-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/hotel-black.png b/auto_fill/static/description/assets/icons/hotel-black.png deleted file mode 100644 index 130f613be..000000000 Binary files a/auto_fill/static/description/assets/icons/hotel-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/license.png b/auto_fill/static/description/assets/icons/license.png deleted file mode 100644 index a5869797e..000000000 Binary files a/auto_fill/static/description/assets/icons/license.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/lifebuoy.png b/auto_fill/static/description/assets/icons/lifebuoy.png deleted file mode 100644 index 658d56ccc..000000000 Binary files a/auto_fill/static/description/assets/icons/lifebuoy.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/logo.png b/auto_fill/static/description/assets/icons/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/auto_fill/static/description/assets/icons/logo.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/manufacturing-black.png b/auto_fill/static/description/assets/icons/manufacturing-black.png deleted file mode 100644 index 697eb0e9f..000000000 Binary files a/auto_fill/static/description/assets/icons/manufacturing-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/pos-black.png b/auto_fill/static/description/assets/icons/pos-black.png deleted file mode 100644 index 97c0f90c1..000000000 Binary files a/auto_fill/static/description/assets/icons/pos-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/puzzle.png b/auto_fill/static/description/assets/icons/puzzle.png deleted file mode 100644 index 65cf854e7..000000000 Binary files a/auto_fill/static/description/assets/icons/puzzle.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/restaurant-black.png b/auto_fill/static/description/assets/icons/restaurant-black.png deleted file mode 100644 index 4a35eb939..000000000 Binary files a/auto_fill/static/description/assets/icons/restaurant-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/service-black.png b/auto_fill/static/description/assets/icons/service-black.png deleted file mode 100644 index 301ab51cb..000000000 Binary files a/auto_fill/static/description/assets/icons/service-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/trading-black.png b/auto_fill/static/description/assets/icons/trading-black.png deleted file mode 100644 index 9398ba2f1..000000000 Binary files a/auto_fill/static/description/assets/icons/trading-black.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/training.png b/auto_fill/static/description/assets/icons/training.png deleted file mode 100644 index 884ca024d..000000000 Binary files a/auto_fill/static/description/assets/icons/training.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/update.png b/auto_fill/static/description/assets/icons/update.png deleted file mode 100644 index ecbc5a01a..000000000 Binary files a/auto_fill/static/description/assets/icons/update.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/user.png b/auto_fill/static/description/assets/icons/user.png deleted file mode 100644 index 6ffb23d9f..000000000 Binary files a/auto_fill/static/description/assets/icons/user.png and /dev/null differ diff --git a/auto_fill/static/description/assets/icons/wrench.png b/auto_fill/static/description/assets/icons/wrench.png deleted file mode 100644 index 6c04dea0f..000000000 Binary files a/auto_fill/static/description/assets/icons/wrench.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/categories.png b/auto_fill/static/description/assets/misc/categories.png deleted file mode 100644 index bedf1e0b1..000000000 Binary files a/auto_fill/static/description/assets/misc/categories.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/check-box.png b/auto_fill/static/description/assets/misc/check-box.png deleted file mode 100644 index 42caf24b9..000000000 Binary files a/auto_fill/static/description/assets/misc/check-box.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/compass.png b/auto_fill/static/description/assets/misc/compass.png deleted file mode 100644 index d5fed8faa..000000000 Binary files a/auto_fill/static/description/assets/misc/compass.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/corporate.png b/auto_fill/static/description/assets/misc/corporate.png deleted file mode 100644 index 2eb13edbf..000000000 Binary files a/auto_fill/static/description/assets/misc/corporate.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/customer-support.png b/auto_fill/static/description/assets/misc/customer-support.png deleted file mode 100644 index 79efc72ed..000000000 Binary files a/auto_fill/static/description/assets/misc/customer-support.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/cybrosys-logo.png b/auto_fill/static/description/assets/misc/cybrosys-logo.png deleted file mode 100644 index cc3cc0ccf..000000000 Binary files a/auto_fill/static/description/assets/misc/cybrosys-logo.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/features.png b/auto_fill/static/description/assets/misc/features.png deleted file mode 100644 index b41769f77..000000000 Binary files a/auto_fill/static/description/assets/misc/features.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/logo.png b/auto_fill/static/description/assets/misc/logo.png deleted file mode 100644 index 478462d3e..000000000 Binary files a/auto_fill/static/description/assets/misc/logo.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/pictures.png b/auto_fill/static/description/assets/misc/pictures.png deleted file mode 100644 index 56d255fe9..000000000 Binary files a/auto_fill/static/description/assets/misc/pictures.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/pie-chart.png b/auto_fill/static/description/assets/misc/pie-chart.png deleted file mode 100644 index 426e05244..000000000 Binary files a/auto_fill/static/description/assets/misc/pie-chart.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/right-arrow.png b/auto_fill/static/description/assets/misc/right-arrow.png deleted file mode 100644 index 730984a06..000000000 Binary files a/auto_fill/static/description/assets/misc/right-arrow.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/star.png b/auto_fill/static/description/assets/misc/star.png deleted file mode 100644 index 2eb9ab29f..000000000 Binary files a/auto_fill/static/description/assets/misc/star.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/support.png b/auto_fill/static/description/assets/misc/support.png deleted file mode 100644 index 4f18b8b82..000000000 Binary files a/auto_fill/static/description/assets/misc/support.png and /dev/null differ diff --git a/auto_fill/static/description/assets/misc/whatsapp.png b/auto_fill/static/description/assets/misc/whatsapp.png deleted file mode 100644 index d513a5356..000000000 Binary files a/auto_fill/static/description/assets/misc/whatsapp.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/1.png b/auto_fill/static/description/assets/modules/1.png deleted file mode 100644 index 3415917c2..000000000 Binary files a/auto_fill/static/description/assets/modules/1.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/2.png b/auto_fill/static/description/assets/modules/2.png deleted file mode 100644 index 31ed46762..000000000 Binary files a/auto_fill/static/description/assets/modules/2.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/3.png b/auto_fill/static/description/assets/modules/3.png deleted file mode 100644 index 25ed3e0b6..000000000 Binary files a/auto_fill/static/description/assets/modules/3.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/4.png b/auto_fill/static/description/assets/modules/4.png deleted file mode 100644 index 359d3e4d6..000000000 Binary files a/auto_fill/static/description/assets/modules/4.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/5.gif b/auto_fill/static/description/assets/modules/5.gif deleted file mode 100644 index 2a5f8e659..000000000 Binary files a/auto_fill/static/description/assets/modules/5.gif and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/5.png b/auto_fill/static/description/assets/modules/5.png deleted file mode 100644 index 3add135c3..000000000 Binary files a/auto_fill/static/description/assets/modules/5.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/6.png b/auto_fill/static/description/assets/modules/6.png deleted file mode 100644 index be454ea44..000000000 Binary files a/auto_fill/static/description/assets/modules/6.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/approval_image.png b/auto_fill/static/description/assets/modules/approval_image.png deleted file mode 100644 index 84fe94e80..000000000 Binary files a/auto_fill/static/description/assets/modules/approval_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/budget_image.png b/auto_fill/static/description/assets/modules/budget_image.png deleted file mode 100644 index fe6aa6fe4..000000000 Binary files a/auto_fill/static/description/assets/modules/budget_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/export_image.png b/auto_fill/static/description/assets/modules/export_image.png deleted file mode 100644 index 4e4ea0e51..000000000 Binary files a/auto_fill/static/description/assets/modules/export_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l1.png b/auto_fill/static/description/assets/modules/l1.png deleted file mode 100644 index ed175b076..000000000 Binary files a/auto_fill/static/description/assets/modules/l1.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l2.png b/auto_fill/static/description/assets/modules/l2.png deleted file mode 100644 index a3194264c..000000000 Binary files a/auto_fill/static/description/assets/modules/l2.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l3.png b/auto_fill/static/description/assets/modules/l3.png deleted file mode 100644 index e894393ef..000000000 Binary files a/auto_fill/static/description/assets/modules/l3.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l4.png b/auto_fill/static/description/assets/modules/l4.png deleted file mode 100644 index f3c986fc1..000000000 Binary files a/auto_fill/static/description/assets/modules/l4.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l5.png b/auto_fill/static/description/assets/modules/l5.png deleted file mode 100644 index b21837312..000000000 Binary files a/auto_fill/static/description/assets/modules/l5.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/l6.png b/auto_fill/static/description/assets/modules/l6.png deleted file mode 100644 index e64a5b55c..000000000 Binary files a/auto_fill/static/description/assets/modules/l6.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/magento_image.png b/auto_fill/static/description/assets/modules/magento_image.png deleted file mode 100644 index 39de0820f..000000000 Binary files a/auto_fill/static/description/assets/modules/magento_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/pos_image.png b/auto_fill/static/description/assets/modules/pos_image.png deleted file mode 100644 index c5932894b..000000000 Binary files a/auto_fill/static/description/assets/modules/pos_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/modules/shopify_image.png b/auto_fill/static/description/assets/modules/shopify_image.png deleted file mode 100644 index c6d92c16d..000000000 Binary files a/auto_fill/static/description/assets/modules/shopify_image.png and /dev/null differ diff --git a/auto_fill/static/description/assets/screenshots/auto_fill.gif b/auto_fill/static/description/assets/screenshots/auto_fill.gif deleted file mode 100644 index 396f67f53..000000000 Binary files a/auto_fill/static/description/assets/screenshots/auto_fill.gif and /dev/null differ diff --git a/auto_fill/static/description/assets/screenshots/auto_fill.png b/auto_fill/static/description/assets/screenshots/auto_fill.png deleted file mode 100644 index 6ea1d42cf..000000000 Binary files a/auto_fill/static/description/assets/screenshots/auto_fill.png and /dev/null differ diff --git a/auto_fill/static/description/assets/screenshots/hero.gif b/auto_fill/static/description/assets/screenshots/hero.gif deleted file mode 100644 index f48a64dc4..000000000 Binary files a/auto_fill/static/description/assets/screenshots/hero.gif and /dev/null differ diff --git a/auto_fill/static/description/assets/screenshots/hero.png b/auto_fill/static/description/assets/screenshots/hero.png deleted file mode 100644 index df0ac9ab5..000000000 Binary files a/auto_fill/static/description/assets/screenshots/hero.png and /dev/null differ diff --git a/auto_fill/static/description/assets/screenshots/widget.png b/auto_fill/static/description/assets/screenshots/widget.png deleted file mode 100644 index 33090c594..000000000 Binary files a/auto_fill/static/description/assets/screenshots/widget.png and /dev/null differ diff --git a/auto_fill/static/description/banner.jpg b/auto_fill/static/description/banner.jpg deleted file mode 100644 index 2c7a2a63c..000000000 Binary files a/auto_fill/static/description/banner.jpg and /dev/null differ diff --git a/auto_fill/static/description/icon.png b/auto_fill/static/description/icon.png deleted file mode 100644 index 807ca44f6..000000000 Binary files a/auto_fill/static/description/icon.png and /dev/null differ diff --git a/auto_fill/static/description/index.html b/auto_fill/static/description/index.html deleted file mode 100644 index c46a9226a..000000000 --- a/auto_fill/static/description/index.html +++ /dev/null @@ -1,571 +0,0 @@ -
- -
- -
-
- Community -
-
- Enterprise -
-
- Odoo.sh -
-
-
- -
-
-
- -

- Auto Fill

-

Widget that suggests field value from existing records

- - -
-
-
- - -
- - -
-
- -
-

Explore This - Module

-
- - - - -
-
- -
-

Overview -

-
-
-
- This module helps login as any user in your odoo -
-
- - - -
-
- -
-

Features -

-
-
-
-
- - Can insert any character or text fields. -
-
- - Fast Result. -
-
- - Attractive Design. -
-
-
-
- - Widget = auto_fill. -
-
-
- - - -
-
- -
-

Screenshots -

-
-
-
- -
-

Drill-down -

- - -

Just add this widget to char fields to get the data

-
- -
-

Drop Down -

-

You will see dropdown list with already added datas in that field

- - -
-
-
- - -
-
- -
-

- Related - Products -

-
-
-
- -
-
- - - - -
-
- -
-

Our Services -

-
- -
-
-
-
- -
-
- Odoo - Customization
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- Odoo - Support
-
- - -
-
- -
-
- Hire - Odoo - Developer
-
- -
-
- -
-
- Odoo - Integration
-
- -
-
- -
-
- Odoo - Migration
-
- - -
-
- -
-
- Odoo - Consultancy
-
- -
-
- -
-
- Odoo - Implementation
-
- -
-
- -
-
- 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 86068 - 27707

-
-
-
-
-
-
-
- -
-
-
- \ No newline at end of file diff --git a/auto_fill/static/src/css/auto_fill.css b/auto_fill/static/src/css/auto_fill.css deleted file mode 100755 index faa235d6d..000000000 --- a/auto_fill/static/src/css/auto_fill.css +++ /dev/null @@ -1,28 +0,0 @@ -#list_matches td { - padding-left: 7px !important; - padding-right: 7px !important; -} -#list_matches td:hover{ - background: #2d6cb3; - color: #fff; -} -.list_matches{ - width: 100%; - cursor: pointer; -} -.input_field_auto_fill { - border: 1px solid #D2D2FF; -} -#list_matches{ - z-index: 1051; - position: absolute; - background: #ffffff; - overflow-y: scroll; - height: auto; - display:none; - width:auto !important; - border: 1px solid #E5E5E5; - font-size: 13px; - padding: 5px 0px; - box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.176); -} \ No newline at end of file diff --git a/auto_fill/static/src/js/auto_fill.js b/auto_fill/static/src/js/auto_fill.js deleted file mode 100755 index 7b9ee83cd..000000000 --- a/auto_fill/static/src/js/auto_fill.js +++ /dev/null @@ -1,68 +0,0 @@ -/** @odoo-module **/ -import {registry} from "@web/core/registry"; -import {useInputField} from "@web/views/fields/input_field_hook"; -const {Component,useRef} = owl; -var ajax = require('web.ajax'); -var Dialog = require('web.Dialog'); - -/** - * We define this module for getting data from controller and pass to frontend - * - */ -export class FieldAutoFill extends Component { - static template = 'FieldAutoFill'; - setup() { - super.setup(); - this.input = useRef('input_data'); - useInputField({ - getValue: () => this.props.value || "", - refName: "input_data" - }); - } - /** - *Its a keyup function which will display the values according to key pressed - */ - _onKeyup(ev) { - var value = ev.target.value; - var model = this.env.model.env.searchModel.resModel - var self=this; - if(this.props.type === "char") { - ajax.jsonRpc('/matching/records', 'call', { - model: model, - field: this.props.name, - value: value, - }) - .then(function(result) { - if(result.length > 0) { - self.input.el.nextSibling.style.display = 'block'; - var table = self.input.el.nextSibling; - $(table).find('tr').remove(); - var i; - for(i = 0; i < result.length; i++) { - var row = table.insertRow(i); - var cell = row.insertCell(0); - cell.innerHTML = result[i]; - } - } else { - self.input.el.nextSibling.style.display = 'none';; - } - }); - } else { - Dialog.alert(this, - "Only Supported for 'char' type please change field type to 'char'") - return false; - } - } - /* - *Function to add data to the input field from the table which will - display values - */ - _onTableRowClicked(ev) { - this.input.el.value = ev.target.textContent; - this.input.el.nextSibling.style.display = 'none'; - } - -} - -registry.category("fields") - .add('auto_fill', FieldAutoFill); \ No newline at end of file diff --git a/auto_fill/static/src/xml/auto_fill.xml b/auto_fill/static/src/xml/auto_fill.xml deleted file mode 100755 index ba08e13a6..000000000 --- a/auto_fill/static/src/xml/auto_fill.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - \ No newline at end of file