Skip to content

Commit

Permalink
Merge PR #1707 into 14.0
Browse files Browse the repository at this point in the history
Signed-off-by simahawk
  • Loading branch information
OCA-git-bot committed Sep 15, 2021
2 parents 1256fff + 877b907 commit e55b109
Show file tree
Hide file tree
Showing 14 changed files with 599 additions and 0 deletions.
85 changes: 85 additions & 0 deletions sale_order_disable_user_autosubscribe/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
=====================================
Sale Order Disable User Autosubscribe
=====================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
:target: https:/OCA/sale-workflow/tree/14.0/sale_order_disable_user_autosubscribe
:alt: OCA/sale-workflow
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/sale-workflow-14-0/sale-workflow-14-0-sale_order_disable_user_autosubscribe
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/167/14.0
:alt: Try me on Runbot

|badge1| |badge2| |badge3| |badge4| |badge5|

This module removes the order's salesperson from default followers.

**Table of contents**

.. contents::
:local:

Known issues / Roadmap
======================

* Make it generic, and move it in `OCA/social`

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https:/OCA/sale-workflow/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https:/OCA/sale-workflow/issues/new?body=module:%20sale_order_disable_user_autosubscribe%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
~~~~~~~

* Camptocamp SA

Contributors
~~~~~~~~~~~~

* Matthieu Mequignon <[email protected]>
* `Trobz <https://trobz.com>`_:
* Nguyen Hoang Hiep <[email protected]>

Other credits
~~~~~~~~~~~~~

The migration of this module from 13.0 to 14.0 was financially supported by Camptocamp.

Maintainers
~~~~~~~~~~~

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/sale-workflow <https:/OCA/sale-workflow/tree/14.0/sale_order_disable_user_autosubscribe>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions sale_order_disable_user_autosubscribe/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
15 changes: 15 additions & 0 deletions sale_order_disable_user_autosubscribe/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Copyright 2021 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)

{
"name": "Sale Order Disable User Autosubscribe",
"summary": "Remove the salesperson from autosubscribed sale followers",
"version": "14.0.1.0.0",
"category": "Sales",
"website": "https:/OCA/sale-workflow",
"author": "Camptocamp SA, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"depends": ["sale"],
"data": [],
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * sale_order_disable_user_autosubscribe
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: sale_order_disable_user_autosubscribe
#: model:ir.model,name:sale_order_disable_user_autosubscribe.model_sale_order
msgid "Sales Order"
msgstr ""
1 change: 1 addition & 0 deletions sale_order_disable_user_autosubscribe/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import sale_order
26 changes: 26 additions & 0 deletions sale_order_disable_user_autosubscribe/models/sale_order.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Copyright 2021 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)

from odoo import models


class SaleOrder(models.Model):
_inherit = "sale.order"

def _message_auto_subscribe_followers(self, updated_values, default_subtype_ids):
# By default, _message_auto_subscribe_followers adds the user_id of
# any record inheriting mail.thread to the list of followers.
# This removes this follower from the auto-subscribed followers.
# Note: We could have removed `user_id` from `updated_values` and
# the result would have been the same.
# However, this method could be overriden somewhere and may use this
# `user_id` for some reason, which is why I update the result instead.
res = super()._message_auto_subscribe_followers(
updated_values, default_subtype_ids
)
user_id = updated_values.get("user_id")
if user_id:
user = self.env["res.users"].browse(user_id)
partner = user.partner_id
res = [follower for follower in res if follower[0] != partner.id]
return res
3 changes: 3 additions & 0 deletions sale_order_disable_user_autosubscribe/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* Matthieu Mequignon <[email protected]>
* `Trobz <https://trobz.com>`_:
* Nguyen Hoang Hiep <[email protected]>
1 change: 1 addition & 0 deletions sale_order_disable_user_autosubscribe/readme/CREDITS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The migration of this module from 13.0 to 14.0 was financially supported by Camptocamp.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module removes the order's salesperson from default followers.
1 change: 1 addition & 0 deletions sale_order_disable_user_autosubscribe/readme/ROADMAP.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Make it generic, and move it in `OCA/social`
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit e55b109

Please sign in to comment.