diff --git a/partner_search_by_number/README.rst b/partner_search_by_number/README.rst new file mode 100644 index 000000000..7970826f5 --- /dev/null +++ b/partner_search_by_number/README.rst @@ -0,0 +1,51 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: https://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +Partner Search By Number +================================= +This module helps employees to search partners by their +phone number and mobile number in odoo . + +Configuration +============= +* No additional configurations needed + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: (V16):Dhanya Babu contact:odoo@cybrosys.com + +License +======= +GNU AFFERO GENERAL PUBLIC LICENSE, Version 3 (AGPLv3) +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Installation +============ +- www.odoo.com/documentation/16.0/setup/install.html +- Install our custom addon + +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/partner_search_by_number/__init__.py b/partner_search_by_number/__init__.py new file mode 100644 index 000000000..445db1ddb --- /dev/null +++ b/partner_search_by_number/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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 models diff --git a/partner_search_by_number/__manifest__.py b/partner_search_by_number/__manifest__.py new file mode 100644 index 000000000..1b3a4c80a --- /dev/null +++ b/partner_search_by_number/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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': 'Partner Search By Number', + 'version': '16.0.1.0.0', + 'summary': """This app allows us to search customer by their phone number + and mobile number in odoo16.""", + 'description': """With the help of this software, we can search for + customers using their phone and cell numbers in Odoo16.""", + 'category': 'Sales', + 'author': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base'], + 'data': + [ + 'views/res_partner_views.xml' + ], + 'images': ['static/description/banner.png'], + 'license': 'AGPL-3', + 'installable': True, + 'application': False, + 'auto_install': False, + +} diff --git a/partner_search_by_number/doc/RELEASE_NOTES.md b/partner_search_by_number/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..a7dc365b9 --- /dev/null +++ b/partner_search_by_number/doc/RELEASE_NOTES.md @@ -0,0 +1,7 @@ +## Module + +#### 27.10.2023 +#### Version 16.0.1.0.0 +#### ADD + +-initial Commit for Partner Search By Number diff --git a/partner_search_by_number/models/__init__.py b/partner_search_by_number/models/__init__.py new file mode 100644 index 000000000..b5246f5bb --- /dev/null +++ b/partner_search_by_number/models/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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 res_partner diff --git a/partner_search_by_number/models/res_partner.py b/partner_search_by_number/models/res_partner.py new file mode 100644 index 000000000..af8b50b9b --- /dev/null +++ b/partner_search_by_number/models/res_partner.py @@ -0,0 +1,52 @@ +# -*- coding: utf-8 -*- +################################################################################ +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies(). +# Author: Dhanya Babu (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 api, models +from odoo.osv import expression + + + +class ResPartner(models.Model): + """The ResPartner model is an inherited model of res.partner. + This model extends the functionality of the res.partner model + by adding a custom name search method _name_search(), + which searches for partners by their name, phone number, + or mobile number.""" + _inherit = 'res.partner' + + @api.model + def _name_search(self, name='', args=None, operator='ilike', limit=100, + name_get_uid=None): + """search the phone number,mobile and return to name_get () + Args: + name (str) : The name to search for + args (list) : Additional search arguments + operator (str): The operator to use for the search (default is 'ilike') + limit (int): The maximum number of records to return (default is 100) + name_get_uid (int) : The UID of the user performing the search + Returns: + list:The search results""" + args = args or [] + domain = ['|', '|', '|', ('name', operator, name), + ('phone', operator, name), ('email', operator, name), + ('mobile', operator, name)] + return self._search(expression.AND([domain + args]), limit=limit, + access_rights_uid=name_get_uid) diff --git a/partner_search_by_number/static/description/assets/icons/check.png b/partner_search_by_number/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/check.png differ diff --git a/partner_search_by_number/static/description/assets/icons/chevron.png b/partner_search_by_number/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/chevron.png differ diff --git a/partner_search_by_number/static/description/assets/icons/cogs.png b/partner_search_by_number/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/cogs.png differ diff --git a/partner_search_by_number/static/description/assets/icons/consultation.png b/partner_search_by_number/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/consultation.png differ diff --git a/partner_search_by_number/static/description/assets/icons/ecom-black.png b/partner_search_by_number/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/ecom-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/education-black.png b/partner_search_by_number/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/education-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/hotel-black.png b/partner_search_by_number/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/hotel-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/license.png b/partner_search_by_number/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/license.png differ diff --git a/partner_search_by_number/static/description/assets/icons/lifebuoy.png b/partner_search_by_number/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/lifebuoy.png differ diff --git a/partner_search_by_number/static/description/assets/icons/manufacturing-black.png b/partner_search_by_number/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/manufacturing-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/pos-black.png b/partner_search_by_number/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/pos-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/puzzle.png b/partner_search_by_number/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/puzzle.png differ diff --git a/partner_search_by_number/static/description/assets/icons/restaurant-black.png b/partner_search_by_number/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/restaurant-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/service-black.png b/partner_search_by_number/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/service-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/trading-black.png b/partner_search_by_number/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/trading-black.png differ diff --git a/partner_search_by_number/static/description/assets/icons/training.png b/partner_search_by_number/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/training.png differ diff --git a/partner_search_by_number/static/description/assets/icons/update.png b/partner_search_by_number/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/update.png differ diff --git a/partner_search_by_number/static/description/assets/icons/user.png b/partner_search_by_number/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/user.png differ diff --git a/partner_search_by_number/static/description/assets/icons/wrench.png b/partner_search_by_number/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/partner_search_by_number/static/description/assets/icons/wrench.png differ diff --git a/partner_search_by_number/static/description/assets/misc/categories.png b/partner_search_by_number/static/description/assets/misc/categories.png new file mode 100644 index 000000000..bedf1e0b1 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/categories.png differ diff --git a/partner_search_by_number/static/description/assets/misc/check-box.png b/partner_search_by_number/static/description/assets/misc/check-box.png new file mode 100644 index 000000000..42caf24b9 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/check-box.png differ diff --git a/partner_search_by_number/static/description/assets/misc/compass.png b/partner_search_by_number/static/description/assets/misc/compass.png new file mode 100644 index 000000000..d5fed8faa Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/compass.png differ diff --git a/partner_search_by_number/static/description/assets/misc/corporate.png b/partner_search_by_number/static/description/assets/misc/corporate.png new file mode 100644 index 000000000..2eb13edbf Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/corporate.png differ diff --git a/partner_search_by_number/static/description/assets/misc/customer-support.png b/partner_search_by_number/static/description/assets/misc/customer-support.png new file mode 100644 index 000000000..79efc72ed Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/customer-support.png differ diff --git a/partner_search_by_number/static/description/assets/misc/cybrosys-logo.png b/partner_search_by_number/static/description/assets/misc/cybrosys-logo.png new file mode 100644 index 000000000..cc3cc0ccf Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/cybrosys-logo.png differ diff --git a/partner_search_by_number/static/description/assets/misc/features.png b/partner_search_by_number/static/description/assets/misc/features.png new file mode 100644 index 000000000..b41769f77 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/features.png differ diff --git a/partner_search_by_number/static/description/assets/misc/logo.png b/partner_search_by_number/static/description/assets/misc/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/logo.png differ diff --git a/partner_search_by_number/static/description/assets/misc/pictures.png b/partner_search_by_number/static/description/assets/misc/pictures.png new file mode 100644 index 000000000..56d255fe9 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/pictures.png differ diff --git a/partner_search_by_number/static/description/assets/misc/pie-chart.png b/partner_search_by_number/static/description/assets/misc/pie-chart.png new file mode 100644 index 000000000..426e05244 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/pie-chart.png differ diff --git a/partner_search_by_number/static/description/assets/misc/right-arrow.png b/partner_search_by_number/static/description/assets/misc/right-arrow.png new file mode 100644 index 000000000..730984a06 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/right-arrow.png differ diff --git a/partner_search_by_number/static/description/assets/misc/star.png b/partner_search_by_number/static/description/assets/misc/star.png new file mode 100644 index 000000000..2eb9ab29f Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/star.png differ diff --git a/partner_search_by_number/static/description/assets/misc/support.png b/partner_search_by_number/static/description/assets/misc/support.png new file mode 100644 index 000000000..4f18b8b82 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/support.png differ diff --git a/partner_search_by_number/static/description/assets/misc/whatsapp.png b/partner_search_by_number/static/description/assets/misc/whatsapp.png new file mode 100644 index 000000000..d513a5356 Binary files /dev/null and b/partner_search_by_number/static/description/assets/misc/whatsapp.png differ diff --git a/partner_search_by_number/static/description/assets/modules/01.gif b/partner_search_by_number/static/description/assets/modules/01.gif new file mode 100644 index 000000000..db040e0de Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/01.gif differ diff --git a/partner_search_by_number/static/description/assets/modules/02.png b/partner_search_by_number/static/description/assets/modules/02.png new file mode 100644 index 000000000..b3c3ca084 Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/02.png differ diff --git a/partner_search_by_number/static/description/assets/modules/03.png b/partner_search_by_number/static/description/assets/modules/03.png new file mode 100644 index 000000000..082948398 Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/03.png differ diff --git a/partner_search_by_number/static/description/assets/modules/04.png b/partner_search_by_number/static/description/assets/modules/04.png new file mode 100644 index 000000000..4e506f79b Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/04.png differ diff --git a/partner_search_by_number/static/description/assets/modules/05.png b/partner_search_by_number/static/description/assets/modules/05.png new file mode 100644 index 000000000..33372bdc1 Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/05.png differ diff --git a/partner_search_by_number/static/description/assets/modules/06.png b/partner_search_by_number/static/description/assets/modules/06.png new file mode 100644 index 000000000..1b57f61b3 Binary files /dev/null and b/partner_search_by_number/static/description/assets/modules/06.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/hero.gif b/partner_search_by_number/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..e039469eb Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/hero.gif differ diff --git a/partner_search_by_number/static/description/assets/screenshots/mob_purchase.png b/partner_search_by_number/static/description/assets/screenshots/mob_purchase.png new file mode 100644 index 000000000..436e390b7 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/mob_purchase.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_1.png b/partner_search_by_number/static/description/assets/screenshots/price_1.png new file mode 100644 index 000000000..e1b23f423 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_1.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_2.png b/partner_search_by_number/static/description/assets/screenshots/price_2.png new file mode 100644 index 000000000..469b9c64f Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_2.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_3.png b/partner_search_by_number/static/description/assets/screenshots/price_3.png new file mode 100644 index 000000000..1f9b51f66 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_3.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_33.png b/partner_search_by_number/static/description/assets/screenshots/price_33.png new file mode 100644 index 000000000..a53a3c840 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_33.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_44.png b/partner_search_by_number/static/description/assets/screenshots/price_44.png new file mode 100644 index 000000000..59358e840 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_44.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/price_55.png b/partner_search_by_number/static/description/assets/screenshots/price_55.png new file mode 100644 index 000000000..518600af3 Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/price_55.png differ diff --git a/partner_search_by_number/static/description/assets/screenshots/sale_phone.png b/partner_search_by_number/static/description/assets/screenshots/sale_phone.png new file mode 100644 index 000000000..6f41fb65f Binary files /dev/null and b/partner_search_by_number/static/description/assets/screenshots/sale_phone.png differ diff --git a/partner_search_by_number/static/description/banner.png b/partner_search_by_number/static/description/banner.png new file mode 100644 index 000000000..23f50785f Binary files /dev/null and b/partner_search_by_number/static/description/banner.png differ diff --git a/partner_search_by_number/static/description/icon.png b/partner_search_by_number/static/description/icon.png new file mode 100644 index 000000000..4f42c2b01 Binary files /dev/null and b/partner_search_by_number/static/description/icon.png differ diff --git a/partner_search_by_number/static/description/index.html b/partner_search_by_number/static/description/index.html new file mode 100644 index 000000000..3be1f5267 --- /dev/null +++ b/partner_search_by_number/static/description/index.html @@ -0,0 +1,690 @@ +
+ +
+ +
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+ +
+
+
+ +

+ Partner Search By Number +

+

+ This app allows us to quick search for partner by mobile and + phone in both kanban and form view. It can be helpful + for sales person find client in faster manner in Odoo ERP + module. +

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

+ Explore This + Module

+
+ + + + +
+
+ +
+

+ Overview +

+
+
+
+ This module helps to search the customer by their phone and mobile + number +
+
+ + + +
+
+ +
+

+ Features +

+
+
+
+
+ + Community & Enterprise + Support. +
+
+ + Allow us to search a customer by their mobile and + phone number in Odoo contact module. +
+
+ + Select customers in sales module by their phone or + mobile . +
+
+ + Select customers in purchase module by their phone + or mobile . +
+
+
+ +
+ + +
+ + + +
+
+ +
+

+ Screenshots +

+
+
+
+
+

+ Set Mobile and Phone Number in Contact Form for the Customer +

+

+ + + +

+
+

+ Mobile and Phone Number We Can see in Kanban View of Contact + Form for the Customer +

+

+ + + +

+ +
+

+ Search the Customer by Their Phone number And Mobile number in + Sales Module +

+ + + + + + +
+ + +
+

+ Search for the Customer By Their Phone number And Mobile Number + in Contact Module

+ + +
+
+

+ Search for the Customer By Their Phone number And Mobile Number + in Purchase Module

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

+ 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/partner_search_by_number/views/res_partner_views.xml b/partner_search_by_number/views/res_partner_views.xml new file mode 100644 index 000000000..f114ef108 --- /dev/null +++ b/partner_search_by_number/views/res_partner_views.xml @@ -0,0 +1,24 @@ + + + + + res.partner.view.kanban.inherit.partner.search.by.number + res.partner + + + + + + +
+
  • + +
  • +
    +
  • + +
  • +
    +
    +
    +