Merge lp:~savoirfairelinux-openerp/openobject-addons/7.0-bug-1105239-joao-gama into lp:openobject-addons/7.0

Proposed by Joao Alfredo Gama Batista
Status: Merged
Merged at revision: 8907
Proposed branch: lp:~savoirfairelinux-openerp/openobject-addons/7.0-bug-1105239-joao-gama
Merge into: lp:openobject-addons/7.0
Diff against target: 12 lines (+1/-1)
1 file modified
sale/wizard/sale_make_invoice.py (+1/-1)
To merge this branch: bzr merge lp:~savoirfairelinux-openerp/openobject-addons/7.0-bug-1105239-joao-gama
Reviewer Review Type Date Requested Status
Martin Trigaux (OpenERP) (community) Approve
Review via email: mp+144979@code.launchpad.net

Description of the change

Fixed variable name.

To post a comment you must log in.
Revision history for this message
Martin Trigaux (OpenERP) (mat-openerp) wrote :

Hello,
Thank you for your patch, this was fixed into addons v7 at revision 8907.
Regards

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'sale/wizard/sale_make_invoice.py'
2--- sale/wizard/sale_make_invoice.py 2012-12-18 13:41:18 +0000
3+++ sale/wizard/sale_make_invoice.py 2013-01-25 16:39:21 +0000
4@@ -51,7 +51,7 @@
5 if context is None:
6 context = {}
7 data = self.read(cr, uid, ids)[0]
8- order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_inv = data['invoice_date'])
9+ order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_invoice = data['invoice_date'])
10 wf_service = netsvc.LocalService("workflow")
11 for id in context.get(('active_ids'), []):
12 wf_service.trg_validate(uid, 'sale.order', id, 'manual_invoice', cr)