This commit is contained in:
michel 2017-11-13 16:30:08 +01:00
parent 0ae67777a6
commit 39bb404f99
1 changed files with 0 additions and 5 deletions

View File

@ -42,11 +42,6 @@ class Coworker(models.Model):
is_done = fields.Boolean('Done?')
is_active = fields.Boolean('Active?', default=True)
# # Kanban
# kanban_state = fields.Selection([('normal', 'In Progress'),
# ('blocked', 'Blocked'),
# ('done', 'Ready for next stage')],
# 'Kanban State', default='normal')
@api.depends('name', 'firstname')
def _compute_full_name(self):