Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to attach a pdf and send mail on click of button in openerp 7.0

Subscriure's

Get notified when there's activity on this post

This question has been flagged
attachpdfmailbutton
1 Respondre
12038 Vistes
Avatar
Maniganda

I need to add pdf as an attachment and send mail to partner on click of customised button in form openerp 7.0 , how to achieve this scenario

0
Avatar
Descartar
Remya

Where you want this?

Maniganda
Autor

in sale_order i have created a button called approve contract, on click of this button i should attach the pdf for the template and send the mail to the partner

Sehrish

To send email on button click check this: http://learnopenerp.blogspot.com/2017/08/odoo-how-to-send-email-on-button-click.html

Avatar
Prajul P T
Best Answer

In OpenERP 7.0 Quotation, there is a button called "Send By Email" which when clicked opens the related template of sale order. From here you can send the Quotation to the partner. We can also specify the report to be attached with this mail in the template ie; in Settings > Email > Email Template, in tab "Advanced", there is a field called "Optional report to print and attach". You can specify the report to attach with the mail in this field. If you want to add the functionality to send the mail automatically from your button action, you can call function send_mail in email.template model which sends the mail for the record using the template specified as arguments.

self.pool.get('email.template').send_mail(cr, uid, template_id, record_id, force_send=True, context=context)

where template_id is the id of the template to use to send the mail, record_id is the id of the record in your case sale order id, force_send which when set true will send the mail instantaneously without queuing the mail in the email queue manager.

0
Avatar
Descartar
Maniganda
Autor

Thanks for your reply, but in my case i am opening and wizard for this operation, onclick of button directly the template and pdf has to be sent for the partner, how this can be achieved

Prajul P T

So the button to send the mail is in your wizard??

Maniganda
Autor

no the button is similar to send_mail button in sale_order, i have created as approve contract ,onclick of this button then a am able to send the template automatically but for that template i need to atach the report for this template

Prajul P T

In template in location Settings > Email > Templates, there is a tab called "Advanced". In this tab there is a field called "Optional report to print and attach". You can specify the report you want to attach i this field.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
Getting an attachment via URL by a non-logged in visitor
development attach pdf
Avatar
0
de set. 25
666
S3 Bucker or Cloudinary Integration
configuration attach pdf
Avatar
Avatar
1
d’ag. 25
893
Odoo 18 Attachment_use : true would not save the report in the register Solved
attach manufacturing pdf
Avatar
Avatar
2
de des. 24
2085
Adding a footer to a PROFORMA Invoice
attach pdf pdfquotebuilder
Avatar
1
de des. 24
1970
create and attach pdf to email template
pdf mail report
Avatar
Avatar
Avatar
2
de març 15
11091
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now