我怎样才能获得价值? Odoo

时间:2017-07-19 08:47:48

标签: python xml openerp

我在xml视图中有这段代码:

<field name="fueled" sum="Sum of fueled"/>

如何获取值sum属性在python文件中进行一些计算?

1 个答案:

答案 0 :(得分:0)

这样做:

from lxml import etree

etree.fromstring('<field name="fueled" sum="Sum of fueled"/>').xpath('//field/@sum')[0]