コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POS店舗
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 承認
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具専門店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • 醸造所
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ

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

  • CRM
  • e-Commerce
  • 会計
  • 在庫
  • PoS
  • プロジェクト
  • MRP
All apps
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

How to attach wizard report's report in mail

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
mailreport
1 返信
17023 ビュー
アバター
sridhar

Hi, I want to do how to attach wizard report's report automatically in mail, In that wizard i have two fields Date from and Date to, my concept is Date From to To Date to will send to particular user's mail, I have 2 buttons in wizard report one for Print another one for Send by mail, when click on the send to mail user can select the users and send, how to do it in OpenERP7. This is my following code.

 def send_mail(self, cr, uid, ids, context=None):
        email_template_obj = self.pool.get('email.template')
        template_ids = email_template_obj.search(cr, uid, [('model_id.model', '=','quality.report.wizard')], context=context)
        print template_ids,"%%%%%%%%%%%%%%%%%5"
        if template_ids:
              values = email_template_obj.generate_email(cr, uid, template_ids[0], ids, context=context)
              print values,"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`"
              val = values.get('subject')
              val1 = values.get('email_to')
              val2 = values.get('body_html')
              val3 = values.get('body_html')
              val4 = values.get('attachments')
              values['subject'] = val
              values['email_to'] = val1
              values['body_html'] = val2
              values['body'] = val3
              values['res_id'] = False
              values['attachment_ids'] = val4
              mail_mail_obj = self.pool.get('mail.mail')
              print values,'$$$$$$$$$$$$$$$$$$$$$$$$'
              msg_id = mail_mail_obj.create(cr, uid, values, context=context)
              print msg_id,"/////////////////////////////////"
              if msg_id:
                    mail_mail_obj.send(cr, uid, [msg_id], context=context)
        return True

it is correct or need some changes, it make error.

Xml is

<record id="email_template_edi_quality" model="email.template">
            <field name="name">Quality Report - Send by Email (Portalsssssss)</field>
            <field name="email_from">sridharopenerptest@gmail.com</field>
            <field name="subject">${(object.name or 'Sridhar')}</field>
            <field name="email_recipients"></field>
            <field name="model_id" ref="vv_quality.model_quality_control"/>
            <field name="auto_delete" eval="True"/>
            <field name="report_template" ref="quality_control_report"/>
            <field name="report_name">${(object.name or 'NNNNNN')}</field>
            <field name="lang"></field>
            <field name="body_html"> Successs</field>
        </record>

when i open this wizard or value only coming, object.name is not calling or empty why.

1
アバター
破棄
Prakash

Related topic: http://help.openerp.com/question/16946/openerp-7-using-wizard-how-to-send-email-with-attachment/

Prakash

In the wizard send email button to add in the code will send email with attachment.

Prakash

In the above code have you received email?.. In your case the attachment document Is it available in the ir_attachment table?...

Prakash

save your record in the ir_attachment and pass the attachment ID in the mail obj. (already the above code is working in the way). For example in the above code ir_attachment.create(cursor, uid, attachment_data, context=context) # Create date in ir_attachment with document

Prakash

sorry currently i have not code. Your code looking correct make sure attachment table created. or testing purpose pass the attachment_ids directly into attachment_ids: [(6, 0, [1])]

sridhar
著作者

when i composing mail there is no attachment then only send_mail function will call is it correct.

Prakash

In the wizard send mail button clicked the send_mail function call. If attachment ids find it will send email with attachment otherwise send email without attachment

sridhar
著作者

Prakash, i attached the report successfully, but when i click on the send_mail method it make error, how to fix it. result[message['id']] = self.pool.get(message['model']).name_get(cr, SUPERUSER_ID, [message['res_id']], context=context)[0][1] IndexError: list index out of range.

Prakash

For testing purpose you add recipients details and other details manually and check have u receive email with attachment?...

アバター
Prakash
最善の回答

Try the below code:-

Without using Email Template:-

    def custom_send_email (self, cr, uid, ids, context=None):
        mail_mail = self.pool.get('mail.mail')
        att_obj = self.pool.get('ir.attachment')
        for send in self.browse (cr, uid, ids, context = context):
            mail_ids = []
            attachment_ids = []
            email_to = send.invoice_id.partner_id.email  # your object Mail ID
            attachment_data = {
                'name': "Report Data",
                'datas_fname': send.filename, # your object File Name
                'db_datas': send.data,  # your object Data
            }
            attachment_ids.append (att_obj.create(cr, uid, attachment_data, context=context))
            subject = "Report Email: Ref-" + str (send.invoice_id.origin or '') # # your object Name ref
            body = """Hello,

FROM OpenERP SYSTEM. Please ignore

Kind regards.
OpenERP Team.
"""
            mail_ids.append (mail_mail.create(cr, uid,
                {
                   'email_to': email_to,
                   'subject': subject,
                   'body_html': '<pre>%s</pre>' % body,
                }, context = context))
            if attachment_ids:
                mail_mail.write(cr, uid, mail_ids, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context)
            mail_mail.send (cr, uid, mail_ids, context = context)

        return {'type': 'ir.actions.act_window_close'}

xml File

 <button name="custom_send_email" string="Send Email" type="object" class="oe_highlight"/>

With using Email Template

def send_mail(self, cr, uid, ids, context=None):
        email_template_obj = self.pool.get('email.template')
        template_ids = email_template_obj.search(cr, uid, [('model_id.model', '=','quality.report.wizard')], context=context)
        print template_ids,"%%%%%%%%%%%%%%%%%5"
        if template_ids:
              values = email_template_obj.generate_email(cr, uid, template_ids[0], ids, context=context)
              print values,"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~`"
              val = values.get('subject')
              val1 = values.get('email_to')
              val2 = values.get('body_html')
              val3 = values.get('body_html')
              val4 = values.get('attachments')
              values['subject'] = val
              values['email_to'] = val1
              values['body_html'] = val2
              values['body'] = val3
              values['res_id'] = False
              #values['attachment_ids'] = val4
             # check the val4 value print val4 its equal [ interger id value ]
              values['attachment_ids'] = [(6, 0, val4)]
              mail_mail_obj = self.pool.get('mail.mail')
              print values,'$$$$$$$$$$$$$$$$$$$$$$$$'
              msg_id = mail_mail_obj.create(cr, uid, values, context=context)
              print msg_id,"/////////////////////////////////"
              if msg_id:
                    mail_mail_obj.send(cr, uid, [msg_id], context=context)
        return True
1
アバター
破棄
Prakash

Hi Sridhar, In my code for sending email. Email Template is not used after clicking the custom wizard "Send Email" button it will send email (without using template). Suppose if you are using Email Template and default "Send" button options used i thing no need write to code. (Default options will works in template need to select document manually or set).

sridhar
著作者

By the basic function, it make error AttributeError: 'quality.report.wizard' object has no attribute 'message_post', so i did some changes now email send but no attachment are received.

Prakash

I update my code use attachment ids Example: [(6, 0, [1])]

Prakash

Testing purpose set val4 = [(6, 0, [1])] # make sure id 1 is available in the ir_attachment table and let me know mail received with attachment

Prakash

Options 1) check pg_admin tools select * from ir_attachment use the ir_attachment id value. If table empty attached any record and used saved ID. Options 2) remove the code val4 attacment ids in the email template manually attached the record and send email

sridhar
著作者

Thank you attachment received but one problem i put that val4 = [(6, 0, [116])] it is the id of ir.attachment. how to do it.

Prakash

using create method store your attachment in ir_attachment table. and pass the create method return id value to [(6, 0, attachment_ids)]. Based on this code available in the above Example Without using Email Template:-

Prakash

Let me know For all the customer send email u are using the same attachment (id 116)?.... or attachment will be differ based on customer?...

sridhar
著作者

Actually this is wizard report, user select from date and to date, and press send mail button, then one wizard will open that is compose mail wizard here all the values are come based on Email Template attachment also based on particular date report. every month report is changed.

Prakash

based on this already code is available in the example Without using Email Template. Create record in ir_attachment table and pass the value.

sridhar
著作者

where is that code, that code can fulfill my requirement?

Prakash

Refer the below link http://help.openerp.com/question/36449/how-to-programatically-run-a-report-and-add-it-as-an-attachment/

sridhar
著作者

I going to take this way, i spend lot of days to this concept if i take that code means it take extra days, i got one concept from this in the send mail function res_id = False, here i'm going to pass the mail.compose.message then easily i got a link from that.

sridhar
著作者

my concept went wrong, how to do it, what is the link between mail.compose.message and ir.attachment.

sridhar
著作者

mail.compose.message.ir.attachment.rel table is a relation of the two table, attachment_id is there, how to pass the value in values['attachment_ids'] = [(6, 0, [116])]. 116 as that id is correct.

Prakash

mail_mail.write(cr, uid, mail_ids, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context)

sridhar
著作者

abc = mail_mail_obj.write(cr, uid, values, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context) NameError: global name 'attachment_ids' is not defined, i got error, please update as a answer.

Prakash

Already is there Refer the above code (Without using Email Template)

Prakash

In the code 1) attachment_ids = [] # define 2) attachment_data = { 'name': "Report Data", 'datas_fname': send.filename, # your object File Name 'db_datas': send.data, # your object Data } attachment_ids.append (att_obj.create(cr, uid, attachment_data, context=context)) 3) mail_mail.write(cr, uid, mail_ids, {'attachment_ids': [(6, 0, attachment_ids)]}, context=context)

sridhar
著作者

'datas_fname': send.filename, # your object File Name 'db_datas': send.data, # your object Data i didn't get that, see my code where i give this, i confused.

Prakash

give me more details about report object name, Is it pdf report? how to print the report manually using menu options?..

sridhar
著作者

Yes pdf report, Actually values calling from the jasper report, why i give the object name.

sridhar
著作者

Now problem solved, Thank you very much.

ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
関連投稿 返信 ビュー 活動
How to block Many2One value Changes
mail report
アバター
アバター
アバター
アバター
3
3月 15
7600
Attach automatically report to mail
mail report automatically
アバター
アバター
2
1月 19
20889
create and attach pdf to email template
pdf mail report
アバター
アバター
アバター
2
3月 15
11043
Report with a different footer in the first page. How to do it?
report
アバター
アバター
2
11月 25
270
<( Servicio al pasajero)||¿Cómo hablar directamente en Volaris?
mail
アバター
0
10月 25
515
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育プログラム
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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