[FIX] account.edi_invoice: correct email template

bzr revid: hmo@tinyerp.com-20110715114212-bh2kv0ev03dpdm6d
This commit is contained in:
Harry (OpenERP) 2011-07-15 17:12:12 +05:30
parent a5d8abd4ad
commit 1e27a50175
1 changed files with 3 additions and 3 deletions

View File

@ -30,14 +30,14 @@ if object.partner_id.opt_out: self.pool.get('email.template').generate_mail(cr,
<field name="def_to">${object.address_invoice_id.email}</field>
<field name="object_name" ref="account.model_account_invoice"/>
<field name="use_sign">True</field>
<field name="def_body_text">Hello ${object.partner_id.name},
<field name="def_body_text">Hello ${object.address_invoice_id.name},
We just registered the invoice ${object.number} for ${object.amount_total} ${object.currency_id.name} for your company ${object.company_id.name}.
We just registered the invoice ${object.number} for ${object.amount_total} ${object.currency_id.name} for your company ${object.partner_id.name}.
You can click on the following link to preview, print and pay this invoice:
${object._context.get('edi_web_url_view')}
Please note that this invoice has to be paid before ${object.date_due}
Please note that this invoice has to be paid before ${object.date_due or ''}
Regards,
</field>