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

[ADD] website_sale_product_trial #352

Draft
wants to merge 1 commit into
base: 16.0
Choose a base branch
from
Draft
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_sale_product_trial/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,
)
70 changes: 70 additions & 0 deletions website_sale_product_trial/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
==========================
Website Sale Product Trial
==========================

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

.. |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-coopiteasy%2Faddons-lightgray.png?logo=github
:target: https://github.com/coopiteasy/addons/tree/16.0/website_sale_product_trial
:alt: coopiteasy/addons

|badge1| |badge2| |badge3|

Form to order subscription product

**Table of contents**

.. contents::
:local:

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

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

* Coop IT Easy SC

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

* `Coop IT Easy SC <https://coopiteasy.be>`_:

* Rémy Taymans

Maintainers
~~~~~~~~~~~

.. |maintainer-remytms| image:: https://github.com/remytms.png?size=40px
:target: https://github.com/remytms
:alt: remytms

Current maintainer:

|maintainer-remytms|

This module is part of the `coopiteasy/addons <https://github.com/coopiteasy/addons/tree/16.0/website_sale_product_trial>`_ project on GitHub.

You are welcome to contribute.
5 changes: 5 additions & 0 deletions website_sale_product_trial/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
from . import models
from . import controllers
27 changes: 27 additions & 0 deletions website_sale_product_trial/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

{
"name": "Website Sale Product Trial",
"summary": """
Configure product contract to be a trial subscription.""",
"version": "16.0.1.0.0",
"category": "Website",
"website": "https://github.com/coopiteasy/addons",
"author": "Coop IT Easy SC",
"maintainers": ["remytms"],
"license": "AGPL-3",
"application": False,
"depends": [
"website_sale_product_compatibility",
"product",
],
"excludes": [],
"data": [
"views/product_views.xml",
"views/templates.xml",
],
"demo": [],
"qweb": [],
}
4 changes: 4 additions & 0 deletions website_sale_product_trial/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
from . import main
35 changes: 35 additions & 0 deletions website_sale_product_trial/controllers/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

from odoo import http
from odoo.http import request

from odoo.addons.website_sale.controllers.main import WebsiteSale


class WebsiteSaleProductTrial(WebsiteSale):
@http.route(
"/shop/payment/validate",
type="http",
auth="public",
website=True,
sitemap=False,
)
def shop_payment_validate(self, sale_order_id=None, **post):
result = super().shop_payment_validate(sale_order_id=sale_order_id, **post)
if "my/order" in result.location:
result.location = "/shop/main/confirmation"
return result

@http.route(
"/shop/main/confirmation",
type="http",
auth="public",
website=True,
sitemap=False,
)
def shop_main_confirmation(self):
"""General confirmation for product. Used to skip view of the
invoice."""
return request.render("website_sale_product_trial.main_confirmation", {})
69 changes: 69 additions & 0 deletions website_sale_product_trial/i18n/website_sale_restrict_sepa_dd.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * website_sale_restrict_sepa_dd
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: website_sale_restrict_sepa_dd
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_product_product__allow_sepa_dd_payment
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_product_template__allow_sepa_dd_payment
msgid "Allow SEPA Direct Debit Payment"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#. odoo-python
#: code:addons/website_sale_restrict_sepa_dd/models/product_template.py:0
#, python-format
msgid ""
"Allow SEPA Direct Debit payment for the product in ordre to set Only SEPA "
"Direct Debit payment."
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_sale_order__allow_sepa_dd_payment
msgid "Allow Sepa Dd Payment"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#. odoo-python
#: code:addons/website_sale_restrict_sepa_dd/models/sale_order.py:0
#, python-format
msgid ""
"Cannot add product that does not allow SEPA Direct Debit with products that "
"allow only SEPA Direct Debit payment."
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_product_product__only_sepa_dd_payment
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_product_template__only_sepa_dd_payment
msgid "Only SEPA Direct Debit Payment"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model.fields,field_description:website_sale_restrict_sepa_dd.field_sale_order__only_sepa_dd_payment
msgid "Only Sepa Dd Payment"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model,name:website_sale_restrict_sepa_dd.model_payment_provider
msgid "Payment Provider"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model,name:website_sale_restrict_sepa_dd.model_product_template
msgid "Product"
msgstr ""

#. module: website_sale_restrict_sepa_dd
#: model:ir.model,name:website_sale_restrict_sepa_dd.model_sale_order
msgid "Sales Order"
msgstr ""
5 changes: 5 additions & 0 deletions website_sale_product_trial/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later
from . import product_template
from . import sale_order
11 changes: 11 additions & 0 deletions website_sale_product_trial/models/product_template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later

from odoo import fields, models


class ProductTemplate(models.Model):
_inherit = "product.template"

is_trial = fields.Boolean()
48 changes: 48 additions & 0 deletions website_sale_product_trial/models/sale_order.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# SPDX-FileCopyrightText: 2024 Coop IT Easy SC
#
# SPDX-License-Identifier: AGPL-3.0-or-later


from odoo import _, api, models
from odoo.exceptions import ValidationError


class SaleOrder(models.Model):
_inherit = "sale.order"

@api.constrains("order_line")
def _check_trial_alone(self):
"""Ensure trial are not mixed in a sale order."""
for order in self:
at_least_one_trial = any(
order.order_line.mapped("product_id").mapped("is_trial")
)
if at_least_one_trial and order.order_line > 1:
raise ValidationError(
_(
"Cannot add product trial in an order that "
"contains other products."
)
)

def check_product_compatibility(self, product_id):
warning = super().check_product_compatibility(product_id)
if not warning:
product = self.env["product.product"].browse(product_id).exists()
non_trials = self.order_line.mapped("product_id").filtered(
lambda p: not p.is_trial
)
any_trial = any(self.order_line.mapped("product_id").mapped("is_trial"))
if product:
if product.is_trial and non_trials:
warning = _(
f"Product {product.name} cannot be added because "
"it's a trial and trial must be ordered seperately."
)
elif not product.is_trial and any_trial:
warning = _(
f"Product {product.name} cannot be added because "
"order contains products that are trials and "
"trials must be ordered separately."
)
return warning
3 changes: 3 additions & 0 deletions website_sale_product_trial/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* `Coop IT Easy SC <https://coopiteasy.be>`_:

* Rémy Taymans
1 change: 1 addition & 0 deletions website_sale_product_trial/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Form to order subscription product
Loading
Loading