Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions base_kanban_stage/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Contributors
* Dave Lasley <dave@laslabs.com>
* Oleg Bulkin <obulkin@laslabs.com>
* Daniel Reis <dreis.pt@hotmail.com>
* Alex Comba <alex.comba@agilebg.com>

Maintainer
----------
Expand Down
2 changes: 1 addition & 1 deletion base_kanban_stage/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
'name': 'Kanban - Stage Support',
'summary': 'Provides stage model and abstract logic for inheritance',
'version': '9.0.1.0.0',
'version': '9.0.1.0.1',
'author': "LasLabs, Odoo Community Association (OCA)",
'category': 'base',
'depends': [
Expand Down
2 changes: 1 addition & 1 deletion base_kanban_stage/models/base_kanban_abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class BaseKanbanAbstract(models.AbstractModel):
default=lambda s: s._default_stage_id(),
domain=lambda s: [('res_model.model', '=', s._name)],
)
user_id = fields.Many2one(
kanban_user_id = fields.Many2one(
string='Assigned To',
comodel_name='res.users',
index=True,
Expand Down
2 changes: 1 addition & 1 deletion base_kanban_stage/views/base_kanban_abstract.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<field name="kanban_legend_blocked"/>
<field name="kanban_legend_normal"/>
<field name="kanban_legend_done"/>
<field name="user_id"/>
<field name="kanban_user_id"/>
<templates>
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_color_#{kanban_getcolor(record.kanban_color.raw_value)} o_kanban_record oe_kanban_global_click">
Expand Down