Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

My Custom Scheduler Functionality is not Running for a custom module Need a help

Subscribe

Get notified when there's activity on this post

This question has been flagged
mailschedulerautomatic_email
1 Reply
5315 Views
Avatar
ABU K

I hr.employee ,create 3 date field for notification to employee to expire his document details.In my scheduler function call is invoked only three steps after that its not working any thing ,and functionality is stuck ,if I use a button for this action then mail alert is working perfectly.issue is in my scheduled action below is my code....


.py

-------------------------------------------------------------------------------------


class hr_employee(osv.osv):

_inherit = 'hr.employee'

_columns = {

  'passport_expiry':fields.date('Passport expiry'),

'visa_issue':fields.date('Visa issue Date'),

'visa_expiry':fields.date('Visa Expiry'),

'emirates_id_expiry':fields.date('Emirates ID Expiry'),

'join_date':fields.date('Join Date'),

'insurance_id_expiry':fields.date('Insurance Expiry'),

'departmnet_id':fields.many2one('hr.department','Department'),

'division':fields.many2one('hr.division','Division'),

'expiry_day_limit':fields.integer('Limit(Alert before/Days?)'),

'last_working_date_employee':fields.date('Last Working Date')

#'limit_days':fields.integer('Limint')

}

def send_expiry_email(self, cr, uid, ids=None, context=None):

print 'o'*200

  today = datetime.datetime.today()

today = datetime.datetime.strptime(datetime.datetime.strftime(today, DF), DF)

  print "DF -->> ", DF            #################DF -->> %Y-%m-%d  )after this line code is not excecuting.............

for partner in self.browse(cr, uid, ids, context=context):  #From Here Scheduler is not working

  passport_expiry_days = 0

visa_expiry_days=0

emirates_id_expiry_days=0

insuarance_id_expiry_days=0

if partner.passport_expiry:

passport_expiry = datetime.datetime.strptime(partner.passport_expiry, DF) - today

 

if int(passport_expiry.days) <= partner.expiry_day_limit:

passport_expiry_days = passport_expiry.days

  if partner.visa_expiry:

visa_expiry = datetime.datetime.strptime(partner.visa_expiry, DF) - today

  if int(visa_expiry.days) <= partner.expiry_day_limit:

visa_expiry_days = visa_expiry.days

  if partner.emirates_id_expiry:

emirates_id_expiry = datetime.datetime.strptime(partner.emirates_id_expiry, DF) - today

  if int(emirates_id_expiry.days) <= partner.expiry_day_limit:

emirates_id_expiry_days = emirates_id_expiry.days


if partner.insurance_id_expiry:

insuarance_id_expiry = datetime.datetime.strptime(partner.insurance_id_expiry, DF) - today


if int(insuarance_id_expiry.days) <= partner.expiry_day_limit:

insuarance_id_expiry_days = insuarance_id_expiry.days


partner_email=partner.work_email

passport_expiry=partner.passport_expiry

visa_expiry=partner.visa_expiry

emirates_expiry=partner.emirates_id_expiry

insurance_expiry=partner.insurance_id_expiry

  body = "Employee %s has Expired" %( partner.name)

footer="Please Update Your details"

if passport_expiry_days:

body = "%s passport on %s day," % (body,passport_expiry)

if visa_expiry_days:

body = "%s Visa %s on day," % (body,visa_expiry)

if emirates_id_expiry_days:

body = "%s Emirates %s on day," %( body,emirates_expiry)

if insuarance_id_expiry_days:

body = "%s Insurance %s on day," % (body,insurance_expiry)


mail_values= {

'body_html' :'<pre><span class="inner-pre" style="font-size: 15px">%s</br>%s</span></pre>' %(body,footer),

'record_name': 'dsdds',

'email_from': 'test@yahoo.in',

'email_to': partner_email,

'subject': 'Employee Expiry Details'

}

mail_id = self.pool.get('mail.mail').create(cr, uid, mail_values, context=context)

self.pool.get('mail.mail').send(cr, uid, [mail_id])

return True



.xml file

----------------------------------------------------------



<record id="ir_cron_employee_expiry_info" model="ir.cron">

<field name="name">Employee Document Expiry scheduler</field>

<field eval="True" name="active"/>

<field name="interval_number">1</field>

<field name="interval_type">minutes</field>

<field name="numbercall">-1</field>

<field eval="False" name="doall"/>

<field eval="'hr.employee'" name="model"/>

<field eval="'send_expiry_email'" name="function"/>

<field eval="'()'" name="args"/>

</record>

0
Avatar
Discard
Avatar
Emipro Technologies Pvt. Ltd.
Best Answer

Hi,

When any method is calling from scheduler then you can not get any input inside "ids" argument. So, when ids=None then you have to set it before processing it as like below.

def send_expiry_email(self, cr, uid, ids=None, context=None):

print 'o'*200

today = datetime.datetime.today()

today = datetime.datetime.strptime(datetime.datetime.strftime(today, DF), DF)

print "DF -->> ", DF

if not ids:

    ids = self.search(cr, uid, []) #It will give you ids of all employee. But you can manage domain to get as you want.

for partner in self.browse(cr, uid, ids, context=context):

.......

....


I think you get an issue inside your code. I hope it will help you.

1
Avatar
Discard
ABU K
Author

Thanks Emiproo.......Works Perfectly..........I

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
Mail scheduler for Odoo event
mail scheduler event
Avatar
Avatar
1
Sep 23
3279
Scheduled action (Email Queue Manager) does not send automatically email from queue. Solved
mail scheduler odooV8
Avatar
Avatar
Avatar
8
May 23
26086
Safe to delete system notifications?
mail scheduler notifications
Avatar
Avatar
1
Mar 15
6506
<( Servicio al pasajero)||¿Cómo hablar directamente en Volaris?
mail
Avatar
0
Nov 25
603
Emails to Microsoft Outlook/Hotmail are rejected
mail
Avatar
1
Oct 25
903
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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