Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
1474 Weergaven

From the CRM, how can I create an automation so that when I send a quotation, the lead/opportunity automatically updates and moves to the Proposal stage?


Version 18.0+e

Avatar
Annuleer
Beste antwoord

Hii,

please try this 

Activate Developer Mode

create  Automated Actions.

Click “Create” and fill in the following:

  • Name: Move to Proposal on Quotation Sent
  • Model: Sale Order
  • Trigger: On Update
  • Apply On: Add a domain to filter only sent quotations:

[('state','=','sent')]


Add Python Code in the Action (Server Action)

Paste this in the Python Code section:

if record.opportunity_id:

    proposal_stage = env['crm.stage'].search([('name', '=', 'Proposal')], limit=1)

    if proposal_stage:

        record.opportunity_id.stage_id = proposal_stage.id


i hope it is use full

Avatar
Annuleer
Beste antwoord

Hi,

Please refer to the following links:

1. https://www.youtube.com/watch?v=BBFSTxG9WKI


Hope it helps.

Avatar
Annuleer
Gerelateerde posts Antwoorden Weergaven Activiteit
1
aug. 24
2168
1
nov. 23
3548
0
mei 20
3117
2
dec. 24
1556
1
sep. 24
1768