forked from Mapan/odoo17e
14 lines
400 B
Python
14 lines
400 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models
|
|
from odoo.tools import populate
|
|
|
|
|
|
class ProjectProject(models.Model):
|
|
_inherit = "project.project"
|
|
|
|
def _populate_factories(self):
|
|
res = super()._populate_factories()
|
|
res += [("is_fsm", populate.randomize([True, False], [0.2, 0.8]))]
|
|
return res
|