Odoo18-Base/addons/website_sale/models/product_document.py
2025-01-06 10:57:38 +07:00

21 lines
937 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import _, api, fields, models
from odoo.exceptions import ValidationError
class ProductDocument(models.Model):
_inherit = 'product.document'
shown_on_product_page = fields.Boolean(string="Publish on website")
@api.constrains('res_model', 'shown_on_product_page')
def _unsupported_product_product_document_on_ecommerce(self):
# Not supported for now because product page is dynamic and it would require a lot of work
# to update documents shown according to combination. It'll wait for planned tasks
# rebuilding the product page & variant mixin.
for document in self:
if document.res_model == 'product.product' and document.shown_on_product_page:
raise ValidationError(
_("Documents shown on product page cannot be restricted to a specific variant"))