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

Hello Dears,.


I want when quotation status be Cancel the Customer i select in the quotation will be deactivate automatically 

Avatar
Cancelar
Melhor resposta

Hi,

You can make the customer inactive by super the function of the cancel button.

class SaleOrderInherit(models.Model):
_inherit = 'sale.order'

@api.multi
def action_cancel(self, vals):
self.partner_id.active = False
res = super(SaleOrderInherit, self).action_cancel()
return res


Thanks

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
2
mar. 24
2953
5
mai. 20
3880
1
mar. 15
5036
1
mar. 15
4147
2
jul. 25
1471