Odoo 10:无法从菜单项调用我的 python 函数

这是我的 view.xml :


<?xml version="1.0" encoding="utf-8"?>

<odoo>

  <data>

<record id="view_sim" model="ir.actions.server">


            <field name="name">Details</field>

             <field name="model_id" ref="model_test" />   

            <field name="condition">True</field>


            <field name="type">ir.actions.server</field>


            <field name="state">code</field>


            <field name="code">self.on_test()</field>


    </record>


    <record model="ir.actions.act_window" id="view_sim">

        <field name="name">Details</field>

        <field 

         name="res_model">test</field>

        <field name="view_type">form</field>

        <field name="limit">100</field>

        <field name="view_mode">tree,form</field>

        <field name="domain">[]</field>

        <field name="help" type="html">

            <p class="oe_view_nocontent_create">Create new

            </p>

        </field>

</record>



    <!-- Top menu item -->

     <menuitem id="root.menu_root" name="card"/>

     <!-- menu categories -->

        <menuitem id="sim" name="Sim" parent="root.menu_root" action="view_sim"/>


  </data>

</odoo>

这是我在 models.py 中的 python 函数:


def on_test(self):

          _logger.error("test")

当我点击我的菜单项时,我无法调用这个函数。我收到一个错误:


ValueError: <type 'exceptions.NameError'>: "name 'self' is not defined" while evaluating

u'self.on_test()

这是在odoo 10中调用函数的正确方法吗?如何在views.xml 中调用我的函数或定义self?


富国沪深
浏览 236回答 3
3回答

慕的地6264312

您可以ir.actions.server在 Odoo 的技术部分创建或简化服务器操作。对于初学者来说,它有一些有趣的优势:一些文档。以下是来自 Odoo 10 的副本,并显示了您在创建 python 代码服务器操作时获得的小文档:# Available variables:#&nbsp; - time, datetime, dateutil, timezone: Python libraries#&nbsp; - env: Odoo Environement#&nbsp; - model: Model of the record on which the action is triggered#&nbsp; - record: Record on which the action is triggered if there is one, otherwise None#&nbsp; - records: Records on which the action is triggered if there is one, otherwise None#&nbsp; - log : log(message), function to log debug information in logging table#&nbsp; - Warning: Warning Exception to use with raise# To return an action, assign: action = {...}而且您来自菜单,因此 Odoo 不知道任何记录。就用model.on_test()PROTOCOL已经写好了。你还应该装饰你的方法,@api.model告诉 Odoo 这个方法的调用没有涉及任何记录。

拉莫斯之舞

试试这个,而不是<field&nbsp;name="code">self.on_test()</field>改成<field&nbsp;name="code">model.on_test()</field>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python