bemade_fsm: make project.task.allow_billable store=True to un-break Odoo tests.
This commit is contained in:
parent
ca54e5739c
commit
9248af2aaa
1 changed files with 2 additions and 1 deletions
|
|
@ -44,7 +44,8 @@ class Task(models.Model):
|
||||||
# Override related field to make it return false if this is an FSM subtask
|
# Override related field to make it return false if this is an FSM subtask
|
||||||
allow_billable = fields.Boolean(string="Can be billed",
|
allow_billable = fields.Boolean(string="Can be billed",
|
||||||
related=False,
|
related=False,
|
||||||
compute="_compute_allow_billable", )
|
compute="_compute_allow_billable",
|
||||||
|
store=True)
|
||||||
|
|
||||||
visit_id = fields.Many2one(comodel_name='bemade_fsm.visit')
|
visit_id = fields.Many2one(comodel_name='bemade_fsm.visit')
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue