欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

openERP 页面新添搜索框(支持模糊查询)

程序员文章站 2022-07-01 13:22:11
...

1.商品内部管理分类原是没有搜索框的

openERP 页面新添搜索框(支持模糊查询)

2.在xml视图中添加querybar属性,即可过滤名称或者编码

<tree string="商品类别" querybar='{"input":["name","code"],"placeholder":"请输入名称或者编码"}'>
					<head>
						<button name="import_nt_product_category_data_wizard" type="object" string="商品管理分类导入" groups="nt_core.group_product_extend_props_maintain"/>
					</head>
					<field name="name" />
					<field name="code" />
					<field name="parent_id"/>
					<field name="child_id" invisible="1"/>
					<field name="type" />
					<field name="sequence" />
				</tree>

3.效果如下图:

openERP 页面新添搜索框(支持模糊查询)
openERP 页面新添搜索框(支持模糊查询)