Odoo常用函数以及属性总结
一 Odoo函数
1 查询方法
search():搜索视图中调用
search_count():视图中计算记录数时调用
name_search():many2one字段搜索时调用
search_read():many2one点开搜索更多时调用
read_group():搜索视图分组时调用
https://blog.csdn.net/sinat_23931991/article/details/86715272
二 Odoo-Context-key:value
1 context对应的函数
- 获取context中的key对应的value
self._context.get(filedname)
- 设置context中的key对应的value
self.with_context({'filed_1':'new_value_1','field_2':'new_value_2'})
2 context对应的key
- country_id:可以在多对一的字段中添加context这个参数,例如:州地址后面加上对应国家字段。
<field name="state_id" context="{'country_id':country_id}">
- currency_id:显示币别
- search_default_fieldname:默认搜索字段,在动作xml中引入。
- group_by:分组。
- default_fieldname:给record中的字段设置默认值。
- tree_view_ref/form_view_ref:指定点击many2one字段打开的视图