Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Attach automatically report to mail

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
mailreportautomatically
2 Răspunsuri
20890 Vizualizări
Imagine profil
MALLE SOULEYMANE

Hello, anyone have any idea of how to automatically attach a report to an email like Sale> Quote> Email? what is the relationship of this with the "edi" module?

1
Imagine profil
Abandonează
Imagine profil
Gopakumar N G
Cel mai bun răspuns

Yes you can use schedulers to send e-mails with attachment automatically (here reports) or you can configure the email template to attach reports automatically. For example: I have created a scheduler on model student.student as

 <?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data>
        <record model="ir.cron" id="cronjob_student_mail_scheduler">
            <field name='name'>Send Email on Intervals</field>
            <field name='interval_number'>1</field>
            <field name='interval_type'>months</field>
            <field name="numbercall">-1</field>
            <field name="active">False</field>
            <field name="doall" eval="False" />
            <field name="model">student.student</field>
            <field name="function">send_mail</field>
            <field name="args">(None,)</field>
        </record>
    </data>
</openerp>

and it calls the send_mail method in student.student model and the method is

def send_mail(self, cr, uid, ids,  cron_mode=True, context=None):
        print '================send email=================='
        template_id=self.pool.get('email.template').search(cr, uid, [('name', '=', 'Student Details - Send by Email')], context=context)[0]
        print '........template id..........', template_id
        email_obj=self.pool.get('email.template').send_mail(cr, uid, template_id, ids[0], force_send=True)
        print 'email_obj................', email_obj

and I have created an email template as

<?xml version="1.0" encoding="UTF-8"?>
<openerp>
    <data noupdate="1">
        <!--Email template -->
        <record id="email_template_student_details" model="email.template">
            <field name="name">Student Details - Send by Email</field>
            <field name="email_from">gopakumar@zbeanztech.com</field>
            <field name="subject">Welcome</field>
            <field name="email_to">${object.email}</field>
            <field name="model_id" ref="model_student_student"/>
            <field name="auto_delete" eval="True"/>
            <field name="report_template" ref="student_report.student_report"/>
            <field name="report_name">${(object.partner_id.name)}_Details</field>
            <field name="lang">${object.partner_id.lang}</field>
            <field name="body_html"><![CDATA[
<div style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; ">
    <p>Hello ${object.partner_id.name},</p>

    <p>You have been registered in the ${object.user_id.company_id.name} with the following details.</p>

    <p style="border-left: 1px solid #8e0000; margin-left: 30px;">
        &nbsp;&nbsp;Admission Number: <strong>${object.admit_no}</strong><br />
        &nbsp;&nbsp;University Number: <strong>${object.exam_reg_no}</strong><br />
        &nbsp;&nbsp;Programme: <strong>${object.programme_id.name}</strong><br />
        &nbsp;&nbsp;Grade: <strong>${object.grade_id.name}</strong><br />
        &nbsp;&nbsp;Area: <strong>${object.area_id.name}</strong><br />
        &nbsp;&nbsp;Division: <strong>${object.division_id.name}</strong><br />
    </p>

    <p>Please find the attachment.</p>
    <p>Thanks</p>

</div>            
            ]]></field>
        </record>
    </data>
</openerp>

and in that template I have specified the report student_report in the module student_report (<field name="report_template" ref="student_report.student_report"/>)

So on executing the scheduler the email will be send with the report as attachment.

1
Imagine profil
Abandonează
Imagine profil
MALLE SOULEYMANE
Autor Cel mai bun răspuns

Ok thanks for your answer, but I don't understand thi line : <field name="model_id" ref="model_student_student"/> model_student_student is the id of what model?

0
Imagine profil
Abandonează
Gopakumar N G

It is the model student.student and it should be given in the model_id field of email template as 'model_student_student'

René Schuster

Is there a way to add the 'form' keyword to the 'datas' dictionary that is used in the email.template send_mail method?

Want to use the same report that is triggered by a button via: datas = { 'ids': [], 'model': 'timesheet.timesheet', 'form': data } return { 'type': 'ir.actions.report.xml', 'report_name': 'timesheet.monthly.report', 'datas': datas, }

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to attach wizard report's report in mail
mail report
Imagine profil
Imagine profil
1
oct. 15
17026
How to block Many2One value Changes
mail report
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
mar. 15
7600
create and attach pdf to email template
pdf mail report
Imagine profil
Imagine profil
Imagine profil
2
mar. 15
11043
How to attach html report in email?
mail report html attachement
Imagine profil
1
iun. 24
471
External ID not found in the system: %s' % xmlid
mail report external_id Odoo13.0
Imagine profil
Imagine profil
5
ian. 23
6263
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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