Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
1356 Lượt xem

En CRM creé un bool  x_studio_crear_oportunidad_de_seguimiento


Si está activado y una oportunidad se mueve a ganada cree una acción automatizada que crea para el mismo cliente una nueva oportunidad.

if record.x_studio_crear_oportunidad_de_seguimiento:
    new_opportunity = record.copy({
        'name': f"Seguimiento de {record.name}",
        'stage_id': 1,  # ID de la etapa inicial que desees para la nueva oportunidad
        'partner_id': record.partner_id.id,  # Asociamos la nueva oportunidad al mismo cliente
    })


me pueden ayudar

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Thanks! 

I forgot to say, that a I would like this oportunity to have a date_deadline one year from the moment i'ts created. This is something i could´t do. If any of you helps me I would be greatfull

Ảnh đại diện
Huỷ bỏ

Nahuel, in that case you can map a domain conditions or you can change in code

Tác giả

How could I do that y the code you gave me?

Câu trả lời hay nhất

Hello Nahuel, 

For this kindly configure the automation rule like this .. 

Code :
x = env['crm.lead'].browse(record.id)

if x.x_studio_testing:

    env['crm.lead'].create({'name':'New Lead for Customer','partner_id':x.partner_id.id})

Thanks,

Ảnh đại diện
Huỷ bỏ

Code may be optimized as follows:

if record.x_studio_testing:

env['crm.lead'].create({'name':'New Lead for Customer','partner_id':x.partner_id.id})

Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 3 22
1835
1
thg 7 24
2678
0
thg 2 23
1578
1
thg 1 21
10963
1
thg 10 23
2929