Odoo18-Base/addons/website_sale/populate/product_product.py

14 lines
473 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
from odoo.tools import populate
class ProductProduct(models.Model):
_inherit = 'product.product'
def _populate_get_product_factories(self):
"""Populate the invoice_policy of product.product & product.template models."""
return super()._populate_get_product_factories() + [
('is_published', populate.randomize([True, False], [8, 2]))]