我是 Openerp 7 的新手,我安装了采购申请模块,在 openerp 7 中,采购申请中没有批准方法我通过视图添加自定义按钮
<header>
<button name="tender_in_progress" states="draft" string="Send to Suppliers" type="object" class="oe_highlight"/>
<button name="tender_in_progress" states="draft" string="Approve" type="object" class="oe_highlight"/>
<button name="tender_reset" states="done,cancel" string="Reset to Draft" type="object"/>
<button name="tender_done" states="in_progress" string="Purchase Done" type="object" class="oe_highlight"/>
<button name="tender_cancel" states="draft,in_progress" string="Cancel Requisition" type="object"/>
<field name="state" widget="statusbar" statusbar_visible="draft,in_progress,done" statusbar_colors="{"in_progress":"blue"}"/>
</head
并更改流程或购买-基本流程草稿->批准->发送
按钮正在显示,但我不知道在单击“批准”按钮后它将如何执行采购申请状态从新更改为已批准的操作。请帮我 ....