← Back to team overview

openerp-india team mailing list archive

[Bug 1026080] Re: email_template: Compose Email wizard uses wrong record to apply templates

 

The template you used has only static text, so the text rendered is
always the same and you don't realize if the active record id is the
correct one.

To be able to verify that, you need to include in the template fields from the record, like: 
"""
This email regards issue $(object.id) - $(object.name).
"""

-- 
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/1026080

Title:
  email_template: Compose Email wizard uses wrong record to apply
  templates

Status in OpenERP Addons (modules):
  Incomplete

Bug description:
  This was found in Project Issue's "Communication & History" tab, but it's generic to the Email templates:
  (a) Select a Project issue record, and go to "Communication & History" tab, "Send New Email" button
  (b) At the "Compose Email" wizard, click on the button to "Use a message template" and select a previously created template from the list.
  The template will be rendered for an issue that's not the one selected in the first place.

  My debugging effort concluded that, at the beginning of (b), the context['active_id'] is correct.
  The bug arises when you press the "Use a message template" button: this calls a "_reopen()" mehod that forces a reload that changes the context's active_id to the wizard model's records, losing the id of the original record.

To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1026080/+subscriptions


References