I want to send a confirmation email to my customer automatically when i click on 'confirm sale' in quotation. is it possible ??
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- إدارة علاقات العملاء
- e-Commerce
- المحاسبة
- المخزون
- PoS
- Project
- MRP
لقد تم الإبلاغ عن هذا السؤال
hello
inherit the button and pass the context "send_email" it will automatically send the mail to customer when quotation is confirm.
for eg.
<button name="action_confirm" id="action_confirm" string="Confirm Sale" class="btn-primary" type="object" attrs="{'invisible': [('state', 'not in', ['sent'])]}" context="{'send_email': True}"/>
<button name="action_confirm" string="Confirm Sale" type="object" attrs="{'invisible': [('state', 'not in', ['draft'])]}" context="{'send_email': True}"/>
Hi,
Yes, it is possible.
You can override the action of the confirm button and do the necessary for sending the email.
class SaleOrder(models.Model):
_inherit = 'sale.order'
@api.multi
def action_confirm(self):
res = super(SaleOrder, self).action_confirm()
# do the coding here for sending the e-mail
return res
If you need to know how to send email from the code, refer to this blog: Finding and sending e-mail templates in Odoo
Also, you can check the Automated actions, activate the developer mode and navigate to Settings -> Technical -> Automation -> Automated Actions
Thanks
هل أعجبك النقاش؟ لا تكن مستمعاً فقط. شاركنا!
أنشئ حساباً اليوم لتستمتع بالخصائص الحصرية، وتفاعل مع مجتمعنا الرائع!
تسجيل| المنشورات ذات الصلة | الردود | أدوات العرض | النشاط | |
|---|---|---|---|---|
|
|
1
نوفمبر 24
|
20883 | ||
|
|
1
سبتمبر 23
|
3684 | ||
|
|
3
مايو 23
|
6285 | ||
|
|
7
أبريل 23
|
49656 | ||
|
Barcode scanner from mobile
تم الحل
|
|
1
ديسمبر 22
|
8346 |