Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Attach automatically report to mail

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
mailreportautomatically
2 Replies
20903 Tampilan
Avatar
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
Avatar
Buang
Avatar
Gopakumar N G
Jawaban Terbai

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
Avatar
Buang
Avatar
MALLE SOULEYMANE
Penulis Jawaban Terbai

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
Avatar
Buang
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, }

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
How to attach wizard report's report in mail
mail report
Avatar
Avatar
1
Okt 15
17029
How to block Many2One value Changes
mail report
Avatar
Avatar
Avatar
Avatar
3
Mar 15
7605
create and attach pdf to email template
pdf mail report
Avatar
Avatar
Avatar
2
Mar 15
11047
How to attach html report in email?
mail report html attachement
Avatar
1
Jun 24
471
External ID not found in the system: %s' % xmlid
mail report external_id Odoo13.0
Avatar
Avatar
5
Jan 23
6265
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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