Skip to Content
Menu
This question has been flagged
2 Replies
5583 Views

Hi,

I wanted to create a stage in Project . I have added a default group by . But I cannot make it permanent . How can I make some Stage Folded in Kanban with a boolean field which is already there in some modules .

Thanks in advance.


Avatar
Discard
Best Answer

Hi Shylok,

When you hover over the top of the stage a cog wheel will appear.

Click this and select edit. in the next screen tick the box for "folded in pipeline"

Avatar
Discard
Best Answer

Hi,

Just add a Boolean field in your model and give _fold_name = 'Your Boolean Field'

Eg: 

class ClassName(models.Model):
    _name = 'model.name'
    _fold_name = 'fold'


fold = fields.Boolean(string = 'Folded in Kanban',
                          help = 'This stage is folded in the kanban view when there are no records in that stage to display.')

Hope it helps

Avatar
Discard