Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
1 Responder
4731 Visualizações

Hi,

first thank you for your time and your help.

I created some Task Stages (stage1, stage2, stage3), created a project, associated stages to the project. Then created 2 tasks with default stage stage1.

When the user changes the task from stage1 to stage2 I need to check if all others tasks are in stage2 too and in case do something... how can I do it? It doesn't appear to me to be a workflow.

Avatar
Cancelar
Autor Melhor resposta

I resolved overriding the 'project.task' write method



class task(models.Model):

     _inherit = 'project.task'

    @api.multi

    def write(self, values, context=None):


        result = super(task, self).write(values)

        if 'stage_id' in values:

            #do checks here



Is this the best and most elegant solution?


Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
1
jun. 23
3345
1
nov. 22
3613
2
jun. 20
3806
2
jul. 18
7348
4
jul. 18
8174