Skip to content

[ADD] mail_multicompany MR #482 #313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 12.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 87 additions & 0 deletions mail_multicompany/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
===========================
Email Gateway Multi company
===========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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%2Fmulti--company-lightgray.png?logo=github
:target: https://github.com/OCA/multi-company/tree/14.0/mail_multicompany
:alt: OCA/multi-company
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/multi-company-14-0/multi-company-14-0-mail_multicompany
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/133/14.0
:alt: Try me on Runbot

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

This module adds company_id to the models ir.mail_server and mail.message. Also inherits mail.message create function to set the company mail_server.

**Table of contents**

.. contents::
:local:

Configuration
=============

* Go to 'Settings / Technical / Outgoing Mail Servers', and add the company.

Usage
=====

To use this module, you need to:

* Send some email or message that comes out of Odoo.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/multi-company/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://github.com/OCA/multi-company/issues/new?body=module:%20mail_multicompany%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
~~~~~~~

* Comunitea

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

* Jesús Ventosinos Mayor <[email protected]>
* Cédric Pigeon <[email protected]>
* Valentin Vinagre <[email protected]>

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/multi-company <https://github.com/OCA/multi-company/tree/14.0/mail_multicompany>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions mail_multicompany/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import models
13 changes: 13 additions & 0 deletions mail_multicompany/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Email Gateway Multi company",
"version": "12.0.0.1.0",
"category": "Extra Tools",
"author": "Odoo Community Association (OCA), " "Comunitea, " "GRAP",
"maintainers": ["quentinDupont"],
"website": "https://github.com/OCA/multi-company",
"license": "AGPL-3",
"depends": ["mail"],
"data": ["security/mail_security.xml", "views/ir_mail_server_view.xml"],
"installable": True,
}
34 changes: 34 additions & 0 deletions mail_multicompany/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_multicompany
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-03-09 17:45+0000\n"
"Last-Translator: Ana Suárez <[email protected]>\n"
"Language-Team: none\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3.2\n"

#. module: mail_multicompany
#: model:ir.model.fields,field_description:mail_multicompany.field_ir_mail_server__company_id
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_mail__company_id
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_message__company_id
msgid "Company"
msgstr "Compañía"

#. module: mail_multicompany
#: model:ir.model,name:mail_multicompany.model_ir_mail_server
msgid "Mail Server"
msgstr "Servidor de email"

#. module: mail_multicompany
#: model:ir.model,name:mail_multicompany.model_mail_message
msgid "Message"
msgstr "Mensaje"
49 changes: 49 additions & 0 deletions mail_multicompany/i18n/mail_multicompany.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * mail_multicompany
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.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: mail_multicompany
#: model:ir.model.fields,field_description:mail_multicompany.field_ir_mail_server__company_id
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_mail__company_id
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_message__company_id
msgid "Company"
msgstr ""

#. module: mail_multicompany
#: model:ir.model.fields,field_description:mail_multicompany.field_ir_mail_server__display_name
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_message__display_name
msgid "Display Name"
msgstr ""

#. module: mail_multicompany
#: model:ir.model.fields,field_description:mail_multicompany.field_ir_mail_server__id
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_message__id
msgid "ID"
msgstr ""

#. module: mail_multicompany
#: model:ir.model.fields,field_description:mail_multicompany.field_ir_mail_server____last_update
#: model:ir.model.fields,field_description:mail_multicompany.field_mail_message____last_update
msgid "Last Modified on"
msgstr ""

#. module: mail_multicompany
#: model:ir.model,name:mail_multicompany.model_ir_mail_server
msgid "Mail Server"
msgstr ""

#. module: mail_multicompany
#: model:ir.model,name:mail_multicompany.model_mail_message
msgid "Message"
msgstr ""
4 changes: 4 additions & 0 deletions mail_multicompany/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from . import ir_mail_server
from . import mail_message
10 changes: 10 additions & 0 deletions mail_multicompany/models/ir_mail_server.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class IrMailServer(models.Model):

_inherit = "ir.mail_server"

company_id = fields.Many2one("res.company", "Company")
34 changes: 34 additions & 0 deletions mail_multicompany/models/mail_message.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).

from odoo import api, fields, models


class MailMessage(models.Model):

_inherit = "mail.message"

company_id = fields.Many2one("res.company", "Company")

@api.model_create_multi
def create(self, values_list):
for vals in values_list:
if vals.get("model") and vals.get("res_id"):
current_object = self.env[vals["model"]].browse(vals["res_id"])
if hasattr(current_object, "company_id") and current_object.company_id:
vals["company_id"] = current_object.company_id.id
if not vals.get("company_id"):
vals["company_id"] = self.env.user.company_id.id
# Search SMTP server with company_id or shared SMTP server
if not vals.get("mail_server_id"):
vals["mail_server_id"] = (
self.sudo()
.env["ir.mail_server"]
.search(
['|', ("company_id", "=", vals.get("company_id", False)),
("company_id", "=", False)],
order="sequence",
limit=1,
)
.id
)
return super(MailMessage, self).create(vals)
2 changes: 2 additions & 0 deletions mail_multicompany/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Go to 'Settings / Technical / Outgoing Mail Servers', and add the company.
* Note that Odoo will select the server (using sequence) from among the available servers (those with the correct company_id and shared servers).
4 changes: 4 additions & 0 deletions mail_multicompany/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Jesús Ventosinos Mayor <[email protected]>
* Cédric Pigeon <[email protected]>
* Valentin Vinagre <[email protected]>
* Quentin Dupont <[email protected]>
1 change: 1 addition & 0 deletions mail_multicompany/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module adds company_id to the models ir.mail_server and mail.message. Also inherits mail.message create function to set the company mail_server.
3 changes: 3 additions & 0 deletions mail_multicompany/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
To use this module, you need to:

* Send some email or message that comes out of Odoo.
19 changes: 19 additions & 0 deletions mail_multicompany/security/mail_security.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="1">
<record model="ir.rule" id="mail_server_rule">
<field name="name">mail_server multi-company</field>
<field
name="model_id"
search="[('model','=','ir.mail_server')]"
model="ir.model"
/>
<field name="global" eval="True" />
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
<record model="ir.rule" id="mail_mail_rule">
<field name="name">mail_mail multi-company</field>
<field name="model_id" search="[('model','=','mail.mail')]" model="ir.model" />
<field name="global" eval="True" />
<field name="domain_force">['|',('company_id','=',False),('company_id','child_of',[user.company_id.id])]</field>
</record>
</odoo>
Binary file added mail_multicompany/static/description/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading