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.
114 lines
4.7 KiB
114 lines
4.7 KiB
"""Daily/weekly task status report"""
|
|
# -*- coding: utf-8 -*-
|
|
################################################################################
|
|
#
|
|
# Cybrosys Technologies Pvt. Ltd.
|
|
#
|
|
# Copyright (C) 2023-TODAY Cybrosys Technologies(<https://www.cybrosys.com>).
|
|
# Author: Aswathi (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 <http://www.gnu.org/licenses/>.
|
|
#
|
|
################################################################################
|
|
import datetime
|
|
from odoo import models
|
|
|
|
|
|
class AccountAnalyticLine(models.Model):
|
|
"""
|
|
Class inherits account.analytic.line to send the daily and weekly report as
|
|
email.
|
|
"""
|
|
_inherit = 'account.analytic.line'
|
|
|
|
def create_daily_report(self):
|
|
"""
|
|
Method for automatically send email for daily work report.
|
|
"""
|
|
employee_ids = self.env['hr.employee'].search(
|
|
[('parent_id', '!=', False)])
|
|
template = self.env.ref(
|
|
'auto_daily_weekly_report.email_template_daily_report',
|
|
raise_if_not_found=False)
|
|
for employee in employee_ids:
|
|
user_email = employee.work_email
|
|
working_days = employee.resource_calendar_id.attendance_ids.mapped(
|
|
'dayofweek')
|
|
account_analytic_line_ids = self.env[
|
|
'account.analytic.line'].search(
|
|
[('date', '=', datetime.datetime.today().date()),
|
|
('employee_id', '=', employee.id)]
|
|
).filtered(
|
|
lambda x: x.date.weekday() in [int(day) for day in
|
|
working_days])
|
|
lines = []
|
|
for record in account_analytic_line_ids:
|
|
lines.append({
|
|
'project': record.project_id.name,
|
|
'task': record.task_id.name,
|
|
'description': record.name,
|
|
'hours_spent': record.unit_amount
|
|
})
|
|
ctx = {
|
|
'data': lines,
|
|
'from_email': user_email,
|
|
'to_email': employee.parent_id.work_email,
|
|
'employee': employee.name,
|
|
}
|
|
if len(lines) >= 1:
|
|
template.sudo().with_context(ctx).send_mail(employee.user_id.id,
|
|
force_send=True)
|
|
|
|
def create_weekly_report(self):
|
|
"""
|
|
Method for automatically send email for weekly task report.
|
|
"""
|
|
today_date = datetime.datetime.today()
|
|
week_num = today_date.isocalendar()[1]
|
|
start_date = today_date - datetime.timedelta(
|
|
days=datetime.datetime.today().isoweekday() % 7)
|
|
employee_ids = self.env['hr.employee'].search(
|
|
[('parent_id', '!=', False)])
|
|
template = self.env.ref(
|
|
'auto_daily_weekly_report.email_template_weekly_report',
|
|
raise_if_not_found=False)
|
|
for employee in employee_ids:
|
|
user_email = employee.work_email
|
|
working_days = employee.resource_calendar_id.attendance_ids.mapped(
|
|
'dayofweek')
|
|
account_analytic_line_ids = self.env[
|
|
'account.analytic.line'].search(
|
|
[('date', '>=', start_date),
|
|
('date', '<=', datetime.datetime.today().date()),
|
|
('employee_id', '=', employee.id)]
|
|
).filtered(
|
|
lambda x: x.date.weekday() in [int(day) for day in
|
|
working_days])
|
|
lines = []
|
|
for record in account_analytic_line_ids:
|
|
lines.append({
|
|
'project': record.project_id.name,
|
|
'task': record.task_id.name,
|
|
'description': record.name,
|
|
'hours_spent': record.unit_amount
|
|
})
|
|
ctx = {
|
|
'data': lines,
|
|
'week': "W" + str(week_num) + "_" + str(today_date.year),
|
|
'from_email': user_email,
|
|
'to_email': employee.parent_id.work_email,
|
|
'employee': employee.name,
|
|
}
|
|
if len(lines) >= 1:
|
|
template.sudo().with_context(ctx).send_mail(employee.user_id.id,
|
|
force_send=True)
|
|
|