Skip to content

Commit a023dd9

Browse files
committed
Merge PR #3637 into 18.0
Signed-off-by ivantodorovich
2 parents cf3e308 + 1438352 commit a023dd9

12 files changed

+593
-0
lines changed

sale_mail_autosubscribe/README.rst

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
=======================
2+
Sale Mail Autosubscribe
3+
=======================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:7454ac686efedfad077e6340b76fc33c00db9ac83ad07a2ce2c83d82bc28548f
11+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12+
13+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
14+
:target: https://odoo-community.org/page/development-status
15+
:alt: Beta
16+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
17+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
18+
:alt: License: AGPL-3
19+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
20+
:target: https://github.com/OCA/sale-workflow/tree/18.0/sale_mail_autosubscribe
21+
:alt: OCA/sale-workflow
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/sale-workflow-18-0/sale-workflow-18-0-sale_mail_autosubscribe
24+
:alt: Translate me on Weblate
25+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
26+
:target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=18.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module allows you to configure partners that will be automatically
32+
in copy of their company's Sales Orders.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Configuration
40+
=============
41+
42+
On each partner, you can check "Sales Orders" on the "In copy of" field.
43+
44+
Bug Tracker
45+
===========
46+
47+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
48+
In case of trouble, please check there if your issue has already been reported.
49+
If you spotted it first, help us to smash it by providing a detailed and welcomed
50+
`feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_mail_autosubscribe%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
51+
52+
Do not contact contributors directly about support or help with technical issues.
53+
54+
Credits
55+
=======
56+
57+
Authors
58+
-------
59+
60+
* Camptocamp SA
61+
62+
Contributors
63+
------------
64+
65+
- `Camptocamp <https://www.camptocamp.com>`__
66+
67+
- Iván Todorovich <ivan.todorovich@gmail.com>
68+
69+
Maintainers
70+
-----------
71+
72+
This module is maintained by the OCA.
73+
74+
.. image:: https://odoo-community.org/logo.png
75+
:alt: Odoo Community Association
76+
:target: https://odoo-community.org
77+
78+
OCA, or the Odoo Community Association, is a nonprofit organization whose
79+
mission is to support the collaborative development of Odoo features and
80+
promote its widespread use.
81+
82+
.. |maintainer-ivantodorovich| image:: https://github.com/ivantodorovich.png?size=40px
83+
:target: https://github.com/ivantodorovich
84+
:alt: ivantodorovich
85+
86+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
87+
88+
|maintainer-ivantodorovich|
89+
90+
This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/18.0/sale_mail_autosubscribe>`_ project on GitHub.
91+
92+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

sale_mail_autosubscribe/__init__.py

Whitespace-only changes.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Copyright 2021 Camptocamp (http://www.camptocamp.com).
2+
# @author Iván Todorovich <ivan.todorovich@gmail.com>
3+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
4+
5+
{
6+
"name": "Sale Mail Autosubscribe",
7+
"summary": "Automatically subscribe partners to their company's sale orders",
8+
"version": "18.0.1.0.0",
9+
"author": "Camptocamp SA, Odoo Community Association (OCA)",
10+
"maintainers": ["ivantodorovich"],
11+
"license": "AGPL-3",
12+
"category": "Sale",
13+
"depends": ["mail_autosubscribe", "sale"],
14+
"website": "https://github.com/OCA/sale-workflow",
15+
"data": ["data/mail_autosubscribe.xml"],
16+
"auto_install": True,
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<!--
3+
Copyright 2021 Camptocamp (http://www.camptocamp.com).
4+
@author Iván Todorovich <ivan.todorovich@gmail.com>
5+
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
6+
-->
7+
<odoo>
8+
<record id="mail_autosubscribe_sale_order" model="mail.autosubscribe">
9+
<field name="model_id" ref="sale.model_sale_order" />
10+
</record>
11+
</odoo>

sale_mail_autosubscribe/i18n/it.po

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
#
4+
msgid ""
5+
msgstr ""
6+
"Project-Id-Version: Odoo Server 14.0\n"
7+
"Report-Msgid-Bugs-To: \n"
8+
"Last-Translator: Automatically generated\n"
9+
"Language-Team: none\n"
10+
"Language: it\n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
#
4+
msgid ""
5+
msgstr ""
6+
"Project-Id-Version: Odoo Server 14.0\n"
7+
"Report-Msgid-Bugs-To: \n"
8+
"Last-Translator: \n"
9+
"Language-Team: \n"
10+
"MIME-Version: 1.0\n"
11+
"Content-Type: text/plain; charset=UTF-8\n"
12+
"Content-Transfer-Encoding: \n"
13+
"Plural-Forms: \n"
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
On each partner, you can check "Sales Orders" on the "In copy of" field.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- [Camptocamp](https://www.camptocamp.com)
2+
3+
> - Iván Todorovich \<ivan.todorovich@gmail.com\>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This module allows you to configure partners that will be automatically
2+
in copy of their company's Sales Orders.
Loading

0 commit comments

Comments
 (0)