我已经开发了简单的自定义odoo模块。在单击按钮时,我编写了一个简单的方法,该方法应该只在odoo屏幕上显示数据。模块已成功安装,但未执行所需的操作,请帮助我。预先感谢。
标题标签中的我的按钮代码
*<header>
<button name="get_data" type="object" string="Click" class="oe_highlight" />
</header>*
model.py中的我的python方法
*from odoo import models, fields, api
import requests
class gabzilAi(models.Model):
_name = 'ai.gabzil'
_description = 'Gabzil Odoo Module'
fileName = fields.Text("File content")
@api.one
def get_data(self):
myreq = requests.get("http://cake.gabzil.com/api/customers")
textdata = myreq.text
return textdata*
我是Odoo的新手,所以对我犯傻错误的事情不太了解...