Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
2 Respostas
2246 Visualizações

Hi,

I want to use an automated action which changes the state of my CRM opportunity automatically to a 'won' status when I validate the (sales)quotation which is related to the opportunity. can someone give me some advice?

Thanks in advance for your answer

Thijs


Avatar
Cancelar
Melhor resposta

Hi,

For changing the state of CRM opportunity automatically to a 'won' status when validating the (sales)quotation, First Inherit the sale.order model. Then super the function action_confirm. 

def action_confirm(self):
              res = super(SalesOrderInherit, self).action_confirm()
              if self.opportunity_id:
                      self.opportunity_id.action_set_won_rainbowman()
             return res

Regards

Avatar
Cancelar
Melhor resposta


There is opportunity_id field.

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
0
set. 24
1423
0
mai. 24
26
1
abr. 24
4856
0
mar. 24
1731
0
mar. 24
1740