You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.9 KiB
66 lines
2.9 KiB
# -*- coding: utf-8 -*-
|
|
#############################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>)
|
|
# Author: Cybrosys Techno Solutions(<https://www.cybrosys.com>)
|
|
#
|
|
# 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 <http://www.gnu.org/licenses/>.
|
|
#
|
|
#############################################################################
|
|
from odoo import api, fields, models, _
|
|
import datetime
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
date_of_birth = fields.Date(string="Date of Birth")
|
|
age = fields.Integer(string="Age")
|
|
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.onchange('date_of_birth')
|
|
def _onchange_age(self):
|
|
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.age = total_age
|
|
|
|
def action_send_email(self):
|
|
"""Sending 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._onchange_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')
|
|
|