Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Odoo Discuss: add button to message

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
messagingdiscussionsodoo11
3 Risposte
7259 Visualizzazioni
Avatar
Serge Ruzki

I'm trying to add a function to message in Inbox - send message to lead.

Ok, I've made like it is made by Odoo("dive into"): added a button near to "Mark as read"

/addons/mail/static/src/xml/thread.xml: added new with

class="fa fa-book o_thread_icon o_thread_message_message_to_lead"

then in

/addons/mail/static/src/js/thread.js
/addons/mail/static/src/js/client_action.js
/addons/mail/static/src/js/chat_manager.js

i've duplicated "mark_as_read" functions and replaced function name.

in addons/mail/models/mail_message.py added my function

So, it works! But I didn't find a way to pack it to a custom module: odoo reads /addons/mail/static/src/xml/thread.xml direct from the source and do not store it in DB. Ok, it is no problem, to add this line to one file, but how can I make it without js-modifying?

I've tried to put link or button there, but didn't find a way to make it like <record id="message_to_lead" model="ir.actions.server">..</record>

Can someone help me to find a way to make action-button for message, that calls a function in mail.message model?

Example, how it looks like: https://i.stack.imgur.com/Qo03f.png

0
Avatar
Abbandona
Hilar Andikkadavath

first of all js is the better way and i also did a customization like this. another way is using a link and its in controller you treat the url, but you should pass the proper data to manipulate. form the controller you can do call the functions.

Serge Ruzki
Autore

Thank you.

So, probably, you can help me in next question:

i've made a controller in module like:

`

@http.route('/mail/message_to_lead/<model("mail.message"):message_id>', type='http', auth='user')

def message_to_lead(self, message_id, res_id=None, access_token=None, **kwargs):

if message_id:

try:

message = http.request.env['mail.message'].sudo().browse(int(message_id)).exists()

except:

message = http.request.env['mail.message']

if message:

z = message.message_to_lead()

...

`

function is stored in module too:

`

class Message(models.Model):

_name = 'message_to_lead'

_inherit = 'mail.message'

@api.one

def message_to_lead(self):

...

`

Import is ok.

But I can't acces this function from a controller:

AttributeError: 'mail.message' object has no attribute 'message_to_lead'

What's wrong with it?

Avatar
Serge Ruzki
Autore Risposta migliore

So, for now i've written controller for an url and post_init hook, that changes thread.xml file (add's a line). No js, no problemo.

I think it is not good to edit files with python hard-code, but this thread.xml is in static, not in db.

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Edit/Delete Messages in Messaging Risolto
messaging discussions
Avatar
Avatar
Avatar
Avatar
3
dic 23
23759
create backorder odoo after validate purchase shipment ? Risolto
odoo11
Avatar
Avatar
1
ott 25
11883
I can't create any sub-task
odoo11
Avatar
Avatar
Avatar
2
lug 24
3580
odoo 11 display calendar widget in website layout
odoo11
Avatar
Avatar
1
giu 24
5887
Get field's value from another model
odoo11
Avatar
Avatar
1
ott 23
98
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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