我有一个外部系统,我需要在odoo 12系统中使用其API
此系统给我Excel文件,我想将此文件转换为CSV文件或将其数据导入odoo数据库
答案 0 :(得分:0)
您可以通过导入请求通过模型中的计算来调用外部api 例如 汇入要求 类(模型。模型): 温度= fields.Char(compute ='_ get_temperature')
def _get_temperature(self):
res = requests.get('http://externalapi.com')
for result in self:
result.temperature = res