Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consulting
    • Accounting Firm
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Solar Energy Systems
    • Shoe Maker
    • Serveis de neteja
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to create an activity in CRM using Python with an automated action?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
pythonactivityAutomatedActions
2 Respostes
8533 Vistes
Avatar
yaser akhras

Hello, 

How to create an activity in CRM module v 15; when a lead still more than 3 days at 'New' stage, and assign this activity for both: the salesperson and sales team leader using Python code with an automated action?


env['mail.activity'].create({
        'display_name': 'text',
        'summary': '3 Days!',
        'date_deadline': datetime.datetime.now(),
        'user_id': record.user_id.id,
        'res_id': record.id,
        'res_model_id': self.env['ir.model'].search([('model', '=', 'crm.lead')]).id,
        'activity_type_id': 4
    })


1
Avatar
Descartar
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

It is better to do it in a scheduled action(Which will automatically run(We can set the Execution Intervals)). Create a Schedule action in xml file (or from the Front End):

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

<field name="name">Activity for Leads</field> 

<field name="model_id" ref="crm.model_crm_lead" /> 

<field name="state">code</field> 

<field name="code">model.action_create_activity()</field>

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

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

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

<field name="priority">5</field> 

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

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

</record>

Then inherit the crm.lead

import datetime

from odoo import modelsclass 

CrmLead(models.Model)

_inherit = 'crm.lead'


def action_create_activity(self)    

​today = datetime.datetime.now()
    ​date_previous = today - datetime.timedelta(days=1)    

​stage_id = self.env.ref('crm.stage_lead_1')     

​crm_ids = self.search([('stage_id', '=', stage_id.id')])    

​crm_ids = crm_ids.filtered(lambda x:x.create_date.date() == date_previous.date())    

​for lead in crm_ids:

​ ​

<code to create activity>

Hope it helps

1
Avatar
Descartar
yaser akhras
Autor

Thanks Cybro,
I got this 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\nimport datetime\nfrom odoo import modelsclass \n\nCrmLead(models.Model)\n\n_inherit = 'crm.lead'\n\ndef action_create_activity(self):\n today = datetime.datetime.now()\n date_previous = today - datetime.timedelta(days=1) \n stage_id = self.env.ref('crm.stage_lead_1') \n crm_ids = self.search([('stage_id', '=', 'stage_id.id')]) \n crm_ids = crm_ids.filtered(lambda x:x.create_date.date() == date_previous.date()) \n for lead in crm_ids:\n env['mail.activity'].create({\n 'display_name': 'text',\n 'summary': 'text',\n 'date_deadline': datetime.datetime.now(),\n 'user_id': record.user_id.id,\n 'res_id': record.id,\n 'res_model_id': self.env['ir.model'].search([('model', '=', 'crm.lead')]).id,\n 'activity_type_id': 4\n })": IMPORT_NAME, IMPORT_FROM

Cybrosys Techno Solutions Pvt.Ltd

As you are creating the schedule action from frontend, we cannot directly call the function. So instead of that please use the following code:
today = datetime.datetime.now()
date_previous = today - datetime.timedelta(days=1)
stage_id = env.ref('crm.stage_lead1')
crm_ids = model.search([('stage_id', '=', stage_id.id)])
crm_ids = crm_ids.filtered(lambda x:x.create_date.date() == date_previous.date())
for crm in crm_ids:
env['mail.activity'].create({
'display_name': 'CRM ACTION',
'summary': '3 Days', 'res_id': crm.id,
'res_model_id': env.ref('crm.model_crm_lead').id
})

shayan0686

whats the create code for activity?

Avatar
Ajin A K
Best Answer

Hi,

By implementing a scheduled activity, you can automate the process of creating follow-up tasks for leads that have been stagnant in the 'New' stage for an extended period.

from odoo import fields, models, api, tools


class ScheduledActivity(models.Model):

    _name = 'crm.scheduled.activity'


    def _check_and_create_activity(self):

        three_days_ago = fields.Datetime.now() - timedelta(days=3)

        new_leads = self.env['crm.lead'].search([

            ('stage_id.name', '=', 'New'),

            ('create_date', '

        ])

        for lead in new_leads:

            activity_data = {

                'display_name': 'Follow Up: Lead Stuck in New Stage',

                'summary': 'This lead has been in the New stage for more than 3 days.',

                'date_deadline': fields.Datetime.now(),

                'user_id': lead.user_team_id.leader_id.id])]

            self.env['mail.activity'].create(activity_data)


    def run_scheduled_activity(self):

        self._check_and_create_activity()


# Schedule the action to run daily (modify interval as needed)

tools.scheduler.cron.register(

    self._name + '.run_scheduled_activity',

    self.run_scheduled_activity,

    day=1,  # Every day

)


Hope this should be helpful!

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Automated action doesn't work in Odoo 16 but Odoo 14
python AutomatedActions
Avatar
Avatar
1
de nov. 23
3026
Need Python code to run the Compute Price from BOM server action Solved
python AutomatedActions
Avatar
Avatar
2
de des. 23
6841
Please help me with odoo 14 community automated action Solved
python AutomatedActions
Avatar
Avatar
1
de nov. 22
3382
Automated Action: Enrich Event Registration with Partner ID
python AutomatedActions
Avatar
Avatar
1
d’ag. 22
3424
Automated action - Correct syntax for getting the product variant name instead of the product(template) name Solved
python AutomatedActions
Avatar
Avatar
Avatar
2
de gen. 22
6902
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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