Merge lp:~openerp-dev/openobject-addons/6.1-opw-579441-dhs into lp:openobject-addons/6.1

Proposed by Dhruti Shastri(OpenERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 7013
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-579441-dhs
Merge into: lp:openobject-addons/6.1
Diff against target: 14 lines (+3/-1)
1 file modified
account_analytic_analysis/cron_account_analytic_account.py (+3/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-579441-dhs
Reviewer Review Type Date Requested Status
Naresh(OpenERP) (community) Approve
Review via email: mp+127973@code.launchpad.net

Description of the change

To reproduce:

 Install account_analytic_analysis

 Schceduler Generate Mail if the account is in Open state after Due date

 Report "Analytic Account Report for Sales" print False value if Partner has no value defined for
 - contact name
 - phone
 - Email

To post a comment you must log in.
Revision history for this message
Naresh(OpenERP) (nch-openerp) :
review: Approve
Revision history for this message
Naresh(OpenERP) (nch-openerp) :
review: Approve
Revision history for this message
Naresh(OpenERP) (nch-openerp) wrote :

Hello,

This bug was qualified as Confirmed on Trunk (means still existing and reproducible). A Merge Proposal for trunk was created to fix it. Here is the link to follow the MP on Launchpad https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-opw-579441-port-mma/+merge/135148 and be informed once it's been merged in trunk: ... If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Unmerged revisions

7013. By Dhruti Shastri(OpenERP)

[FIX]: Analytic Account Report for Sales Print False if the value is not specified in respective fields(case :579441)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'account_analytic_analysis/cron_account_analytic_account.py'
2--- account_analytic_analysis/cron_account_analytic_account.py 2012-09-13 11:54:46 +0000
3+++ account_analytic_analysis/cron_account_analytic_account.py 2012-10-04 10:03:28 +0000
4@@ -33,7 +33,9 @@
5 - Dates: ${account.date_start} to ${account.date and account.date or '???'}
6 - Contacts:
7 % for address in account.partner_id.address:
8- . ${address.name}, ${address.phone}, ${address.email}
9+ % if address.name:
10+ . ${address.name}, ${address.phone or ''}, ${address.email or ''}
11+ % endif
12 % endfor
13
14 % endfor