diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/account/data/mail_template_data.xml | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account/data/mail_template_data.xml')
| -rw-r--r-- | addons/account/data/mail_template_data.xml | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/addons/account/data/mail_template_data.xml b/addons/account/data/mail_template_data.xml new file mode 100644 index 00000000..1aa788e3 --- /dev/null +++ b/addons/account/data/mail_template_data.xml @@ -0,0 +1,59 @@ +<?xml version="1.0" ?> +<odoo> + + <!-- Mail template are declared in a NOUPDATE block + so users can freely customize/delete them --> + <data noupdate="1"> + <!--Email template --> + <record id="email_template_edi_invoice" model="mail.template"> + <field name="name">Invoice: Send by email</field> + <field name="model_id" ref="account.model_account_move"/> + <field name="email_from">${(object.invoice_user_id.email_formatted or user.email_formatted) |safe}</field> + <field name="partner_to">${object.partner_id.id}</field> + <field name="subject">${object.company_id.name} Invoice (Ref ${object.name or 'n/a'})</field> + <field name="body_html" type="html"> +<div style="margin: 0px; padding: 0px;"> + <p style="margin: 0px; padding: 0px; font-size: 13px;"> + Dear + % if object.partner_id.parent_id: + ${object.partner_id.name} (${object.partner_id.parent_id.name}), + % else: + ${object.partner_id.name}, + % endif + <br /><br /> + Here is your + % if object.name: + invoice <strong>${object.name}</strong> + % else: + invoice + %endif + % if object.invoice_origin: + (with reference: ${object.invoice_origin}) + % endif + amounting in <strong>${format_amount(object.amount_total, object.currency_id)}</strong> + from ${object.company_id.name}. + % if object.payment_state in ('paid', 'in_payment'): + This invoice is already paid. + % else: + Please remit payment at your earliest convenience. + % if object.payment_reference: + <br /><br /> + Please use the following communication for your payment: <strong>${object.payment_reference}</strong>. + % endif + % endif + <br /><br /> + Do not hesitate to contact us if you have any questions. + % if object.invoice_user_id.signature: + <br /> + ${object.invoice_user_id.signature | safe} + % endif + </p> +</div> + </field> + <field name="report_template" ref="account_invoices"/> + <field name="report_name">Invoice_${(object.name or '').replace('/','_')}${object.state == 'draft' and '_draft' or ''}</field> + <field name="lang">${object.partner_id.lang}</field> + <field name="auto_delete" eval="True"/> + </record> + </data> +</odoo> |
