i want to create an automation in which the customer will automatically added to the specific group when the subscription status is in progress
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilità
- Magazzino
- PoS
- Project
- MRP
La domanda è stata contrassegnata
Hi,
Steps:
1. Settings->Technical->Automation-> Automation rules
model: Sales order(Subscription model is also sale.order)
Tigger: State is set to Sales order (When a sale order is confirmed, the related subscription is considered to be in progress).
2. Add an action for the automation rule.
Hope it helps.
Go to: Settings > Technical > Automation > Automated Actions
Create a new automation Action
- Model: Subscription
- Trigger: On Update
- Trigger Fields: state
- Filter: State = 'in_progress'
- Action To Do: Execute Python Code
- python code
group = env.ref('base.group_user')
partner = record.partner_id
user = partner.user_ids and partner.user_ids[0]
if user and group not in user.groups_id:
user.groups_id += group
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!
Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!
RegistratiPost correlati | Risposte | Visualizzazioni | Attività | |
---|---|---|---|---|
|
2
ago 25
|
114 | ||
|
2
ago 25
|
1259 | ||
|
0
feb 25
|
1426 | ||
|
1
gen 25
|
1962 | ||
|
2
dic 24
|
1644 |