Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

how to create the Scheduled Actions for timesheet attendance reporting module

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
ScheduledActions
2 Odpowiedzi
4148 Widoki
Awatar
vijay

Hi Team,

 I have created a scheduler action for timesheet reminder for the next day morning at 8 am if user forget to enter the working hours .  

python code:

from datetime import datetime, timedelta

from odoo import api, fields, models

class TimesheetReminder(models.TransientModel):

    _name = 'timesheet.reminder'


    @api.model

    def send_timesheet_reminder(self):

        # Find employees with missing timesheets for the previous day

        today = fields.Date.today()

        yesterday = today - timedelta(days=1)


        employees_with_missing_timesheets = self.env['hr.employee'].search([

            ('user_id', '!=', False),

            ('timesheet_ids.date', '=', yesterday),

            ('timesheet_ids.state', '!=', 'done'),

        ])


        # Send reminder emails

        for employee in employees_with_missing_timesheets:

            template = self.env.ref('your_module.email_template_id')

            template.send_mail(employee.user_id.id, force_send=True)


while unbale to find the module.email_template_id  ..


Getting below error :  forbidden opcode(s) in "# Available variables:\n# - env: Odoo Environment on which the action is triggered\n# - model: Odoo Model of the record on which the action is triggered; is a void recordset\n# - record: record on which the action is triggered; may be void\n# - records: recordset of all records on which the action is triggered in multi-mode; may be void\n# - time, datetime, dateutil, timezone: useful Python libraries\n# - float_compare: Odoo function to compare floats based on specific precisions\n# - log: log(message, level='info'): logging function to record debug information in ir.logging table\n# - UserError: Warning Exception to use with raise\n# - Command: x2Many commands namespace\n# To return an action, assign: action = {...}\n\nfrom datetime import datetime, timedelta\nfrom odoo import api, fields, models\nclass TimesheetReminder(models.TransientModel):\n _name = 'timesheet.reminder'\n\n @api.model\n def send_timesheet_reminder(self):\n # Find employees with missing timesheets for the previous day\n today = fields.Date.today()\n yesterday = today - timedelta(days=1)\n\n employees_with_missing_timesheets = self.env['hr.employee'].search([\n ('user_id', '!=', False),\n ('timesheet_ids.date', '=', yesterday),\n ('timesheet_ids.state', '!=', 'done'),\n ])\n\n # Send reminder emails\n for employee in employees_with_missing_timesheets:\n template = self.env.ref('your_module.email_template_id')\n template.send_mail(employee.user_id.id, force_send=True)\n\n# Add this function to the Scheduled Action": IMPORT_NAME, IMPORT_FROM, LOAD_BUILD_CLASS




Thanks and Regards
Vijay Yadav


0
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

Hi,

The execution of python is a bit different in the scheduled action script


You should try this instead


today = datetime.datetime.today()

yesterday = today - datetime.timedelta(1)


employees_with_missing_timesheets = env['hr.employee'].search([

    ('user_id', '!=', False),

    ('timesheet_ids.date', '=', yesterday),

    ('timesheet_ids.state', '!=', 'done'),

])

for employee in employees_with_missing_timesheets:

    template = env.ref('your_module.email_template_id')

    template.send_mail(employee.user_id.id, force_send=True)


Hope it helps

2
Awatar
Odrzuć
Awatar
vijay
Autor Najlepsza odpowiedź

hi @cybrosys Team,

will this code help with web code editor  and how do we know module and template id for this line of code  your_module.email_template_id' please suggest 

 

getting this error 

 File "C:\Users\www.abcom.in\Desktop\odoo engineering\odoo\odoo\tools\safe_eval.py", line 376, in safe_eval
    raise ValueError('%s: "%s" while evaluating\n%r' % (ustr(type(e)), ustr(e), expr))
ValueError: : "Invalid field hr.employee.timesheet_ids in leaf ('timesheet_ids.state', '!=', 'done')" while evaluating
"today = datetime.datetime.today()\r\n\r\nyesterday = today - datetime.timedelta(1)\r\n\r\n\r\n\r\nemployees_with_missing_timesheets = env['hr.employee'].search([\r\n\r\n    ('user_id', '!=', False),\r\n\r\n    ('timesheet_ids.date', '=', yesterday),\r\n\r\n    ('timesheet_ids.state', '!=', 'done'),\r\n\r\n])\r\n\r\nfor employee in employees_with_missing_timesheets:\r\n\r\n    template = env.ref('your_module.email_template_id')\r\n\r\n    template.send_mail(employee.user_id.id, force_send=True)"


0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Reference Next Execution date in Scheduled Action code
ScheduledActions
Awatar
Awatar
1
maj 24
3734
Scheduled action to assign unpaid leave in attendance where no check in and check out is marked
attendance ScheduledActions
Awatar
Awatar
1
lip 25
1454
How to configure the scheduled action to automate the validation of the receipts in one of your warehouses
AutomatedActions ScheduledActions
Awatar
Awatar
2
sty 24
2229
Automated actions Rozwiązane
product ScheduledActions
Awatar
Awatar
1
maj 23
2180
Update every res.partner via scheduled action
update res.partner ScheduledActions
Awatar
Awatar
Awatar
3
lip 23
3208
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now