Merge lp:~openerp-dev/openobject-addons/trunk-bug-1007317-amp into lp:openobject-addons

Proposed by Amit Parik
Status: Rejected
Rejected by: Fabien (Open ERP)
Proposed branch: lp:~openerp-dev/openobject-addons/trunk-bug-1007317-amp
Merge into: lp:openobject-addons
Diff against target: 19 lines (+2/-2)
1 file modified
sale_order_dates/sale_order_dates.py (+2/-2)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/trunk-bug-1007317-amp
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+108310@code.launchpad.net

Description of the change

Hello,

Currently the wrong date write on commitment date, as per the tooltip on this field. It should be display when we will able to deliver the product to customer.

If there is a more then one line on SO then it should be consider the maximum deliver date of the product.

Thanks

To post a comment you must log in.
Revision history for this message
Fabien (Open ERP) (fp-tinyerp) wrote :

check my comment on the bug.

Unmerged revisions

6859. By Amit Parik

[MERGE]: Merge with lp:openobject-addons

6858. By Amit Parik

[FIX] sale_order_dates : Fixes the wrong date on commitment date

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'sale_order_dates/sale_order_dates.py'
2--- sale_order_dates/sale_order_dates.py 2011-07-01 23:41:24 +0000
3+++ sale_order_dates/sale_order_dates.py 2012-08-23 06:20:26 +0000
4@@ -50,7 +50,7 @@
5 dt_s = dt.strftime('%Y-%m-%d')
6 dates_list.append(dt_s)
7 if dates_list:
8- res[order.id] = min(dates_list)
9+ res[order.id] = max(dates_list)
10 return res
11
12 _columns = {
13@@ -61,4 +61,4 @@
14
15 sale_order_dates()
16
17-# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
18\ No newline at end of file
19+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

Subscribers

People subscribed via source and target branches

to all changes: