Skip to content

Commit a759184

Browse files
committed
[16.0][ADD] partner_survey_sms
Send survey participation link via SMS
1 parent 7a55cb6 commit a759184

File tree

13 files changed

+702
-0
lines changed

13 files changed

+702
-0
lines changed

partner_survey_sms/README.rst

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
==================
2+
Partner Survey SMS
3+
==================
4+
5+
..
6+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7+
!! This file is generated by oca-gen-addon-readme !!
8+
!! changes will be overwritten. !!
9+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10+
!! source digest: sha256:80acb0e9467a13d3fb8d8add70d8da44dfbc5520c06d985a013d8263578482f0
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%2Fsurvey-lightgray.png?logo=github
20+
:target: https://github.com/OCA/survey/tree/16.0/partner_survey_sms
21+
:alt: OCA/survey
22+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
23+
:target: https://translation.odoo-community.org/projects/survey-16-0/survey-16-0-partner_survey_sms
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/survey&target_branch=16.0
27+
:alt: Try me on Runboat
28+
29+
|badge1| |badge2| |badge3| |badge4| |badge5|
30+
31+
This module enables users to send the survey participation link through
32+
SMS in addition to emails.
33+
34+
**Table of contents**
35+
36+
.. contents::
37+
:local:
38+
39+
Bug Tracker
40+
===========
41+
42+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/survey/issues>`_.
43+
In case of trouble, please check there if your issue has already been reported.
44+
If you spotted it first, help us to smash it by providing a detailed and welcomed
45+
`feedback <https://github.com/OCA/survey/issues/new?body=module:%20partner_survey_sms%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
46+
47+
Do not contact contributors directly about support or help with technical issues.
48+
49+
Credits
50+
=======
51+
52+
Authors
53+
-------
54+
55+
* Kencove
56+
* Camptocamp
57+
58+
Contributors
59+
------------
60+
61+
- `Kencove <https://kencove.com>`__:
62+
63+
- Mohamed Alkobrosli
64+
65+
Maintainers
66+
-----------
67+
68+
This module is maintained by the OCA.
69+
70+
.. image:: https://odoo-community.org/logo.png
71+
:alt: Odoo Community Association
72+
:target: https://odoo-community.org
73+
74+
OCA, or the Odoo Community Association, is a nonprofit organization whose
75+
mission is to support the collaborative development of Odoo features and
76+
promote its widespread use.
77+
78+
This module is part of the `OCA/survey <https://github.com/OCA/survey/tree/16.0/partner_survey_sms>`_ project on GitHub.
79+
80+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

partner_survey_sms/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Copyright 2025 Kencove - Mohamed Alkobrosli (http://kencove.com)
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
3+
from . import wizard

partner_survey_sms/__manifest__.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Copyright 2025 Kencove - Mohamed Alkobrosli (http://kencove.com)
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
3+
{
4+
"name": "Partner Survey SMS",
5+
"summary": "Send survey participation link via SMS",
6+
"category": "Marketing/Surveys",
7+
"version": "16.0.1.0.0",
8+
"author": "Kencove, Camptocamp, Odoo Community Association (OCA)",
9+
"website": "https://github.com/OCA/survey",
10+
"license": "AGPL-3",
11+
"depends": [
12+
"survey",
13+
"sms",
14+
"html_text",
15+
],
16+
"data": [
17+
"data/sms_template.xml",
18+
"wizard/survey_invite_views.xml",
19+
],
20+
"installable": True,
21+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<data noupdate="0">
3+
4+
<record id="partner_survey_sms_template_notification" model="sms.template">
5+
<field name="name">Partner Survey SMS: Survey Participation Notification</field>
6+
<field
7+
name="body"
8+
>Hello {{ object.display_name }}, {{ ctx['requested_by_user'] }} has requested your participation on the following survey: {{ ctx['link'] }}&#10;{{ ctx['message'] }}</field>
9+
<field name="lang">{{ object.lang }}</field>
10+
<field name="model_id" ref="base.model_res_partner" />
11+
</record>
12+
13+
</data>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- [Kencove](https://kencove.com):
2+
- Mohamed Alkobrosli
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This module enables users to send the survey participation link through SMS in addition
2+
to emails.
9.23 KB
Loading

0 commit comments

Comments
 (0)