错误:NameError:未定义名称“parent”

时间:2017-11-04 08:04:09

标签: openerp odoo-10

我正在尝试传递上下文值但是超出错误。

*。XML

<page string="Devices" attrs="{'invisible':[('type','!=','device')]}">
          <field name="device_ids" >
            <tree editable="bottom" >
              <field name="product_id" />
              <field name="quantity"/>
              <field name="state" />
              <button string="Procurement" name="%(purchase.purchase_rfq)d" context="{'origin':parent.name}" attrs="{'invisible':[('state','not in',['nostock'])]}" type="action" icon="fa-shopping-basket" class="fa-shopping-basket" groups="stock.group_stock_manager"/>
            </tree>
          </field>
</page>

当我在parent中使用field时,它运行正常。我需要在button中调用它。

我该怎么做?

0 个答案:

没有答案