我在我的Odoo模块的python脚本中有一个SQL查询,我想用Python文件中的字段值更改标签字符串。 我花了很多时间而且找不到解决方案。 这可能吗?
的Python
class families (models.Model):
_name = 'families.f'
button = fields.Char("")
txt = fields.Char()
@api.one
def on_change_label(self):
mydb = MySQLdb.connect('localhost','xxx','xxx','xxx')
cursor=mydb.cursor()
cursor.execute("MyQuery")
for row in cursor:
"change the string content of the label with the row value"
在我的XML中,我在表单标签中有一个标签标签,如下所示:
<label name="on_change_label" for="txt"/>