forked from Yaltik/golem
Add single_parent field to model
This commit is contained in:
parent
459972669c
commit
66b5057709
@ -143,6 +143,8 @@ class GolemFamily(models.Model):
|
|||||||
note = fields.Text()
|
note = fields.Text()
|
||||||
count = fields.Integer(compute='_compute_count', store=True)
|
count = fields.Integer(compute='_compute_count', store=True)
|
||||||
|
|
||||||
|
single_parent = fields.Boolean()
|
||||||
|
|
||||||
@api.depends('member_ids')
|
@api.depends('member_ids')
|
||||||
def _compute_count(self):
|
def _compute_count(self):
|
||||||
for family in self:
|
for family in self:
|
||||||
|
Loading…
Reference in New Issue
Block a user