Amit Bhavsar (Open ERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-bug-1005812-amb into
lp:openobject-addons.
Requested reviews:
OpenERP Core Team (openerp)
Related bugs:
Bug #1005812 in OpenERP Addons: "[Trunk/6.1]mrp_repair : can not select move
line from search move form."
https://bugs.launchpad.net/openobject-addons/+bug/1005812
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1005812-amb/+merge/114384
Hello,
Fixes the problem of Insufficient info at move from the picklist(dropdown) in
Repair Order form view.
Now it's seem like : Origin(SO0004) product_name(watch) : location >
destination location.
Thanks!
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-1005812-amb/+merge/114384
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-bug-1005812-amb.
=== modified file 'stock/stock.py'
--- stock/stock.py 2012-06-22 06:48:54 +0000
+++ stock/stock.py 2012-07-11 10:52:57 +0000
@@ -1576,7 +1576,7 @@
def name_get(self, cr, uid, ids, context=None):
res = []
for line in self.browse(cr, uid, ids, context=context):
- res.append((line.id, (line.product_id.code or '/')+': '+line.location_id.name+' > '+line.location_dest_id.name))
+ res.append((line.id, (line.picking_id.origin or '/')+ ' ' +(line.product_id.code or '/')+': '+line.location_id.name+' > '+line.location_dest_id.name))
return res
def _check_tracking(self, cr, uid, ids, context=None):
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp