如何在openerp 7中隐藏丢弃按钮?

时间:2014-04-04 09:16:46

标签: python-2.7 openerp openerp-7

我需要在openerp中隐藏页面中的discard按钮。有可能吗?

enter image description here

2 个答案:

答案 0 :(得分:0)

您必须继承表单按钮模板并隐藏表单中的按钮。

<templates id="template" xml:space="preserve">
   <t t-extend="FormView.buttons">
        <t t-jquery="div[class=oe_form_button_cancel]" t-operation="replace">
            <a href="#" class="oe_bold oe_form_invisible oe_form_button_cancel" accesskey="D">Discard</a>
        </t>
   </t>
</templates>

希望这个帮助

此致

答案 1 :(得分:0)

这似乎毫无意义,因为你无法使用浏览器上的后退按钮(或只是关闭浏览器)来阻止它们。

道歉,如果这看起来很愚蠢,但你的意思是你想阻止他们删除这个对象吗?