[MIG] project_task_line: for Odoo 14.0

This commit is contained in:
Connor Christian
2020-11-17 13:55:03 -05:00
committed by Mayank Patel
parent 8245f25e93
commit 7d47bb242c
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{ {
'name': 'Project Task Lines', 'name': 'Project Task Lines',
'version': '13.0.1.0.0', 'version': '14.0.1.0.0',
'author': 'Hibou Corp. <hello@hibou.io>', 'author': 'Hibou Corp. <hello@hibou.io>',
'website': 'https://hibou.io/', 'website': 'https://hibou.io/',
'license': 'AGPL-3', 'license': 'AGPL-3',

View File

@@ -34,7 +34,7 @@ class ProjectTaskLine(models.Model):
help="A task's kanban state indicates special situations affecting it:\n" help="A task's kanban state indicates special situations affecting it:\n"
" * Blank is the default situation\n" " * Blank is the default situation\n"
" * Blocked indicates something is preventing the progress of this task\n" " * Blocked indicates something is preventing the progress of this task\n"
" * Doen indicates the task is complete") " * Done indicates the task is complete")
@api.onchange('kanban_state') @api.onchange('kanban_state')
def _onchange_kanban_state(self): def _onchange_kanban_state(self):