Mail template to show destiny records in chatter.
Project description
This module provides an email template to show which target records have been modified by a source record.
An email template already exists to show which source record a target record has been created or modified from.
Table of contents
Use Cases / Context
This module has been created to obtain a reverse template of message_origin_link (which allows you to link the origin record in the chatter).
Usage
To use this module, make sure that the template you are going to write the message inherits from mail.thread.
You can call the template like this:
def custom_function(self):
"""Adds a chatter message to origin and destiny records"""
for record in self:
destiny_records = record._create_destiny_records() # A bunch of Destiny Records
mt_note_subtype_id = self.env['ir.model.data']._xmlid_to_res_id('mail.mt_note')
# Add note to chatter that indicates destiny records
record.message_post_with_view(
'mail_message_destiny_link_template.message_destiny_link',
values={'self': record, 'destiny': destiny_records, "edit": False or True},
subtype_id=mt_note_subtype_id,
)
# Origin Link common usage to show differences
for destiny_record in destiny_records:
destiny_record.message_post_with_view(
'mail.message_origin_link',
values={'self': destiny_record, 'origin': record, "edit": False or True},
subtype_id=mt_note_subtype_id,
)
Bug Tracker
Bugs are tracked on GitHub 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.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Eduardo de Miguel (Moduon <https://www.moduon.team/>__)
Maintainers
This module is maintained by the OCA.
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.
Current maintainers:
This module is part of the OCA/server-ux project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file odoo_addon_mail_message_destiny_link_template-16.0.1.0.0.2-py3-none-any.whl.
File metadata
- Download URL: odoo_addon_mail_message_destiny_link_template-16.0.1.0.0.2-py3-none-any.whl
- Upload date:
- Size: 24.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7fb24931d613cea8118a53cc9b8cc8b2d8c3e7ac6969ee5707fb51949ab8d4a
|
|
| MD5 |
81f59d62193f5029c122de365002c76b
|
|
| BLAKE2b-256 |
a1e587224098fcf6ef302b365b9195454402aec9601aa4917dc5f9f28e389197
|