Skip to content
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
93 changes: 93 additions & 0 deletions survey_contact_generation_model_selection/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
==============================================
Survey contacts generation for model selection
==============================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:d3efa8a915eb8c18de733b4b269129e34e12861fea932af516ede7b8cbe5ee34
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |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%2Fsurvey-lightgray.png?logo=github
:target: https://github.com/OCA/survey/tree/17.0/survey_contact_generation_model_selection
:alt: OCA/survey
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/survey-17-0/survey-17-0-survey_contact_generation_model_selection
: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/survey&target_branch=17.0
:alt: Try me on Runboat

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

This module allows to generate new contacts from surveys answers with
the type question model selection.

**Table of contents**

.. contents::
:local:

Usage
=====

if the survey is properly configured, once it is submited by an
anonomous user, a new contact is create or an existing one is linked.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/survey/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/survey/issues/new?body=module:%20survey_contact_generation_model_selection%0Aversion:%2017.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
-------

* Tecnativa

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

- `Tecnativa <https://www.tecnativa.com>`__

- Eduardo Ezerouali

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-eduezerouali-tecnativa| image:: https://github.com/eduezerouali-tecnativa.png?size=40px
:target: https://github.com/eduezerouali-tecnativa
:alt: eduezerouali-tecnativa

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

|maintainer-eduezerouali-tecnativa|

This module is part of the `OCA/survey <https://github.com/OCA/survey/tree/17.0/survey_contact_generation_model_selection>`_ 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 survey_contact_generation_model_selection/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
14 changes: 14 additions & 0 deletions survey_contact_generation_model_selection/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2025 Tecnativa - Eduardo Ezerouali
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Survey contacts generation for model selection",
"summary": "Generate new contacts from surveys using model selection",
"version": "17.0.1.0.0",
"category": "Marketing/Survey",
"website": "https://github.com/OCA/survey",
"author": "Tecnativa, Odoo Community Association (OCA)",
"maintainers": ["eduezerouali-tecnativa"],
"license": "AGPL-3",
"depends": ["survey_contact_generation", "survey_question_type_model_selection"],
"auto_install": True,
}
2 changes: 2 additions & 0 deletions survey_contact_generation_model_selection/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import survey_question
from . import survey_user_input
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2025 Tecnativa - Eduardo Ezerouali
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, models


class SurveyQuestion(models.Model):
_inherit = "survey.question"

@api.depends("question_type")
def _compute_allowed_partner_field_domain(self):
res = super()._compute_allowed_partner_field_domain()
for record in self:
if record.question_type == "model":
record.allowed_partner_field_domain = [
("model", "=", "res.partner"),
("ttype", "in", ["many2one", "many2many"]),
("store", "=", True),
("readonly", "=", False),
]
return res
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copyright 2025 Tecnativa - Eduardo Ezerouali
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import models


class SurveyUserInput(models.Model):
_inherit = "survey.user_input"

def _prepare_partner(self):
res = super()._prepare_partner()
for key, value in res.items():
if isinstance(value, models.BaseModel):
if len(value) == 1:
res[key] = value.id
else:
res[key] = [(6, 0, value.ids)]
return res
3 changes: 3 additions & 0 deletions survey_contact_generation_model_selection/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [Tecnativa](https://www.tecnativa.com)
- Eduardo Ezerouali
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module allows to generate new contacts from surveys answers with the type question model selection.
2 changes: 2 additions & 0 deletions survey_contact_generation_model_selection/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
if the survey is properly configured, once it is submited by an
anonomous user, a new contact is create or an existing one is linked.
Loading
Loading