Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[16.0][ADD] website_event_questions_date: new module #386

Open
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
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
6 changes: 6 additions & 0 deletions setup/website_event_questions_date/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_date/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
===============================
Questions on Events - Type date
===============================

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

.. |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%2Fevent-lightgray.png?logo=github
:target: https://github.com/OCA/event/tree/16.0/website_event_questions_date
: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_date
: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 types in format Date or Datetime.

**Table of contents**

.. contents::
:local:

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

On an event, when creating a new question, you can select between
2 new types of questions : Date or Datetime

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_date%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_date>`_ 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_date/__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_date/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "Questions on Events - Type date",
"summary": "Questions on Events - Type date",
"version": "16.0.1.0.0",
"category": "Marketing",
"website": "https://github.com/OCA/event",
"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_date/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
37 changes: 37 additions & 0 deletions website_event_questions_date/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 2023 Le Filament (https://le-filament.com)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)

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 both questions asked 'once_per_order' and questions asked to every attendee
- For questions of type 'date', extracting the text answer of the attendee."""
registrations = super(WebsiteEvent, self)._process_attendees_form(

Check warning on line 13 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L13

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

general_answer_ids = []

Check warning on line 17 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L17

Added line #L17 was not covered by tests
for key, value in form_details.items():
if "question_date" in key and value:
dummy, registration_index, question_id = key.split("-")
answer_values = None
answer_values = {

Check warning on line 22 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L20-L22

Added lines #L20 - L22 were not covered by tests
"question_id": int(question_id),
"value_text_box": value,
}

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

Check warning on line 28 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L28

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

Check warning on line 30 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L30

Added line #L30 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 35 in website_event_questions_date/controllers/main.py

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L35

Added line #L35 was not covered by tests

return registrations

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

View check run for this annotation

Codecov / codecov/patch

website_event_questions_date/controllers/main.py#L37

Added line #L37 was not covered by tests
1 change: 1 addition & 0 deletions website_event_questions_date/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import event_question
44 changes: 44 additions & 0 deletions website_event_questions_date/models/event_question.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 import fields, models


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

question_type = fields.Selection(
selection_add=[("date", "Date"), ("date_time", "DateTime")],
ondelete={"date": "cascade", "date_time": "cascade"},
)
# ------------------------------------------------------
# Fields declaration
# ------------------------------------------------------

# ------------------------------------------------------
# SQL Constraints
# ------------------------------------------------------

# ------------------------------------------------------
# Default methods
# ------------------------------------------------------

# ------------------------------------------------------
# Computed fields / Search Fields
# ------------------------------------------------------

# ------------------------------------------------------
# Onchange / Constraints
# ------------------------------------------------------

# ------------------------------------------------------
# CRUD methods (ORM overrides)
# ------------------------------------------------------

# ------------------------------------------------------
# Actions
# ------------------------------------------------------

# ------------------------------------------------------
# Business methods
# ------------------------------------------------------
2 changes: 2 additions & 0 deletions website_event_questions_date/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
On an event, when creating a new question, you can select between
2 new types of questions : Date or Datetime
2 changes: 2 additions & 0 deletions website_event_questions_date/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_date/readme/CREDITS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* Le Filament <https://www.le-filament.com>
1 change: 1 addition & 0 deletions website_event_questions_date/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This module allows to add new question types in format Date or Datetime.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading