diff --git a/setup/website_sale_product_publish_cron/odoo/addons/website_sale_product_publish_cron b/setup/website_sale_product_publish_cron/odoo/addons/website_sale_product_publish_cron new file mode 120000 index 0000000000..b0a2982b0a --- /dev/null +++ b/setup/website_sale_product_publish_cron/odoo/addons/website_sale_product_publish_cron @@ -0,0 +1 @@ +../../../../website_sale_product_publish_cron \ No newline at end of file diff --git a/setup/website_sale_product_publish_cron/setup.py b/setup/website_sale_product_publish_cron/setup.py new file mode 100644 index 0000000000..28c57bb640 --- /dev/null +++ b/setup/website_sale_product_publish_cron/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/website_sale_product_publish_cron/README.rst b/website_sale_product_publish_cron/README.rst new file mode 100644 index 0000000000..5e1da4d0dd --- /dev/null +++ b/website_sale_product_publish_cron/README.rst @@ -0,0 +1,79 @@ +================================= +Website Sale Product Publish Cron +================================= + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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%2Fe--commerce-lightgray.png?logo=github + :target: https://github.com/OCA/e-commerce/tree/15.0/website_sale_product_publish_cron + :alt: OCA/e-commerce +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/e-commerce-15-0/e-commerce-15-0-website_sale_product_publish_cron + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/113/15.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds expected publish/unpublish date fields to the product, and a scheduled +action to publish/unpublish products according to the product settings. + +This function can be useful if you run an eCommerce platform where a set of products need to be sold for a scheduled timeframe. + +**Table of contents** + +.. contents:: + :local: + +Known issues / Roadmap +====================== + +With this module, if a user unpublishes products that were set to remain published until +a specified expected_unpublish_date, the system will republish them during the next cron run. +The same scenario applies to manually publishing timeframe products. It's essential to update both +the expected_publish_date and expected_unpublish_date if a user decides to manually publish or unpublish for timeframe products. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Quartile Limited + +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/e-commerce `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/website_sale_product_publish_cron/__init__.py b/website_sale_product_publish_cron/__init__.py new file mode 100644 index 0000000000..0650744f6b --- /dev/null +++ b/website_sale_product_publish_cron/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/website_sale_product_publish_cron/__manifest__.py b/website_sale_product_publish_cron/__manifest__.py new file mode 100644 index 0000000000..c4fa74ebc2 --- /dev/null +++ b/website_sale_product_publish_cron/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "Website Sale Product Publish Cron", + "category": "Website", + "version": "15.0.1.0.0", + "author": "Quartile Limited, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/e-commerce", + "license": "AGPL-3", + "depends": ["website_sale"], + "data": [ + "data/product_publish_cron.xml", + "views/product_template_views.xml", + ], + "installable": True, +} diff --git a/website_sale_product_publish_cron/data/product_publish_cron.xml b/website_sale_product_publish_cron/data/product_publish_cron.xml new file mode 100644 index 0000000000..7cb81b5d77 --- /dev/null +++ b/website_sale_product_publish_cron/data/product_publish_cron.xml @@ -0,0 +1,13 @@ + + + + Website Product: Publish and Unpublish + + code + model._check_website_product_visibility() + 1 + hours + -1 + + + diff --git a/website_sale_product_publish_cron/models/__init__.py b/website_sale_product_publish_cron/models/__init__.py new file mode 100644 index 0000000000..e8fa8f6bf1 --- /dev/null +++ b/website_sale_product_publish_cron/models/__init__.py @@ -0,0 +1 @@ +from . import product_template diff --git a/website_sale_product_publish_cron/models/product_template.py b/website_sale_product_publish_cron/models/product_template.py new file mode 100644 index 0000000000..556aa6e545 --- /dev/null +++ b/website_sale_product_publish_cron/models/product_template.py @@ -0,0 +1,37 @@ +# Copyright 2023 Quartile Limited +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class ProductTemplate(models.Model): + _inherit = "product.template" + + expected_publish_date = fields.Datetime() + expected_unpublish_date = fields.Datetime() + + def get_publish_domain(self): + domain = [ + ("website_published", "=", False), + ("expected_publish_date", "<=", fields.datetime.now()), + "|", + ("expected_unpublish_date", ">", fields.datetime.now()), + ("expected_unpublish_date", "=", False), + ] + return domain + + def get_unpublish_domain(self): + domain = [ + ("website_published", "=", True), + ("expected_unpublish_date", "<=", fields.datetime.now()), + ] + return domain + + def _check_website_product_visibility(self): + publish_domain = self.get_publish_domain() + publish_products = self.env["product.template"].search(publish_domain) + publish_products.write({"website_published": True}) + + unpublish_domain = self.get_unpublish_domain() + unpublish_products = self.env["product.template"].search(unpublish_domain) + unpublish_products.write({"website_published": False}) diff --git a/website_sale_product_publish_cron/readme/CONTRIBUTOR.rst b/website_sale_product_publish_cron/readme/CONTRIBUTOR.rst new file mode 100644 index 0000000000..cd4e44ca98 --- /dev/null +++ b/website_sale_product_publish_cron/readme/CONTRIBUTOR.rst @@ -0,0 +1,3 @@ +* `Quartile `__: + + * Aung Ko Ko Lin diff --git a/website_sale_product_publish_cron/readme/DESCRIPTION.rst b/website_sale_product_publish_cron/readme/DESCRIPTION.rst new file mode 100644 index 0000000000..fb0e5a23fb --- /dev/null +++ b/website_sale_product_publish_cron/readme/DESCRIPTION.rst @@ -0,0 +1,4 @@ +This module adds expected publish/unpublish date fields to the product, and a scheduled +action to publish/unpublish products according to the product settings. + +This function can be useful if you run an eCommerce platform where a set of products need to be sold for a scheduled timeframe. diff --git a/website_sale_product_publish_cron/readme/ROADMAP.rst b/website_sale_product_publish_cron/readme/ROADMAP.rst new file mode 100644 index 0000000000..6d2ef83bd4 --- /dev/null +++ b/website_sale_product_publish_cron/readme/ROADMAP.rst @@ -0,0 +1,4 @@ +With this module, if a user unpublishes products that were set to remain published until +a specified expected_unpublish_date, the system will republish them during the next cron run. +The same scenario applies to manually publishing timeframe products. It's essential to update both +the expected_publish_date and expected_unpublish_date if a user decides to manually publish or unpublish for timeframe products. diff --git a/website_sale_product_publish_cron/static/description/index.html b/website_sale_product_publish_cron/static/description/index.html new file mode 100644 index 0000000000..d2cd30a8d9 --- /dev/null +++ b/website_sale_product_publish_cron/static/description/index.html @@ -0,0 +1,422 @@ + + + + + + +Website Sale Product Publish Cron + + + +
+

Website Sale Product Publish Cron

+ + +

Beta License: AGPL-3 OCA/e-commerce Translate me on Weblate Try me on Runbot

+

This module adds expected publish/unpublish date fields to the product, and a scheduled +action to publish/unpublish products according to the product settings.

+

This function can be useful if you run an eCommerce platform where a set of products need to be sold for a scheduled timeframe.

+

Table of contents

+ +
+

Known issues / Roadmap

+

With this module, if a user unpublishes products that were set to remain published until +a specified expected_unpublish_date, the system will republish them during the next cron run. +The same scenario applies to manually publishing timeframe products. It’s essential to update both +the expected_publish_date and expected_unpublish_date if a user decides to manually publish or unpublish for timeframe products.

+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Quartile Limited
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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/e-commerce project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/website_sale_product_publish_cron/views/product_template_views.xml b/website_sale_product_publish_cron/views/product_template_views.xml new file mode 100644 index 0000000000..8288bc388f --- /dev/null +++ b/website_sale_product_publish_cron/views/product_template_views.xml @@ -0,0 +1,14 @@ + + + + product.template.common.form + product.template + + + + + + + + +