Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita 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
  • Proyectos
  • 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
8718 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.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Automated action doesn't work in Odoo 16 but Odoo 14
python AutomatedActions
Avatar
Avatar
1
nov 23
3060
Need Python code to run the Compute Price from BOM server action Resuelto
python AutomatedActions
Avatar
Avatar
2
dic 23
6904
Please help me with odoo 14 community automated action Resuelto
python AutomatedActions
Avatar
Avatar
1
nov 22
3440
Automated Action: Enrich Event Registration with Partner ID
python AutomatedActions
Avatar
Avatar
1
ago 22
3458
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
6942
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • 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 estar 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