diff --git a/gender_contact/README.rst b/gender_contact/README.rst new file mode 100755 index 000000000..d1cbf25e9 --- /dev/null +++ b/gender_contact/README.rst @@ -0,0 +1,57 @@ +.. 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 + +Gender In Contacts +================== +This module will help you to give the gender details for your contacts. + +Features +======== +* Gender for Contacts. + +Company +------- +* `Cybrosys Techno Solutions `__ + +Credits +------- +* Developer: Tintuk Tomin @ cybrosys, odoo@cybrosys.com + version 14: Syamili K @ cybrosys, odoo@cybrosys.com + +Contacts +-------- +* Mail Contact : odoo@cybrosys.com +* Website : https://cybrosys.com + +Tech +==== +* [Python] - Models +* [XML] - Odoo views + +License +------- +General Public License, Version 3 (AGPL v3). +(https://www.gnu.org/licenses/agpl-3.0-standalone.html) + +Installation +============ +- www.odoo.com/documentation/14.0/administration/install.html +- Install our custom addon + +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 https://www.cybrosys.com. + +Further information +=================== +HTML Description: ``__ \ No newline at end of file diff --git a/gender_contact/__init__.py b/gender_contact/__init__.py new file mode 100644 index 000000000..eadc88987 --- /dev/null +++ b/gender_contact/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from . import models diff --git a/gender_contact/__manifest__.py b/gender_contact/__manifest__.py new file mode 100755 index 000000000..ae0f38450 --- /dev/null +++ b/gender_contact/__manifest__.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +{ + 'name': 'Gender In Contacts', + 'version': '14.0.1.0.0', + 'summary': """ + This module will help you to give gender details for your contacts. + """, + 'description': """ + This module helps you to manage the gender information of your partners in + the contacts. + """, + 'category': 'Sales', + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'contacts'], + 'data': [ + 'views/res_partner_views.xml' + ], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/gender_contact/doc/RELEASE_NOTES.md b/gender_contact/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..2bb000688 --- /dev/null +++ b/gender_contact/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 03.06.2023 +#### Version 14.0.1.0.0 +##### ADD +- Initial commit for Gender In Contacts \ No newline at end of file diff --git a/gender_contact/models/__init__.py b/gender_contact/models/__init__.py new file mode 100644 index 000000000..339ba1aa8 --- /dev/null +++ b/gender_contact/models/__init__.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from . import res_partner diff --git a/gender_contact/models/res_partner.py b/gender_contact/models/res_partner.py new file mode 100644 index 000000000..3c6e7ce8a --- /dev/null +++ b/gender_contact/models/res_partner.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -*- +############################################################################### +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2023-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions () +# +# This program is free software: you can modify +# it under the terms of the GNU Affero General Public License (AGPL) as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# 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 for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# +############################################################################### +from odoo import fields, models + + +class ResPartner(models.Model): + """ Inheriting the model to add gender in contacts. """ + _inherit = 'res.partner' + + gender = fields.Selection([('male', 'Male'), ('female', 'Female'), + ('other', 'Others')], string='Gender', + help='Option for selecting the gender.') diff --git a/gender_contact/static/description/assets/icons/check.png b/gender_contact/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/gender_contact/static/description/assets/icons/check.png differ diff --git a/gender_contact/static/description/assets/icons/chevron.png b/gender_contact/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/gender_contact/static/description/assets/icons/chevron.png differ diff --git a/gender_contact/static/description/assets/icons/cogs.png b/gender_contact/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/gender_contact/static/description/assets/icons/cogs.png differ diff --git a/gender_contact/static/description/assets/icons/consultation.png b/gender_contact/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/gender_contact/static/description/assets/icons/consultation.png differ diff --git a/gender_contact/static/description/assets/icons/ecom-black.png b/gender_contact/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/gender_contact/static/description/assets/icons/ecom-black.png differ diff --git a/gender_contact/static/description/assets/icons/education-black.png b/gender_contact/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/gender_contact/static/description/assets/icons/education-black.png differ diff --git a/gender_contact/static/description/assets/icons/hotel-black.png b/gender_contact/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/gender_contact/static/description/assets/icons/hotel-black.png differ diff --git a/gender_contact/static/description/assets/icons/license.png b/gender_contact/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/gender_contact/static/description/assets/icons/license.png differ diff --git a/gender_contact/static/description/assets/icons/lifebuoy.png b/gender_contact/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/gender_contact/static/description/assets/icons/lifebuoy.png differ diff --git a/gender_contact/static/description/assets/icons/logo.png b/gender_contact/static/description/assets/icons/logo.png new file mode 100644 index 000000000..478462d3e Binary files /dev/null and b/gender_contact/static/description/assets/icons/logo.png differ diff --git a/gender_contact/static/description/assets/icons/manufacturing-black.png b/gender_contact/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/gender_contact/static/description/assets/icons/manufacturing-black.png differ diff --git a/gender_contact/static/description/assets/icons/pos-black.png b/gender_contact/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/gender_contact/static/description/assets/icons/pos-black.png differ diff --git a/gender_contact/static/description/assets/icons/puzzle.png b/gender_contact/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/gender_contact/static/description/assets/icons/puzzle.png differ diff --git a/gender_contact/static/description/assets/icons/restaurant-black.png b/gender_contact/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/gender_contact/static/description/assets/icons/restaurant-black.png differ diff --git a/gender_contact/static/description/assets/icons/service-black.png b/gender_contact/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/gender_contact/static/description/assets/icons/service-black.png differ diff --git a/gender_contact/static/description/assets/icons/trading-black.png b/gender_contact/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/gender_contact/static/description/assets/icons/trading-black.png differ diff --git a/gender_contact/static/description/assets/icons/training.png b/gender_contact/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/gender_contact/static/description/assets/icons/training.png differ diff --git a/gender_contact/static/description/assets/icons/update.png b/gender_contact/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/gender_contact/static/description/assets/icons/update.png differ diff --git a/gender_contact/static/description/assets/icons/user.png b/gender_contact/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/gender_contact/static/description/assets/icons/user.png differ diff --git a/gender_contact/static/description/assets/icons/wrench.png b/gender_contact/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/gender_contact/static/description/assets/icons/wrench.png differ diff --git a/gender_contact/static/description/assets/modules/approval_image.png b/gender_contact/static/description/assets/modules/approval_image.png new file mode 100644 index 000000000..84fe94e80 Binary files /dev/null and b/gender_contact/static/description/assets/modules/approval_image.png differ diff --git a/gender_contact/static/description/assets/modules/dynamic_image.png b/gender_contact/static/description/assets/modules/dynamic_image.png new file mode 100644 index 000000000..f55c47e0f Binary files /dev/null and b/gender_contact/static/description/assets/modules/dynamic_image.png differ diff --git a/gender_contact/static/description/assets/modules/list_view_image.png b/gender_contact/static/description/assets/modules/list_view_image.png new file mode 100644 index 000000000..510d36ae9 Binary files /dev/null and b/gender_contact/static/description/assets/modules/list_view_image.png differ diff --git a/gender_contact/static/description/assets/modules/multiple_ref_image.png b/gender_contact/static/description/assets/modules/multiple_ref_image.png new file mode 100644 index 000000000..3fe90e552 Binary files /dev/null and b/gender_contact/static/description/assets/modules/multiple_ref_image.png differ diff --git a/gender_contact/static/description/assets/modules/print_image.png b/gender_contact/static/description/assets/modules/print_image.png new file mode 100644 index 000000000..b470725a1 Binary files /dev/null and b/gender_contact/static/description/assets/modules/print_image.png differ diff --git a/gender_contact/static/description/assets/modules/product_return_image.png b/gender_contact/static/description/assets/modules/product_return_image.png new file mode 100644 index 000000000..3afc14722 Binary files /dev/null and b/gender_contact/static/description/assets/modules/product_return_image.png differ diff --git a/gender_contact/static/description/assets/screenshots/hero.png b/gender_contact/static/description/assets/screenshots/hero.png new file mode 100644 index 000000000..58ee324af Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/hero.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_1.png b/gender_contact/static/description/assets/screenshots/image_1.png new file mode 100644 index 000000000..f34eabf6a Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_1.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_2.png b/gender_contact/static/description/assets/screenshots/image_2.png new file mode 100644 index 000000000..e1965ab80 Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_2.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_3.png b/gender_contact/static/description/assets/screenshots/image_3.png new file mode 100644 index 000000000..b4cf59478 Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_3.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_4.png b/gender_contact/static/description/assets/screenshots/image_4.png new file mode 100644 index 000000000..5f0fb1c28 Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_4.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_5.png b/gender_contact/static/description/assets/screenshots/image_5.png new file mode 100644 index 000000000..7b9879d3e Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_5.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_6.png b/gender_contact/static/description/assets/screenshots/image_6.png new file mode 100644 index 000000000..2bcef9615 Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_6.png differ diff --git a/gender_contact/static/description/assets/screenshots/image_7.png b/gender_contact/static/description/assets/screenshots/image_7.png new file mode 100644 index 000000000..fc09b63dc Binary files /dev/null and b/gender_contact/static/description/assets/screenshots/image_7.png differ diff --git a/gender_contact/static/description/banner.jpg b/gender_contact/static/description/banner.jpg new file mode 100644 index 000000000..5ce42ca16 Binary files /dev/null and b/gender_contact/static/description/banner.jpg differ diff --git a/gender_contact/static/description/icon.png b/gender_contact/static/description/icon.png new file mode 100644 index 000000000..2e6f8805c Binary files /dev/null and b/gender_contact/static/description/icon.png differ diff --git a/gender_contact/static/description/index.html b/gender_contact/static/description/index.html new file mode 100644 index 000000000..e02466d6e --- /dev/null +++ b/gender_contact/static/description/index.html @@ -0,0 +1,579 @@ +
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+
+
+
+
+
+
+

+ Gender In Contacts

+

+ Provides option to add gender for all contacts including partners. +

+ +
+
+ + + + +
+
+

+ Overview +

+
+ +
+

+ This module will add extra field in contact module for selecting gender in the individual contact form. +

+ +
+
+ +
+
+

+ Features +

+
+ +
+
+ +
+
+

+ Gender details

+

+ Option to add gender for all contacts.

+
+
+
+ +
+
+

+ Screenshots +

+
+
+

+ Create contact with gender as male.

+ +
+
+

+ Create contact with gender as Female.

+ +
+
+

+ Under the filter option we can see Male, Female and Other. We can easily filter the contacts by this.

+ +
+
+

+ After selecting the filter Female:

+ +
+
+

+ After selecting the filter Male:

+ +
+
+

+ We can easily group contacts by Gender.

+ +

+ After grouping the contacts by Gender:

+ + +
+
+ + +
+
+

Suggested 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

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

Need Help?

+
+
+
+ + +
+ +
+ + +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+
+ + +
diff --git a/gender_contact/views/res_partner_views.xml b/gender_contact/views/res_partner_views.xml new file mode 100644 index 000000000..9393697e5 --- /dev/null +++ b/gender_contact/views/res_partner_views.xml @@ -0,0 +1,31 @@ + + + + + res.partner.view.form.inherit.gender.contact + res.partner + + + + + + + + + + res.partner.view.search.inherit.gender.contact + res.partner + + + + + + + + + + + + + \ No newline at end of file