Merge lp:~openerp-dev/openobject-addons/6.1-opw-579756-ksa into lp:openobject-addons/6.1

Proposed by Kirti Savalia(OpenERP)
Status: Rejected
Rejected by: Naresh(OpenERP)
Proposed branch: lp:~openerp-dev/openobject-addons/6.1-opw-579756-ksa
Merge into: lp:openobject-addons/6.1
Diff against target: 12 lines (+1/-1)
1 file modified
mrp/mrp.py (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openobject-addons/6.1-opw-579756-ksa
Reviewer Review Type Date Requested Status
Naresh(OpenERP) Pending
Review via email: mp+126930@code.launchpad.net

Description of the change

Hello,

In MRP production name in stock move with % sign.

Thanks
KSA

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

Hello,

This bug was qualified as Not Relevant on Trunk (means that architecture on trunk has changed and so this bug has no meaning anymore). If this Merge Proposal could not be merged in v6.1 at the release of v7.0, it will be closed.

Thanks,
Naresh Soni

Revision history for this message
Naresh(OpenERP) (nch-openerp) wrote :
Revision history for this message
Alexandre Fayolle - camptocamp (alexandre-fayolle-c2c) wrote :

@nch-openerp: why did you reject the merge proposal on the 6.1 branch? The bug is still there although the bug report says the fix is released. .

Unmerged revisions

7007. By Kirti Savalia(OpenERP) <email address hidden>

[FIX]:production name in stock move with sign change

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'mrp/mrp.py'
2--- mrp/mrp.py 2012-07-23 08:44:52 +0000
3+++ mrp/mrp.py 2012-09-28 11:22:25 +0000
4@@ -929,7 +929,7 @@
5 stock_move = self.pool.get('stock.move')
6 source_location_id = production.product_id.product_tmpl_id.property_stock_production.id
7 destination_location_id = production.location_dest_id.id
8- move_name = _('PROD: %s') + production.name
9+ move_name = _('PROD: %s') % production.name
10 data = {
11 'name': move_name,
12 'date': production.date_planned,