mirror of https://github.com/OCA/social.git
[IMP] mail_optional_follower_notification: default notify followers
Add a settings to set a default for the boolean 'Notifiy Followers' in the wizardpull/1583/head
parent
46eb0e6cac
commit
e345f5e05a
|
@ -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
|
||||
~~~~~~~~~~~
|
||||
|
|
|
@ -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",
|
||||
],
|
||||
}
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
from . import mail_thread
|
||||
from . import res_company
|
||||
from . import res_config_settings
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
from odoo import fields, models
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = "res.company"
|
||||
|
||||
notify_followers = fields.Boolean(default=True)
|
|
@ -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,
|
||||
)
|
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 <<a class="reference external" href="mailto:laurent.mignon@acsone.eu">laurent.mignon@acsone.eu</a>></li>
|
||||
<li>Andrea Stirpe <<a class="reference external" href="mailto:a.stirpe@onestein.nl">a.stirpe@onestein.nl</a>></li>
|
||||
<li>Robin Goots <<a class="reference external" href="mailto:robin.goots@dynapps.be">robin.goots@dynapps.be</a>></li>
|
||||
<li>Quan Nguyen <<a class="reference external" href="mailto:quan.nhm@komit-consulting.com">quan.nhm@komit-consulting.com</a>></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 |
|
@ -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>
|
|
@ -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 = (
|
||||
|
|
Loading…
Reference in New Issue