Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Is it possible to save messaging history with instant messaging?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
messagehistoryim
9 Antwoorden
9616 Weergaven
Avatar
Laura Jarvenpaa

Current version of Instant messaging module doesn't save the messaging history if you close the chat. That's very inconvenient if you have to exchange information with other people and you have to check it out again later.

So is there any way to save messaging history somewhere and clear it when it is not anymore needed?

I know that you can use messages with social media module with preserves the history but they are more like sending e-mails and we are currently using skype for instant messaging so people are used to communicate with others thought instant messaging system and messages provided by social media module are not flexible enough.

0
Avatar
Annuleer
Avatar
Laura Jarvenpaa
Auteur Beste antwoord

Didn't find module Jean-Sébastien SUZANNE was referring to (found it later see edited comment in the end) but because creating this kind of view was rather easy I created it by myself. Here is code if some one else wants to create similar view:

python file

         from openerp.osv import fields,osv
         class im_history(osv.osv):
             _inherit = 'im.message'  
         im_history()

xml file

  <record id="view_im_history" model="ir.ui.view">
    <field name="name">im.message.tree</field>
    <field name="model">im.message</field>
    <field name="arch" type="xml">
            <tree string="Instant Message History">
                <field name="date"/>
                <field name="from_id"/>
                <field name="to_id"/>
                <field name="message"/>
            </tree>
    </field>
  </record>

  <!-- Top menu item -->
    <menuitem name="Instant Messages history"
        id="im_history_root"
        groups="base.group_user"
        sequence="10"/>

    <record id="open_view_im_history" model="ir.actions.act_window">
        <field name="name">Instant messaging history</field>
        <field name="res_model">im.message</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree</field>
        <field name="view_id" ref="view_im_history"/>
    </record>
    <!-- Had to add dummy parent menu for actions because top menus arent' clicable in OE -->
    <menuitem name="Actions" id="im_history" parent="im_history_root" groups="base.group_user"/>
    <menuitem action="open_view_im_history" id="menu_open_view_im_history" parent="im_history" sequence="20" groups="base.group_user"/>

Access rights are handled right automatically because im.message object already has record rule that user can see only messages sent to/from user.

Edit: BUT as was pointed out by Jean-Sébastien SUZANNE in the comment SUPERUSER by passes the rules so if you don't want that you can test web_im module found here: https://bitbucket.org/anybox I haven't tested it but it is said to be working.

2
Avatar
Annuleer
Suzanne Jean-Sébastien

Good. I didn't see the rules. But for me the rules is not enough because SUPERUSER by pass the rules.

Suzanne Jean-Sébastien

IM module is for trunk version, my module can be use on the OpenERP v7 without patch

Laura Jarvenpaa
Auteur

Ok, for us it is ok if the superuser sees the messages because then employees won't use it for chatting non work related stuff but I added link to your module list in the end of my answer so that others can use that if they need higher security.

Avatar
Suzanne Jean-Sébastien
Beste antwoord

Hi,

The message are already saved on the model im.message (table im_message). But not view add.

In the module web_im for OpenERP 7.0 the view exist and the user can see only this messages.

1
Avatar
Annuleer
Laura Jarvenpaa
Auteur

I tried to find this module from launchpad but couldn't find anything else than some references on bug reports. Also, google returned no result. Do you have some link for this module? Thanks!

Laura Jarvenpaa
Auteur

Never mind. I created myself view to show messages from that table. Works fine.

Suzanne Jean-Sébastien

You could find this module on bitbucket. It is a module from anybox. You need the module web_socketio and if you know the buildout, you should use long polling_buildout

Avatar
Mark Stair
Beste antwoord

IM messaging is automatically saved in Messaging>Live Chat>History

So nothing really needed to show chat history.

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
[SOLVED] Add a message in "oe_chatter" - "Messages and communication history" box. Opgelost
message history oechatter
Avatar
Avatar
Avatar
Avatar
Avatar
5
mrt. 20
23358
Is it possible to delete messaging history within instant messaging?
message history instantiate instant
Avatar
0
mrt. 15
4958
Inquiry About Odoo Educational License and Free Access to Educational Program Opgelost
message
Avatar
Avatar
1
aug. 25
1305
"Something went wrong... " in new database
message
Avatar
Avatar
1
jun. 25
2071
Odoo 18 Notification delay issue
message
Avatar
Avatar
1
jun. 25
1989
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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