Skip to content

Commit

Permalink
[ADD] mail_autosubscribe_partner_parent: New module mail_autosubscrib…
Browse files Browse the repository at this point in the history
…e_partner_parent
  • Loading branch information
mpascuall committed Dec 20, 2024
1 parent fb34dbb commit 6fa4e5c
Show file tree
Hide file tree
Showing 11 changed files with 583 additions and 0 deletions.
100 changes: 100 additions & 0 deletions mail_autosubscribe_partner_parent/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
============================
Autosubscribe Partner Parent
============================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:6f0c9e80ca722a371969a9bc4d020480a6ffb2b15491bf45f1910d1dd024eadc
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fsocial-lightgray.png?logo=github
:target: https://github.com/OCA/social/tree/16.0/mail_autosubscribe_partner_parent
:alt: OCA/social
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_autosubscribe_partner_parent
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=16.0
:alt: Try me on Runboat

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

This module extends mail_autosubscribe functionality to add the partner
parent in copy of their child partner documents.

**Table of contents**

.. contents::
:local:

Usage
=====

When creating a selected autosubscribe record, it adds the partner
parent in copy of it.

For example, if you have invoice selected on mail_autosubscribe_ids:

Go to Invoicing > Create a new Invoice > Select the wanted partner >
Confirm the invoice

The parent partner will be automatically added in copy of the invoice.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/social/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/social/issues/new?body=module:%20mail_autosubscribe_partner_parent%0Aversion:%2016.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
-------

* Miquel Pascual

Contributors
------------

- `APSL-Nagarro <https://apsl.tech>`__:

- Miquel Pascual <<[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.

.. |maintainer-mpascuall| image:: https://github.com/mpascuall.png?size=40px
:target: https://github.com/mpascuall
:alt: mpascuall

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-mpascuall|

This module is part of the `OCA/social <https://github.com/OCA/social/tree/16.0/mail_autosubscribe_partner_parent>`_ 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 mail_autosubscribe_partner_parent/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
13 changes: 13 additions & 0 deletions mail_autosubscribe_partner_parent/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "Autosubscribe Partner Parent",
"version": "16.0.1.0.0",
"summary": """Autosubscribes the parent of the partner to the record followers""",
"category": "Marketing",
"license": "AGPL-3",
"author": """Miquel Pascual, Odoo Community Association (OCA)""",
"website": "https://github.com/OCA/social",
"depends": ["mail_autosubscribe", "base_partner_company_group"],
"installable": True,
"application": False,
"maintainers": ["mpascuall"],
}
1 change: 1 addition & 0 deletions mail_autosubscribe_partner_parent/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import base
12 changes: 12 additions & 0 deletions mail_autosubscribe_partner_parent/models/base.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from odoo import api, models


class BaseModel(models.AbstractModel):
_inherit = "base"

@api.model
def _message_get_autosubscribe_followers(self, partners):
domain = self._message_get_autosubscribe_followers_domain(partners)
partners = self.env["res.partner"].sudo().search(domain)
partners_with_parent = partners + (partners.mapped("parent_id"))
return partners_with_parent
2 changes: 2 additions & 0 deletions mail_autosubscribe_partner_parent/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [APSL-Nagarro](<https://apsl.tech>):
- Miquel Pascual \<\<<[email protected]>\>\>
1 change: 1 addition & 0 deletions mail_autosubscribe_partner_parent/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module extends mail_autosubscribe functionality to add the partner parent in copy of their child partner documents.
7 changes: 7 additions & 0 deletions mail_autosubscribe_partner_parent/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
When creating a selected autosubscribe record, it adds the partner parent in copy of it.

For example, if you have invoice selected on mail_autosubscribe_ids:

Go to Invoicing > Create a new Invoice > Select the wanted partner > Confirm the invoice

The parent partner will be automatically added in copy of the invoice.
Loading

0 comments on commit 6fa4e5c

Please sign in to comment.