Skip to content

Commit

Permalink
[ADD] website_event_questions_multiple: new module
Browse files Browse the repository at this point in the history
  • Loading branch information
benj-filament authored and remi-filament committed Jul 9, 2024
1 parent 7b13259 commit 660829c
Show file tree
Hide file tree
Showing 18 changed files with 719 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/website_event_questions_multiple/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
88 changes: 88 additions & 0 deletions website_event_questions_multiple/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
===================================
Questions on Events - Type multiple
===================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:de10ccad1e53385cb3c9aa56bc533e4cd053db148e2d5fec32a0a0e04ac0e690
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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%2Fevent-lightgray.png?logo=github
:target: https://github.com/OCA/event/tree/16.0/website_event_questions_multiple
:alt: OCA/event
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/event-16-0/event-16-0-website_event_questions_multiple
: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/event&target_branch=16.0
:alt: Try me on Runboat

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

This module allows to add new question type : Selection multiple which allows
attendees to select multiple answers to a question.

**Table of contents**

.. contents::
:local:

Configuration
=============

On an event, when creating a new question, you can select new type : Selection multiple

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/event/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/event/issues/new?body=module:%20website_event_questions_multiple%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
~~~~~~~

* Le Filament

Contributors
~~~~~~~~~~~~

* Juliana Poudou <JulianaPoudou>
* Benjamin Rivier <benj-filament>

Other credits
~~~~~~~~~~~~~

* Le Filament <https://www.le-filament.com>

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.

This module is part of the `OCA/event <https://github.com/OCA/event/tree/16.0/website_event_questions_multiple>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions website_event_questions_multiple/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import controllers
18 changes: 18 additions & 0 deletions website_event_questions_multiple/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "Questions on Events - Type multiple",
"version": "16.0.1.0.0",
"category": "Marketing",
"website": "https://github.com/OCA/event",
"development_status": "Production/Stable",
"author": "Le Filament, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"depends": ["website_event_questions"],
"data": [
"templates/event_template.xml",
"views/event_questions_views.xml",
"views/event_registration_views.xml",
],
"installable": True,
"auto_install": False,
}
1 change: 1 addition & 0 deletions website_event_questions_multiple/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
44 changes: 44 additions & 0 deletions website_event_questions_multiple/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright 2023 Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)

from odoo.http import request

from odoo.addons.website_event_questions.controllers.main import WebsiteEvent


class WebsiteEvent(WebsiteEvent):
def _process_attendees_form(self, event, form_details):
"""Process data posted from the attendee details form.
Extracts question answers:
- For questions of type 'multiple_choice', extracting the suggested answer id"""
registrations = super(WebsiteEvent, self)._process_attendees_form(

Check warning on line 14 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L14

Added line #L14 was not covered by tests
event, form_details
)

general_answer_ids = []

Check warning on line 18 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L18

Added line #L18 was not covered by tests
for key, _value in form_details.items():
if "question_multi_answer" in key:
dummy, registration_index, question_answer = key.split("-")
question_id, answer_id = question_answer.split("_")
question_sudo = request.env["event.question"].browse(int(question_id))
answer_sudo = request.env["event.question.answer"].browse(

Check warning on line 24 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L21-L24

Added lines #L21 - L24 were not covered by tests
int(answer_id)
)
answer_values = None

Check warning on line 27 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L27

Added line #L27 was not covered by tests
if question_sudo.question_type == "multiple_choice":
answer_values = {

Check warning on line 29 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L29

Added line #L29 was not covered by tests
"question_id": int(question_id),
"value_text_box": answer_sudo.name,
}

if answer_values and not int(registration_index):
general_answer_ids.append((0, 0, answer_values))

Check warning on line 35 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L35

Added line #L35 was not covered by tests
elif answer_values:
registrations[int(registration_index) - 1][

Check warning on line 37 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L37

Added line #L37 was not covered by tests
"registration_answer_ids"
].append((0, 0, answer_values))

for registration in registrations:
registration["registration_answer_ids"].extend(general_answer_ids)

Check warning on line 42 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L42

Added line #L42 was not covered by tests

return registrations

Check warning on line 44 in website_event_questions_multiple/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_multiple/controllers/main.py#L44

Added line #L44 was not covered by tests
4 changes: 4 additions & 0 deletions website_event_questions_multiple/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# © 2023 Le Filament (<http://www.le-filament.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import event_question
13 changes: 13 additions & 0 deletions website_event_questions_multiple/models/event_question.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2023 Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)

from odoo import fields, models


class EventQuestion(models.Model):
_inherit = "event.question"

question_type = fields.Selection(
selection_add=[("multiple_choice", "Multiple Selection")],
ondelete={"multiple_choice": "cascade"},
)
1 change: 1 addition & 0 deletions website_event_questions_multiple/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
On an event, when creating a new question, you can select new type : Multiple Selection
2 changes: 2 additions & 0 deletions website_event_questions_multiple/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Juliana Poudou <JulianaPoudou>
* Benjamin Rivier <benj-filament>
1 change: 1 addition & 0 deletions website_event_questions_multiple/readme/CREDITS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Le Filament <https://www.le-filament.com>
2 changes: 2 additions & 0 deletions website_event_questions_multiple/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module allows to add new question type : Multiple Selection which allows
attendees to select multiple answers to a question.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 660829c

Please sign in to comment.