Hello,
I have been trying to figure out in Odoo9 instead of having [4423]Apple iWatch White in both the Product and Description columns would like to have 4423 in the Product column and Apple iWatch White in the Description column.
I have look on the odoo forums and found threads that talk about how to remove the sku, but when i do that it removes it for both columns. This is not the results I need.
I have already treid to edit name_gate to:
def name_get(self, cr, user, ids, context=None):
res = []
if context is None:
context = {}
if isinstance(ids, (int, long)):
ids = [ids]
if not len(ids):
return []
for product in self.browse(cr, user, ids,context=context):
res.append((product.id, product.name))
return res
But this removes the internal code.
I appericate any help!
Thank you.