Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

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

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
pythonactivityAutomatedActions
2 Respuestas
8722 Vistas
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
Mejor respuesta

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
Mejor respuesta

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
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Automated action doesn't work in Odoo 16 but Odoo 14
python AutomatedActions
Avatar
Avatar
1
nov 23
3061
Need Python code to run the Compute Price from BOM server action Resuelto
python AutomatedActions
Avatar
Avatar
2
dic 23
6906
Please help me with odoo 14 community automated action Resuelto
python AutomatedActions
Avatar
Avatar
1
nov 22
3442
Automated Action: Enrich Event Registration with Partner ID
python AutomatedActions
Avatar
Avatar
1
ago 22
3459
Automated action - Correct syntax for getting the product variant name instead of the product(template) name Resuelto
python AutomatedActions
Avatar
Avatar
Avatar
2
ene 22
6943
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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