隐藏标签(ODOO 12)
Hiding a tag (ODOO 12)
我正在开发 odoo 12 (python 3.6),我正在尝试继承 product.template 并将价格标签隐藏在看板框中,只隐藏靠近有可能(lst_price 字段),但标签保持不变我试过此代码:
<xpath expr="//div[@name='tags']" position="attributes">
<attribute name="invisible">1</attribute>
但是没用..
在product.template的看板视图代码中是这样的
请帮忙
您正在访问不同的标签,要像这样在 li 标签上执行操作,
<xpath expr="//ul/li" position="">
<!-- Perform Your Operation -->
</xpath>
在您的 XPath 上,div 标签已经 close.after 具有新标签 ul 然后是 li.
谢谢
我正在开发 odoo 12 (python 3.6),我正在尝试继承 product.template 并将价格标签隐藏在看板框中,只隐藏靠近有可能(lst_price 字段),但标签保持不变我试过此代码:
<xpath expr="//div[@name='tags']" position="attributes">
<attribute name="invisible">1</attribute>
但是没用..
在product.template的看板视图代码中是这样的
您正在访问不同的标签,要像这样在 li 标签上执行操作,
<xpath expr="//ul/li" position="">
<!-- Perform Your Operation -->
</xpath>
在您的 XPath 上,div 标签已经 close.after 具有新标签 ul 然后是 li.
谢谢