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
=== modified file 'sale/wizard/sale_make_invoice.py'
--- sale/wizard/sale_make_invoice.py 2012-12-18 13:41:18 +0000
+++ sale/wizard/sale_make_invoice.py 2013-01-25 16:39:21 +0000
@@ -51,7 +51,7 @@
51 if context is None:51 if context is None:
52 context = {}52 context = {}
53 data = self.read(cr, uid, ids)[0]53 data = self.read(cr, uid, ids)[0]
54 order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_inv = data['invoice_date'])54 order_obj.action_invoice_create(cr, uid, context.get(('active_ids'), []), data['grouped'], date_invoice = data['invoice_date'])
55 wf_service = netsvc.LocalService("workflow")55 wf_service = netsvc.LocalService("workflow")
56 for id in context.get(('active_ids'), []):56 for id in context.get(('active_ids'), []):
57 wf_service.trg_validate(uid, 'sale.order', id, 'manual_invoice', cr)57 wf_service.trg_validate(uid, 'sale.order', id, 'manual_invoice', cr)