由于Many2one字段只显示一个字段,我想写一个函数在Many2one中显示两个字段,像这样:
def get_services(self, cr, uid, ids, context=None):
values = cr.execute("""SELECT name, entity
FROM services WHERE id = 3""")
values.fetchall()
for value__ in values:
if value__:
return {'value': {'service_id': value__[0] + " | " + value__[1]},} # Example: "Service 1 | Google"
首先,可能吗?有没有这样做的模块?所以我可以看到它。
然后,我这样调用函数:
_columns = {
'service_id':fields.function(get_services, type = 'many2one', obj = 'services_getservices_function', method = True, string = 'Service'),
我没有收到任何错误,但该字段未显示在屏幕上。