← Back to team overview

c2c-oerpscenario team mailing list archive

[Bug 791895] Re: project_scrum user email address

 

Hello Manu,

         We have tested the issue and found that you have valid point and also your suggested code works perfect, Thanks lot to you for contribution in problem fixing. Moreover Mail body format also improved with the same. We have fixed the issue and committed to lp:~openerp-dev/openobject-addons/trunk-bug-791895-jam as revision #4769 and it will be soon in lp:openobject-addons.
 
Thank You for your Kind Support.


** Changed in: openobject-addons
       Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/791895

Title:
  project_scrum user email address

Status in OpenERP Modules (addons):
  Fix Committed

Bug description:
  I'm using v6.0.2

  In project_scrum/project_scrum.py line 323 you have:

  user_email = email_from or user.address_id.email  or email_from

  user.address_id.email is not the proper way to access the email
  address of the user. There is a function for that:

  user.user_email

  please use that one.

  Also, as you can see email_from is used twice in that line which is
  wrong. Probably the best would be to change that line to:

  user_email = email_from or user.user_email

  Thanks


References