diff --git a/gender_contact/README.rst b/gender_contact/README.rst new file mode 100755 index 000000000..2f4947de8 --- /dev/null +++ b/gender_contact/README.rst @@ -0,0 +1,40 @@ +.. 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 + +Gender In Contacts v13 +=========================== +This module will helps you to give the gender details for your contact + +Features +======== + +* Gender for Contacts. + +Tech +==== +* [Python] - Models +* [XML] - Odoo views + +License +======== +General Public License, Version 3 (AGPL-3). + +Installation +============ +- www.odoo.com/documentation/13.0/setup/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. + + +Developer: Tintuk Tomin @ cybrosys, odoo@cybrosys.com, Syamili K @ cybrosys + +Maintainer +---------- + +This module is maintained by Cybrosys Technologies. + +For support and more information, please visit https://www.cybrosys.com. \ No newline at end of file diff --git a/gender_contact/__init__.py b/gender_contact/__init__.py new file mode 100644 index 000000000..a4a54c083 --- /dev/null +++ b/gender_contact/__init__.py @@ -0,0 +1,24 @@ +# -*- 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..3002d57ed --- /dev/null +++ b/gender_contact/__manifest__.py @@ -0,0 +1,43 @@ +# -*- 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': '13.0.1.0.0', + 'summary': """This module will helps you to give gender details + for your contact.""", + 'description': "Module helps you to manage the gender information " + "of your partner as well as 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/gender_view.xml'], + 'images': ['static/description/banner.jpg'], + 'license': 'AGPL-3', + 'installable': True, + 'auto_install': False, + 'application': True, +} \ No newline at end of file diff --git a/gender_contact/doc/RELEASE_NOTES.md b/gender_contact/doc/RELEASE_NOTES.md new file mode 100755 index 000000000..cbccf7fc3 --- /dev/null +++ b/gender_contact/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 23.03.2023 +#### Version 13.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..7a2caf9f2 --- /dev/null +++ b/gender_contact/models/__init__.py @@ -0,0 +1,24 @@ +# -*- 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 gender diff --git a/gender_contact/models/gender.py b/gender_contact/models/gender.py new file mode 100644 index 000000000..190a41347 --- /dev/null +++ b/gender_contact/models/gender.py @@ -0,0 +1,31 @@ +# -*- 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): + _inherit = 'res.partner' + + gender = fields.Selection([('male', 'Male'), ('female', 'Female'), ('other', 'Others')], string='Gender', + help="Select gender for contact.") diff --git a/gender_contact/static/description/banner.jpg b/gender_contact/static/description/banner.jpg new file mode 100644 index 000000000..bb0c2337b 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/images/Ip.gif b/gender_contact/static/description/images/Ip.gif new file mode 100644 index 000000000..93d87f03c Binary files /dev/null and b/gender_contact/static/description/images/Ip.gif differ diff --git a/gender_contact/static/description/images/banner_lifeline_for_task.jpeg b/gender_contact/static/description/images/banner_lifeline_for_task.jpeg new file mode 100644 index 000000000..4a467ea22 Binary files /dev/null and b/gender_contact/static/description/images/banner_lifeline_for_task.jpeg differ diff --git a/gender_contact/static/description/images/banner_project_report_xls_pdf.png b/gender_contact/static/description/images/banner_project_report_xls_pdf.png new file mode 100644 index 000000000..3c430a7eb Binary files /dev/null and b/gender_contact/static/description/images/banner_project_report_xls_pdf.png differ diff --git a/gender_contact/static/description/images/banner_project_status_report.png b/gender_contact/static/description/images/banner_project_status_report.png new file mode 100644 index 000000000..d1b689710 Binary files /dev/null and b/gender_contact/static/description/images/banner_project_status_report.png differ diff --git a/gender_contact/static/description/images/banner_subtask.jpeg b/gender_contact/static/description/images/banner_subtask.jpeg new file mode 100644 index 000000000..f2b224110 Binary files /dev/null and b/gender_contact/static/description/images/banner_subtask.jpeg differ diff --git a/gender_contact/static/description/images/banner_task_deadline_reminder.jpeg b/gender_contact/static/description/images/banner_task_deadline_reminder.jpeg new file mode 100644 index 000000000..998679818 Binary files /dev/null and b/gender_contact/static/description/images/banner_task_deadline_reminder.jpeg differ diff --git a/gender_contact/static/description/images/banner_task_statusbar.jpeg b/gender_contact/static/description/images/banner_task_statusbar.jpeg new file mode 100644 index 000000000..2c57cbb7b Binary files /dev/null and b/gender_contact/static/description/images/banner_task_statusbar.jpeg differ diff --git a/gender_contact/static/description/images/checked.png b/gender_contact/static/description/images/checked.png new file mode 100644 index 000000000..578cedb80 Binary files /dev/null and b/gender_contact/static/description/images/checked.png differ diff --git a/gender_contact/static/description/images/cybrosys.png b/gender_contact/static/description/images/cybrosys.png new file mode 100644 index 000000000..d76b5bafb Binary files /dev/null and b/gender_contact/static/description/images/cybrosys.png differ diff --git a/gender_contact/static/description/images/gender_contact.png b/gender_contact/static/description/images/gender_contact.png new file mode 100644 index 000000000..6f63a6871 Binary files /dev/null and b/gender_contact/static/description/images/gender_contact.png differ diff --git a/gender_contact/static/description/images/task_timer_youtube.png b/gender_contact/static/description/images/task_timer_youtube.png new file mode 100644 index 000000000..fb6579727 Binary files /dev/null and b/gender_contact/static/description/images/task_timer_youtube.png differ diff --git a/gender_contact/static/description/index.html b/gender_contact/static/description/index.html new file mode 100644 index 000000000..55567fb60 --- /dev/null +++ b/gender_contact/static/description/index.html @@ -0,0 +1,271 @@ +
cybrosys-logo
+
+
+
+

Gender In Contacts

+

Gender details in all contacts

+
+

Key Highlights

+
    +
  • Gender details
  • +
+
+
+
+ +
+
+
+
+ +
+
+ +

Overview

+
+

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

+
+
+ +
    +
  • + Gender details +
  • +
+
+ +
+
+

Screenshots

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

Suggested Products

+
+ +
+
+

Our Service

+
+ +
+
+
+

Our Industries

+
+ +
+
+
+ +
+
+

Trading

+

Easily procure and sell your products.

+
+
+
+
+ +
+
+

Manufacturing

+

Plan, track and schedule your operations.

+
+
+
+
+ +
+
+

Restaurant

+

Run your bar or restaurant methodical.

+
+
+
+
+ +
+
+

POS

+

Easy configuring and convivial selling.

+
+
+
+
+ +
+
+

E-commerce & Website

+

Mobile friendly, awe-inspiring product pages.

+
+
+
+
+ +
+
+

Hotel Management

+

An all-inclusive hotel management application.

+
+
+
+
+ +
+
+

Education

+

A Collaborative platform for educational management.

+
+
+
+
+ +
+
+

Service Management

+

Keep track of services and invoice accordingly.

+
+
+
+
+
+ +
+
+
+

Need Any Help?

+
+

If you have anything to share with us based on your use of this module, please let us know. We are ready to offer our support.

+
+

Email us

+

odoo@cybrosys.com

+
+
+

Contact Us

+ www.cybrosys.com +
+
+
+
+
+
+
+
+
+ +
+ + + + + + + +
+
+
+ diff --git a/gender_contact/views/gender_view.xml b/gender_contact/views/gender_view.xml new file mode 100644 index 000000000..f08011523 --- /dev/null +++ b/gender_contact/views/gender_view.xml @@ -0,0 +1,33 @@ + + + + + gender_contact + res.partner + + + + + + + + + gender_contact_filter + res.partner + + + + + + + + + + + + + +