[IMP] mail_optional_follower_notification: default notify followers

Add a settings to set a default for the boolean 'Notifiy Followers' in the wizard
pull/1583/head
Quan Nguyen 2023-07-18 11:30:54 +07:00 committed by sygel
parent 46eb0e6cac
commit e345f5e05a
11 changed files with 68 additions and 7 deletions

View File

@ -51,6 +51,9 @@ This field it's initialized to true to keep the standard behavior.
.. figure:: https://raw.githubusercontent.com/OCA/social/16.0/mail_optional_follower_notification/static/description/optional_follower_002.png
:alt: Checkbox to avoid to notify automatically followers
.. figure:: https://raw.githubusercontent.com/OCA/social/16.0/mail_optional_follower_notification/static/description/optional_follower_003.png
:alt: Checkbox to set the default for the wizard
Bug Tracker
===========
@ -76,6 +79,7 @@ Contributors
* Laurent Mignon <laurent.mignon@acsone.eu>
* Andrea Stirpe <a.stirpe@onestein.nl>
* Robin Goots <robin.goots@dynapps.be>
* Quan Nguyen <quan.nhm@komit-consulting.com>
Maintainers
~~~~~~~~~~~

View File

@ -9,5 +9,8 @@
"version": "16.0.1.0.1",
"license": "AGPL-3",
"depends": ["mail"],
"data": ["wizard/mail_compose_message_view.xml"],
"data": [
"views/res_config_settings_view.xml",
"wizard/mail_compose_message_view.xml",
],
}

View File

@ -1 +1,3 @@
from . import mail_thread
from . import res_company
from . import res_config_settings

View File

@ -0,0 +1,7 @@
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
notify_followers = fields.Boolean(default=True)

View File

@ -0,0 +1,10 @@
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
notify_followers = fields.Boolean(
related="company_id.notify_followers",
readonly=False,
)

View File

@ -2,3 +2,4 @@
* Laurent Mignon <laurent.mignon@acsone.eu>
* Andrea Stirpe <a.stirpe@onestein.nl>
* Robin Goots <robin.goots@dynapps.be>
* Quan Nguyen <quan.nhm@komit-consulting.com>

View File

@ -8,3 +8,6 @@ This field it's initialized to true to keep the standard behavior.
.. figure:: static/description/optional_follower_002.png
:alt: Checkbox to avoid to notify automatically followers
.. figure:: static/description/optional_follower_003.png
:alt: Checkbox to set the default for the wizard

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
@ -9,10 +8,11 @@
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
Despite the name, some widely supported CSS2 features are used.
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
@ -275,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code {
margin-left: 2em ;
margin-right: 2em }
pre.code .ln { color: grey; } /* line numbers */
pre.code .ln { color: gray; } /* line numbers */
pre.code, code { background-color: #eeeeee }
pre.code .comment, code .comment { color: #5C6576 }
pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold }
@ -301,7 +301,7 @@ span.option {
span.pre {
white-space: pre }
span.problematic {
span.problematic, pre.problematic {
color: red }
span.section-subtitle {
@ -397,6 +397,9 @@ document and” on mail.compose.message:</p>
<div class="figure">
<img alt="Checkbox to avoid to notify automatically followers" src="https://raw.githubusercontent.com/OCA/social/16.0/mail_optional_follower_notification/static/description/optional_follower_002.png" />
</div>
<div class="figure">
<img alt="Checkbox to set the default for the wizard" src="https://raw.githubusercontent.com/OCA/social/16.0/mail_optional_follower_notification/static/description/optional_follower_003.png" />
</div>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#toc-entry-2">Bug Tracker</a></h1>
@ -421,12 +424,15 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
<li>Laurent Mignon &lt;<a class="reference external" href="mailto:laurent.mignon&#64;acsone.eu">laurent.mignon&#64;acsone.eu</a>&gt;</li>
<li>Andrea Stirpe &lt;<a class="reference external" href="mailto:a.stirpe&#64;onestein.nl">a.stirpe&#64;onestein.nl</a>&gt;</li>
<li>Robin Goots &lt;<a class="reference external" href="mailto:robin.goots&#64;dynapps.be">robin.goots&#64;dynapps.be</a>&gt;</li>
<li>Quan Nguyen &lt;<a class="reference external" href="mailto:quan.nhm&#64;komit-consulting.com">quan.nhm&#64;komit-consulting.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>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.</p>

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

View File

@ -0,0 +1,23 @@
<odoo>
<record id="res_config_settings_view_form" model="ir.ui.view">
<field name="name">res.config.settings.view.form.inherit.mail</field>
<field name="model">res.config.settings</field>
<field name="priority" eval="100" />
<field name="inherit_id" ref="base.res_config_settings_view_form" />
<field name="arch" type="xml">
<xpath expr="//div[@id='emails']" position="inside">
<div class="col-12 col-lg-6 o_setting_box" id="notify_followers">
<div class="o_setting_left_pane">
<field name="notify_followers" />
</div>
<div class="o_setting_right_pane">
<label for="notify_followers" />
<div class="text-muted">
Default notify followers when the user sending email
</div>
</div>
</div>
</xpath>
</field>
</record>
</odoo>

View File

@ -7,7 +7,9 @@ from odoo import fields, models
class MailComposeMessage(models.TransientModel):
_inherit = "mail.compose.message"
notify_followers = fields.Boolean(default=True)
notify_followers = fields.Boolean(
default=lambda self: self.env.company.notify_followers
)
def _action_send_mail(self, auto_commit=False):
result_mails_su, result_messages = (