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
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • 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
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • 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 automatically add followers to chatter depending on user group?

Subscriure's

Get notified when there's activity on this post

This question has been flagged
messaginggroupschattermail_threadodoo8.0
5 Respostes
15245 Vistes
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 Best Answer


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
Best Answer

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)
Best Answer

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
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
Reply Message does not receive by the recipients.
messaging chatter
Avatar
1
de març 15
4998
Link to and Edit Message
messaging groups
Avatar
0
de març 15
4162
Visibility of oe_chatter only form employee manager, how to? Solved
employee groups chatter
Avatar
Avatar
3
de nov. 18
8044
Include oe_chatter with inherit model partner
chatter mail_thread partner.form
Avatar
0
de juny 16
4124
SOLVED - Messaging modification
messaging modification odoo8.0
Avatar
0
d’oct. 15
4693
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