Merge lp:~openerp-dev/openobject-addons/6.1-opw-573425-rha into lp:openobject-addons/6.1

Proposed by Rifakat Husen (OpenERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 6729
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-573425-rha
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
purchase/report/purchase_report.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-573425-rha
Reviewer Review Type Date Requested Status
Naresh(OpenERP) (community) Approve
Review via email: mp+100950@code.launchpad.net

Description of the change

Hello,

Resolved Purchase analyses report error while clicking on graph view.

Converted datetime type object to string, it passes datetime object instead of string and raise error.
Please review it.

Regards,
Rifakat

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) wrote :

Hello,

This bug was qualified as Not Relevant on Trunk (means that architecture on trunk has changed and so this bug has no meaning anymore). If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh

Unmerged revisions

6729. By Rifakat Husen (OpenERP)

[FIX] purchase: converted datetime type object to string, it passes datetime object instead of string and raise error while we click on any graph

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'purchase/report/purchase_report.py'
--- purchase/report/purchase_report.py 2011-12-21 22:15:04 +0000
+++ purchase/report/purchase_report.py 2012-04-05 12:24:23 +0000
@@ -81,7 +81,7 @@
81 to_char(s.date_order, 'YYYY-MM-DD') as day,81 to_char(s.date_order, 'YYYY-MM-DD') as day,
82 s.state,82 s.state,
83 s.date_approve,83 s.date_approve,
84 date_trunc('day',s.minimum_planned_date) as expected_date,84 to_char(date_trunc('day',s.minimum_planned_date), 'YYYY-MM-DD') as expected_date,
85 s.partner_address_id,85 s.partner_address_id,
86 s.dest_address_id,86 s.dest_address_id,
87 s.pricelist_id,87 s.pricelist_id,