v 14.0 Third Party 1229
Download for v 14.0 Deploy on Odoo.sh
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Lines of code 99
Technical Name ob_chatter_position
LicenseLGPL-3
Websitehttps://www.odoobeing.com
Versions 14.0
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Odoo Apps Dependencies Discuss (mail)
Lines of code 99
Technical Name ob_chatter_position
LicenseLGPL-3
Websitehttps://www.odoobeing.com
Versions 14.0

Configurable Chatter Position.


Working of app

Features

  • Configurable Chatter Position.
  • Change Chatter Position from User Preferences.
  • Change Chatter Position on fly.
  • Supports Both Community & Enterprise Edition.

Screenshots


You may also like

Need Any Help Or Have Any Feature Requests?

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Please choose a rating from 1 to 5 for this module.
Great app
by
Grega Vavtar
on 5/16/23, 2:52 AM

It's a great addon for those who do noot need a chatebox allways present.

Please migrate it to v16 it would be awsome!

Re: Great app
by
Odoo Being
on 5/16/23, 4:54 AM Author

Thanks.

please find the module for v16 https://apps.odoo.com/apps/modules/16.0/web_chatter_position/


Looking forward to upgrading to 16.0
by
dongchen
on 1/28/23, 2:42 AM

What time to upgrade the code? 16.0 version can use on so check the plug-in? Looking forward to it! Always looking forward to it!

Re: Looking forward to upgrading to 16.0
by
Odoo Being
on 5/16/23, 4:53 AM Author

Thanks.

Please find the module for v16 https://apps.odoo.com/apps/modules/16.0/web_chatter_position/


The author need to change the license of this module to AGPL in regards to the code copied from an OCA module.
by
Camptocamp
on 5/10/22, 9:00 AM

Please fix the license, the code included in this module is a copy from the following module:

https://apps.odoo.com/apps/modules/15.0/web_responsive/

Where the feature was added in 2018
https://github.com/OCA/web/commit/e5e109ece655ae4cfb2a81e9eb130852eb106554

The code is free to copy, but you must keep the license to AGPL and keep the license headers in the code files.

Re: The author need to change the license of this module to AGPL in regards to the code copied from an OCA module.
by
Odoo Being
on 5/10/22, 9:50 AM Author

Hi,


Sorry for the mistake from our end. We will keep the licencse headers for the related files and update the code.

Also the module license is LGPL-3. So I guess there is no issues if our module follows the same license. We may be wrong, but we are not sure about the same.


Thank You.


by
Dipak Shah
on 3/7/22, 3:38 AM
please remove these methods from the v14 module which ONLY v15 has.
-------------------------------------------------------
def SELF_READABLE_FIELDS(self):
def SELF_WRITEABLE_FIELDS(self):


For v14 please add the below code in order to work properly. Thank you!
---------------------------------------------------------------
#  Override so that the user can change the chatter_position field
    def __init__(self, pool, cr):
        """ Override of __init__ to add access rights.
            on some specific fields defined in self.SELF_{READ/WRITE}ABLE_FIELDS.
        """
        init_res = super(ResUsers, self).__init__(pool, cr)
        type(self).SELF_READABLE_FIELDS = type(self).SELF_READABLE_FIELDS + ['chatter_position']
        type(self).SELF_WRITEABLE_FIELDS = type(self).SELF_WRITEABLE_FIELDS + ['chatter_position']
        return init_res