odoo中具有不同名称的产品和描述

Product and Description with different name in odoo

如何使产品名称和描述名称互不相同?下图有相同的名称。

我无法在产品中编辑它。

为此,您必须覆盖 product.product 对象的 name_get 函数。你可以检查样本,

class ProductProductInherit(models.Model):
_inherit = 'product.product'

def name_get(self):
    res = super(ProductProductInherit, self).name_get()
    # write the code to here
    # then you can return the product name
    return res

谢谢