0

我是 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="{&quot;in_progress&quot;:&quot;blue&quot;}"/>
        </head

并更改流程或购买-基本流程草稿->批准->发送

按钮正在显示,但我不知道在单击“批准”按钮后它将如何执行采购申请状态从新更改为已批准的操作。请帮我 ....

4

1 回答 1

0

工作流程不仅适用于添加此类按钮,还需要创建工作流程转换。

工作流主要是在一个完整对象的生命周期中以垂直方式定义的技术流程。

仅供参考:您可以在“account_invoice_workflow.xml”的基础上尝试制作。

于 2013-05-27T12:05:49.893 回答