Merge lp:~openerp-dev/openobject-addons/7.0-bug-1174775-nco into lp:openobject-addons/7.0

Proposed by Nimesh Contractor(Open ERP)
Status: Rejected
Rejected by: Martin Trigaux (OpenERP)
Proposed branch: lp:~openerp-dev/openobject-addons/7.0-bug-1174775-nco
Merge into: lp:openobject-addons/7.0
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/7.0-bug-1174775-nco
Reviewer Review Type Date Requested Status
Martin Trigaux (OpenERP) (community) Disapprove
Review via email: mp+161775@code.launchpad.net

Description of the change

Hello,
      Make proper indentation.
Thanks

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

Hello,

We don't want to correct one indentation in one commit at a time. Please do one big task of refactoring correcting this instead (and for trunk also)

Regards

review: Disapprove

Unmerged revisions

9089. By Chandni Machchhar(OpenERP)

[FIX] make proper indentation.

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 2013-04-25 12:49:33 +0000
+++ stock/stock.py 2013-05-01 05:29:28 +0000
@@ -2382,7 +2382,7 @@
23822382
2383 self.write(cr, uid, move_ids, {'state': 'done', 'date': time.strftime('%Y-%m-%d %H:%M:%S')}, context=context)2383 self.write(cr, uid, move_ids, {'state': 'done', 'date': time.strftime('%Y-%m-%d %H:%M:%S')}, context=context)
2384 for id in move_ids:2384 for id in move_ids:
2385 wf_service.trg_trigger(uid, 'stock.move', id, cr)2385 wf_service.trg_trigger(uid, 'stock.move', id, cr)
23862386
2387 for pick_id in picking_ids:2387 for pick_id in picking_ids:
2388 wf_service.trg_write(uid, 'stock.picking', pick_id, cr)2388 wf_service.trg_write(uid, 'stock.picking', pick_id, cr)