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 automatically add followers to chatter depending on user group?

Suscribirse

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

Se marcó esta pregunta
messaginggroupschattermail_threadodoo8.0
5 Respuestas
15237 Vistas
Avatar
Yenthe Van Ginneken (Mainframe Monkey)

Hi guys,

I've made a new model 'sel.mdo' on which I've added the whole chatter functionality:

class sel_mdo(models.Model):
    _name = 'sel.mdo'
    _inherit = ['mail.thread', 'ir_needaction_mixin']
Now when a button is pressed in this view I'd like to post a new message in this chatter. I do it like this:
@api.multi
def mdo_indienen(self):
    self.ensure_one()
    
    self.write({
        'state': 'aanvraag',
    })

    body = _(u'My custom notification!')
    return self.message_post(body=body)
This all works fine but I have one problem at this point: all users that belong to the group 'aa_sel_kempen.group_sel_manager' should be added as followers before this notification is sent and all the users that belong to this group should get this message inside their Odoo inbox. I've tried the following:

@api.multi
def mdo_indienen(self):
    self.ensure_one()

    user_ids = self.pool.get('res.users').search(self._cr, self._uid, [])
    user_ids_to_attach_as_chat_followers = []
    for user_id in user_ids:
        flag = self.pool.get('res.users').has_group(self._cr, user_id, 'aa_sel_kempen.group_sel_manager')
        if flag is True:
            user_ids_to_attach_as_chat_followers.append(user_id)    
    # Write on the record
    self.write({
        'state': 'aanvraag',
        'message_follower_ids': user_ids_to_attach_as_chat_followers

body = _(u'My text') return self.message_post(body=body) 

This leaves me with two problems though:
1) I see that followers are added but they aren't users but relations (from the model 'res.partner')
2) When a correct follower (from 'res.partner') is added (manually by me) I still see no notification showing up under messaging. The new posted message on this record should also be seen from the inbox under Messaging.

So, what am I missing?
Yenthe

3
Avatar
Descartar
Avatar
Yenthe Van Ginneken (Mainframe Monkey)
Autor Mejor respuesta


The final solution:

@api.multi def mdo_indienen(self): self.ensure_one() #Attach all people that are in the group user_ids = self.pool.get('res.users').search(self._cr, self._uid, []) user_ids_to_attach_as_chat_followers = []

for user_id in user_ids: flag = self.pool.get('res.users').has_group(self._cr, user_id, 'aa_sel_kempen.group_sel_manager') if flag is True: user_record = self.pool.get('res.users').browse(self._cr, self._uid, user_id) user_ids_to_attach_as_chat_followers.append(user_record.partner_id.id)

#Write on the record self.write({ 'state': 'aanvraag', 'message_follower_ids': user_ids_to_attach_as_chat_followers })

""" Write a notification message on the chatter of this MDO. This message should also be shown in the messages inbox for all admins. """ body = _(u'Er is een nieuwe MDO aanvraag ingediend voor de patiënt ' + self.mdo_patient_id.name + '.') return self.message_post(body=body, partner_ids = user_ids_to_attach_as_chat_followers


So I had to get the partner_ids in place of the user_ids (thank you Samantha!) and finally I had to add partner_ids = user_ids_to_attach_as_chat_followers so that the message is shown in the inbox for all added users (under Messaging).

2
Avatar
Descartar
Samantha Cruz

Welcome :)

Avatar
Samantha Cruz
Mejor respuesta

First of all, if you want to add a followers you should get their partner_ids not user_ids. Your self.message_post is not complete.

If you want to send a notification, below is an example:


             self.message_post(
cr, uid, False,
subject="Message Subject",
body= ("Message body."),
partner_ids = followers,
type='notification',
subtype=False,
context=context)

3
Avatar
Descartar
Yenthe Van Ginneken (Mainframe Monkey)
Autor

Thanks this gave me a global idea about how to do this, upvoted it!

Avatar
Ishit Mehta (ime)
Mejor respuesta

For you question, I have a simpler way. Prepare a channel with the users you want to give access.

Now go to settings -> Technical settings -> Automated actions -> Create automated action -> select the model -> choose 'Add followers' option in ACTION TO DO. You can add followers or you can also add channels. You Can also use trigger conditions option.

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
Reply Message does not receive by the recipients.
messaging chatter
Avatar
1
mar 15
4992
Link to and Edit Message
messaging groups
Avatar
0
mar 15
4156
Visibility of oe_chatter only form employee manager, how to? Resuelto
employee groups chatter
Avatar
Avatar
3
nov 18
8041
Include oe_chatter with inherit model partner
chatter mail_thread partner.form
Avatar
0
jun 16
4124
SOLVED - Messaging modification
messaging modification odoo8.0
Avatar
0
oct 15
4686
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