diff --git a/contacts_birthday_greetings/README.rst b/contacts_birthday_greetings/README.rst new file mode 100644 index 000000000..1a7935f59 --- /dev/null +++ b/contacts_birthday_greetings/README.rst @@ -0,0 +1,43 @@ +.. image:: https://img.shields.io/badge/license-LGPL--3-blue.svg + :target: https://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 + +Contacts Birthday Greetings +=========================== +* This module will help to Automatically Send Birthday Greeting Email to Customers on their Birthdays. + +Company +------- +* `Cybrosys Techno Solutions `__ + +License +------- +General Public License, Version 3 (LGPL v3). +(https://www.gnu.org/licenses/lgpl-3.0-standalone.html) + +Credits +------- +Developer: (V17) Safa Faheem PE @cybrosys +Contact: odoo@cybrosys.com + +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/contacts_birthday_greetings/__init__.py b/contacts_birthday_greetings/__init__.py new file mode 100644 index 000000000..097bdb395 --- /dev/null +++ b/contacts_birthday_greetings/__init__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import models diff --git a/contacts_birthday_greetings/__manifest__.py b/contacts_birthday_greetings/__manifest__.py new file mode 100644 index 000000000..4610b7192 --- /dev/null +++ b/contacts_birthday_greetings/__manifest__.py @@ -0,0 +1,45 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +{ + 'name': "Contacts Birthday Greetings", + 'version': '17.0.1.0.0', + "category": 'Contacts', + 'summary': """Send Birthday Greetings to contacts""", + 'description': """This module will help to automatically send birthday greetings + email to customers on their birthdays.""", + 'author': 'Cybrosys Techno Solutions', + 'company': 'Cybrosys Techno Solutions', + 'maintainer': 'Cybrosys Techno Solutions', + 'website': 'https://www.cybrosys.com', + 'depends': ['base', 'mail', 'contacts'], + 'data': [ + 'data/birthday_greeting_cron.xml', + 'data/mail_template_data.xml', + 'views/res_partner_views.xml', + 'views/res_config_settings_views.xml', + ], + 'images': ['static/description/banner.png'], + 'license': "LGPL-3", + 'installable': True, + 'auto_install': False, + 'application': False +} diff --git a/contacts_birthday_greetings/data/birthday_greeting_cron.xml b/contacts_birthday_greetings/data/birthday_greeting_cron.xml new file mode 100644 index 000000000..1fba7ffae --- /dev/null +++ b/contacts_birthday_greetings/data/birthday_greeting_cron.xml @@ -0,0 +1,17 @@ + + + + + Birthday Greetings + + + 1 + days + -1 + + 10 + code + + model.action_send_email() + + diff --git a/contacts_birthday_greetings/data/mail_template_data.xml b/contacts_birthday_greetings/data/mail_template_data.xml new file mode 100644 index 000000000..522dfddab --- /dev/null +++ b/contacts_birthday_greetings/data/mail_template_data.xml @@ -0,0 +1,120 @@ + + + + + + Birthday Greetings Template 1 + + Happy Birthday {{object.name}} + "{{object.cbg_company_id.name or object.user_id.name}}" <{{ (object.cbg_company_id.email or object.user_id.email) }}> + {{object.email}} + +
+

+ Dear , +
+
+ Wish you a Happy Birthday! We hope that you have a great + year and accomplish all the + fabulous goals you have set. May the coming years have + filled with happiness, peace, and + love. Have a great day ahead. +
+
+ Many happy returns! +
+
+

+ Sincerely, +
+ +
+
+ +
+ + + + Birthday Greetings Template 2 + + Happy Birthday {{object.name}} + "{{ object.cbg_company_id.name or object.user_id.name}}" <{{ (object.cbg_company_id.email or object.user_id.email) }}> + {{object.email}} + + +
+
+

+ Happy +

+
+
+

+ Birthday +

+
+
+

+ +

+
+
+ image +
+
+

+ From all of us at + +

+
+
+
+ +
+ + + + Birthday Greetings Template 3 + + Happy Birthday {{object.name}} + "{{ object.cbg_company_id.name or object.user_id.name}}" <{{ (object.cbg_company_id.email or object.user_id.email) }}> + {{object.email}} + + +
+
+ +
+
+ image +
+
+ From all of us at +

+ +
+
+ We hope your day is filled with good things, +

+ and that the year ahead is even better than the last! +
+
+
+ +
+
+
diff --git a/contacts_birthday_greetings/doc/RELEASE_NOTES.md b/contacts_birthday_greetings/doc/RELEASE_NOTES.md new file mode 100644 index 000000000..76f050315 --- /dev/null +++ b/contacts_birthday_greetings/doc/RELEASE_NOTES.md @@ -0,0 +1,6 @@ +## Module + +#### 25.01.2024 +#### Version 17.0.1.0.0 +#### ADD +- Initial commit for Contacts Birthday Greetings diff --git a/contacts_birthday_greetings/models/__init__.py b/contacts_birthday_greetings/models/__init__.py new file mode 100644 index 000000000..7d2d5fd42 --- /dev/null +++ b/contacts_birthday_greetings/models/__init__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from . import res_config_settings +from . import res_partner + diff --git a/contacts_birthday_greetings/models/res_config_settings.py b/contacts_birthday_greetings/models/res_config_settings.py new file mode 100644 index 000000000..d99e3d66e --- /dev/null +++ b/contacts_birthday_greetings/models/res_config_settings.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + """This class extends the base 'res.config.settings' model to include + additional fields for configuring email template.""" + _inherit = 'res.config.settings' + + greetings_mail_template_id = fields.Many2one( + comodel_name='mail.template', + string='Email Template', + domain="[('model', '=', 'res.partner')]", + config_parameter='contacts_birthday_greetings.greetings_mail_template_id') diff --git a/contacts_birthday_greetings/models/res_partner.py b/contacts_birthday_greetings/models/res_partner.py new file mode 100644 index 000000000..4e0ab5433 --- /dev/null +++ b/contacts_birthday_greetings/models/res_partner.py @@ -0,0 +1,75 @@ +# -*- coding: utf-8 -*- +############################################################################# +# +# Cybrosys Technologies Pvt. Ltd. +# +# Copyright (C) 2024-TODAY Cybrosys Technologies() +# Author: Cybrosys Techno Solutions() +# +# You can modify it under the terms of the GNU LESSER +# GENERAL PUBLIC LICENSE (LGPL 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 LESSER GENERAL PUBLIC LICENSE (LGPL v3) for more details. +# +# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE +# (LGPL v3) along with this program. +# If not, see . +# +############################################################################# +from odoo import api, fields, models +import datetime + + +class ResPartner(models.Model): + """This class inherit the 'res.partner' model to include + additional fields for configuring birthday and age.""" + _inherit = 'res.partner' + + date_of_birth = fields.Date(string="Date of Birth", help="Date of birth field") + age = fields.Integer(string="Age", readonly=True, compute="compute_age", store=True) + send_bday_greetings = fields.Boolean( + string="Send Birthday Greetings", default=True) + cbg_company_id = fields.Many2one('res.company', readonly=True, + default=lambda self: self.env.company) + + @api.depends('date_of_birth') + def compute_age(self): + """Method to calculate the age according to the birthday.""" + today_date = datetime.date.today() + for partner in self: + if partner.date_of_birth: + date_of_birth = fields.Datetime.to_datetime( + partner.date_of_birth).date() + total_age = ((today_date - date_of_birth).days / 365) + partner.write({ + 'age': total_age + }) + else: + partner.write({ + 'age': 0 + }) + + def action_send_email(self): + """This function send birthday greetings email to contacts""" + partners = self.env['res.partner'].sudo().search([]) + for partner in partners: + if partner.date_of_birth: + bdate = datetime.datetime.strptime(str(partner.date_of_birth), + '%Y-%m-%d').date() + today = datetime.datetime.now().date() + if bdate.month == today.month: + if bdate.day == today.day: + partners.compute_age() + template_id = int( + self.env['ir.config_parameter'].sudo().get_param( + 'contacts_birthday_greetings' + '.greetings_mail_template_id')) + if template_id: + templates = self.env['mail.template'].sudo().browse( + template_id) + templates.sudo().send_mail( + partner.id, force_send=True, + email_layout_xmlid='mail.mail_notification_light') diff --git a/contacts_birthday_greetings/static/description/assets/icons/capture (1).png b/contacts_birthday_greetings/static/description/assets/icons/capture (1).png new file mode 100644 index 000000000..8824deafc Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/capture (1).png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/check.png b/contacts_birthday_greetings/static/description/assets/icons/check.png new file mode 100644 index 000000000..c8e85f51d Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/check.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/chevron.png b/contacts_birthday_greetings/static/description/assets/icons/chevron.png new file mode 100644 index 000000000..2089293d6 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/chevron.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/cogs.png b/contacts_birthday_greetings/static/description/assets/icons/cogs.png new file mode 100644 index 000000000..95d0bad62 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/cogs.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/consultation.png b/contacts_birthday_greetings/static/description/assets/icons/consultation.png new file mode 100644 index 000000000..8319d4baa Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/consultation.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/ecom-black.png b/contacts_birthday_greetings/static/description/assets/icons/ecom-black.png new file mode 100644 index 000000000..a9385ff13 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/ecom-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/education-black.png b/contacts_birthday_greetings/static/description/assets/icons/education-black.png new file mode 100644 index 000000000..3eb09b27b Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/education-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/hotel-black.png b/contacts_birthday_greetings/static/description/assets/icons/hotel-black.png new file mode 100644 index 000000000..130f613be Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/hotel-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/img.png b/contacts_birthday_greetings/static/description/assets/icons/img.png new file mode 100644 index 000000000..70197f477 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/img.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/license.png b/contacts_birthday_greetings/static/description/assets/icons/license.png new file mode 100644 index 000000000..a5869797e Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/license.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/lifebuoy.png b/contacts_birthday_greetings/static/description/assets/icons/lifebuoy.png new file mode 100644 index 000000000..658d56ccc Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/lifebuoy.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/manufacturing-black.png b/contacts_birthday_greetings/static/description/assets/icons/manufacturing-black.png new file mode 100644 index 000000000..697eb0e9f Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/manufacturing-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/photo-capture.png b/contacts_birthday_greetings/static/description/assets/icons/photo-capture.png new file mode 100644 index 000000000..06c111758 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/photo-capture.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/pos-black.png b/contacts_birthday_greetings/static/description/assets/icons/pos-black.png new file mode 100644 index 000000000..97c0f90c1 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/pos-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/puzzle.png b/contacts_birthday_greetings/static/description/assets/icons/puzzle.png new file mode 100644 index 000000000..65cf854e7 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/puzzle.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/restaurant-black.png b/contacts_birthday_greetings/static/description/assets/icons/restaurant-black.png new file mode 100644 index 000000000..4a35eb939 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/restaurant-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/service-black.png b/contacts_birthday_greetings/static/description/assets/icons/service-black.png new file mode 100644 index 000000000..301ab51cb Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/service-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/trading-black.png b/contacts_birthday_greetings/static/description/assets/icons/trading-black.png new file mode 100644 index 000000000..9398ba2f1 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/trading-black.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/training.png b/contacts_birthday_greetings/static/description/assets/icons/training.png new file mode 100644 index 000000000..884ca024d Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/training.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/update.png b/contacts_birthday_greetings/static/description/assets/icons/update.png new file mode 100644 index 000000000..ecbc5a01a Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/update.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/user.png b/contacts_birthday_greetings/static/description/assets/icons/user.png new file mode 100644 index 000000000..6ffb23d9f Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/user.png differ diff --git a/contacts_birthday_greetings/static/description/assets/icons/wrench.png b/contacts_birthday_greetings/static/description/assets/icons/wrench.png new file mode 100644 index 000000000..6c04dea0f Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/icons/wrench.png differ diff --git a/contacts_birthday_greetings/static/description/assets/misc/Cybrosys R.png b/contacts_birthday_greetings/static/description/assets/misc/Cybrosys R.png new file mode 100644 index 000000000..da4058087 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/misc/Cybrosys R.png differ diff --git a/contacts_birthday_greetings/static/description/assets/misc/email.svg b/contacts_birthday_greetings/static/description/assets/misc/email.svg new file mode 100644 index 000000000..15291cdc3 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/email.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/phone.svg b/contacts_birthday_greetings/static/description/assets/misc/phone.svg new file mode 100644 index 000000000..b7bd7f251 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/phone.svg @@ -0,0 +1,3 @@ + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/star (1) 2.svg b/contacts_birthday_greetings/static/description/assets/misc/star (1) 2.svg new file mode 100644 index 000000000..5ae9f507a --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/star (1) 2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/support (1) 1.svg b/contacts_birthday_greetings/static/description/assets/misc/support (1) 1.svg new file mode 100644 index 000000000..7d37a8f30 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/support (1) 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/support-email.svg b/contacts_birthday_greetings/static/description/assets/misc/support-email.svg new file mode 100644 index 000000000..eb70370d6 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/support-email.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/tick-mark.svg b/contacts_birthday_greetings/static/description/assets/misc/tick-mark.svg new file mode 100644 index 000000000..2dbb40187 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/tick-mark.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/whatsapp 1.svg b/contacts_birthday_greetings/static/description/assets/misc/whatsapp 1.svg new file mode 100644 index 000000000..0bfaf8fc6 --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/whatsapp 1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/misc/whatsapp.svg b/contacts_birthday_greetings/static/description/assets/misc/whatsapp.svg new file mode 100644 index 000000000..b618aea1d --- /dev/null +++ b/contacts_birthday_greetings/static/description/assets/misc/whatsapp.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/contacts_birthday_greetings/static/description/assets/modules/1.jpg b/contacts_birthday_greetings/static/description/assets/modules/1.jpg new file mode 100644 index 000000000..67c7f7062 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/1.jpg differ diff --git a/contacts_birthday_greetings/static/description/assets/modules/2.png b/contacts_birthday_greetings/static/description/assets/modules/2.png new file mode 100644 index 000000000..3bedf7981 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/2.png differ diff --git a/contacts_birthday_greetings/static/description/assets/modules/3.png b/contacts_birthday_greetings/static/description/assets/modules/3.png new file mode 100644 index 000000000..164eb62c7 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/3.png differ diff --git a/contacts_birthday_greetings/static/description/assets/modules/4.png b/contacts_birthday_greetings/static/description/assets/modules/4.png new file mode 100644 index 000000000..d246d83ac Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/4.png differ diff --git a/contacts_birthday_greetings/static/description/assets/modules/5.jpg b/contacts_birthday_greetings/static/description/assets/modules/5.jpg new file mode 100644 index 000000000..655cf38f5 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/5.jpg differ diff --git a/contacts_birthday_greetings/static/description/assets/modules/6.jpg b/contacts_birthday_greetings/static/description/assets/modules/6.jpg new file mode 100644 index 000000000..1f3f2e27f Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/modules/6.jpg differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_01.png b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_01.png new file mode 100644 index 000000000..c6c7f3268 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_01.png differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_02.png b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_02.png new file mode 100644 index 000000000..343c868f3 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_02.png differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_03.png b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_03.png new file mode 100644 index 000000000..0a0b945c3 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_03.png differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_04.png b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_04.png new file mode 100644 index 000000000..349633ad9 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_04.png differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_05.png b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_05.png new file mode 100644 index 000000000..bdb3a994d Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/contact_birthday_05.png differ diff --git a/contacts_birthday_greetings/static/description/assets/screenshots/hero.gif b/contacts_birthday_greetings/static/description/assets/screenshots/hero.gif new file mode 100644 index 000000000..1e9ad08d3 Binary files /dev/null and b/contacts_birthday_greetings/static/description/assets/screenshots/hero.gif differ diff --git a/contacts_birthday_greetings/static/description/banner.jpg b/contacts_birthday_greetings/static/description/banner.jpg new file mode 100644 index 000000000..64bb7dbba Binary files /dev/null and b/contacts_birthday_greetings/static/description/banner.jpg differ diff --git a/contacts_birthday_greetings/static/description/icon.png b/contacts_birthday_greetings/static/description/icon.png new file mode 100644 index 000000000..8184c5a88 Binary files /dev/null and b/contacts_birthday_greetings/static/description/icon.png differ diff --git a/contacts_birthday_greetings/static/description/index.html b/contacts_birthday_greetings/static/description/index.html new file mode 100644 index 000000000..f84fa754a --- /dev/null +++ b/contacts_birthday_greetings/static/description/index.html @@ -0,0 +1,572 @@ + + + + + + + Contacts Birthday Greetings Index + + + + + + + + +
+
+
+
+
+ +
+
+
+ Community +
+
+ Enterprise +
+
+ Odoo.sh +
+
+
+
+
+
+

+ Contacts Birthday Greetings

+

+ This module will help to Automatically Send Birthday Greeting Email to Customers on their Birthdays. +

+
+ +
+
+
+
+
+

Key Highlights +

+
+
+
+
+
+ +
+
+

Date of birth and age of contacts

+
+
+
+
+
+
+ +
+
+

User can choose template for birthday greetings.

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

+ Set the Birth date of the contacts. +

+
+
+
+
+
+
+ +
+
+

+ Go to Settings --> Choose template to send birthday wishing email to contacts. +

+
+
+
+
+
+
+ +
+
+

+ Template 1 +

+
+
+
+
+
+
+ +
+
+

+ Template 2 +

+
+
+
+
+
+
+ +
+
+

+ Template 3 +

+
+
+
+
+
+
+
    +
  • + Date of birth and age of contacts +
  • +
  • + User can choose template for birthday greetings. +
  • +
+
+
+
+
+
+
Version + 17.0.1.0.0|Released on:25 Jan 2024 +
+

+ Initial commit for Contacts Birthday Greetings.

+
+
+
+
+
+
+
+

Related Products

+
+
+ +
+
+

Our Services

+ +
+
+
+
+
+
+
+
+ service-icon +
+
+

Odoo Customization

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Support

+
+
+
+
+
+
+ service-icon +
+
+

Hire Odoo Developer

+
+
+
+
+ +
+
+ service-icon +
+
+

Odoo Integration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Migration

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Consultancy

+
+
+
+
+
+
+ service-icon +
+
+

Odoo Implementation

+
+
+
+
+
+
+ service-icon +
+
+

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 + 99456767686
+
+
+
+
+
+
+
+
+ + + + + + diff --git a/contacts_birthday_greetings/views/res_config_settings_views.xml b/contacts_birthday_greetings/views/res_config_settings_views.xml new file mode 100644 index 000000000..b2a786c5d --- /dev/null +++ b/contacts_birthday_greetings/views/res_config_settings_views.xml @@ -0,0 +1,27 @@ + + + + + res.config.settings.view.form.inherit.contacts.birthday.greetings + res.config.settings + + + +
+
+
+ Birthday Greetings +
+ Select Mail Template for Birthday Greetings +
+
+
+
+
+
+
+
+
+
diff --git a/contacts_birthday_greetings/views/res_partner_views.xml b/contacts_birthday_greetings/views/res_partner_views.xml new file mode 100644 index 000000000..af63dd29a --- /dev/null +++ b/contacts_birthday_greetings/views/res_partner_views.xml @@ -0,0 +1,16 @@ + + + + + res.partner.view.form.inherit.contacts.birthday.greetings + res.partner + + + + + + + + + \ No newline at end of file