Merge lp:~openerp-dev/openobject-addons/6.1-opw-580457-rgo into lp:openobject-addons/6.1

Proposed by Ravi Gohil (OpenERP)
Status: Approved
Approved by: Naresh(OpenERP)
Approved revision: 7032
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-580457-rgo
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
stock/stock.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-580457-rgo
Reviewer Review Type Date Requested Status
Naresh(OpenERP) Pending
Review via email: mp+129854@code.launchpad.net

Description of the change

Hello,

Find the steps to reproduce the issue in bug report lp:1066127

Thanks.

To post a comment you must log in.
Revision history for this message
Alexis de Lattre (alexis-via) wrote :

See my comment #3 on the bug report, in which I give my opinion about this merge proposal :

https://bugs.launchpad.net/openobject-addons/+bug/1066127?comments=all

7030. By Olivier Dony (Odoo)

[FIX] wiki: remove unused 6.0 web addon components - web API was rewritten from scratch in 6.1

7031. By Launchpad Translations on behalf of openerp

Launchpad automatic translations update.

7032. By Alexis de Lattre

[FIX] stock: The 'Return Products' wizard in 'Delivery Orders' doesn't take into account the field 'Invoicing' : (Maintenance Case : 580457)

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-580457-port-mma/+merge/136145 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

7032. By Alexis de Lattre

[FIX] stock: The 'Return Products' wizard in 'Delivery Orders' doesn't take into account the field 'Invoicing' : (Maintenance Case : 580457)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'stock/stock.py'
--- stock/stock.py 2012-10-05 07:47:57 +0000
+++ stock/stock.py 2012-10-17 05:41:38 +0000
@@ -697,7 +697,7 @@
697 default['name'] = self.pool.get('ir.sequence').get(cr, uid, seq_obj_name)697 default['name'] = self.pool.get('ir.sequence').get(cr, uid, seq_obj_name)
698 default['origin'] = ''698 default['origin'] = ''
699 default['backorder_id'] = False699 default['backorder_id'] = False
700 if picking_obj.invoice_state == 'invoiced':700 if 'invoice_state' not in default and picking_obj.invoice_state == 'invoiced':
701 default['invoice_state'] = '2binvoiced'701 default['invoice_state'] = '2binvoiced'
702 res=super(stock_picking, self).copy(cr, uid, id, default, context)702 res=super(stock_picking, self).copy(cr, uid, id, default, context)
703 if res:703 if res: