Skip to Content
Menu
This question has been flagged
3015 Views

Hi All

I am calling the "send_followup1" function using the object type button. For one click it is sending two same mails at a time to recepaint. Can any one please give me the solution. It should send only one mail, but it is sending two same mails.

Button:

<button name="send_followup1" type="object" string="Followup1"/>


function:

def send_followup1(self,cr,uid,ids,fields_names,context=None):

template_obj=self.pool.get('email.template')

template = self.pool.get('ir.model.data').get_object(cr, uid, 'sale_tasks', 'followup1')

sale=self.browse(cr,uid,ids[0])

if sale.partner_id.email:

self.write(cr,uid,sale.id,{'first_followup':'Sent'})

template_obj.write(cr,uid,template.id,{'email_to':sale.partner_id.email})

self.pool.get('email.template').send_mail(cr, uid, template.id, sale.id, force_send=True, raise_exception=True, context=context)

Avatar
Discard
Related Posts Replies Views Activity
0
Nov 24
93
1
Aug 24
669
2
Jan 24
787
2
Dec 22
3540
0
Aug 22
1218