我正在尝试将模块从Odoo 10迁移到12,但这向我显示了此错误,我不明白为什么:
属性中使用的字段“状态”必须存在于视图中,但缺少
能帮我解决这个问题吗?
Field 'state' used in attributes must be present in view but is missing:
- 'state' in attrs="{'invisible': ['|','|',('journal_entry_ids', '!=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"
- 'state' in attrs="{'invisible': ['|','|',('journal_entry_ids', '=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"
Error context:
View `account.bank.statement.form.reconciliation`
[view_id: 1684, xml_id: n/a, model: account.bank.statement, parent_id: 462]
None while parsing /home/PycharmProjects/Odoo12/bank_reconciliation/views/account_view.xml:4, near
<record id="view_bank_statement_form_reconciliation" model="ir.ui.view">
<field name="name">account.bank.statement.form.reconciliation</field>
<field name="model">account.bank.statement</field>
<field name="inherit_id" ref="account.view_bank_statement_form"/>
<field name="arch" type="xml">
<data>
<field name="date" position="after">
<field name="type" invisible="1"/>
</field>
<xpath expr="//button[1]" position="attributes">
<attribute name="attrs">{'invisible': [('type', '!=', 'cash')]}</attribute>
</xpath>
<xpath expr="//field[@name='line_ids']/tree/field[@name='bank_account_id']" position="after">
<field name="type" invisible="1"/>
<button name="select_account_move_line" type="object" icon="fa-registered" attrs="{'invisible': ['|','|',('journal_entry_ids', '!=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"/>
</xpath>
<xpath expr="//field[@name='line_ids']/tree/field[@name='bank_account_id']" position="after">
<button name="cancel_reconciliation" type="object" icon="fa-chain-broken" attrs="{'invisible': ['|','|',('journal_entry_ids', '=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"/>
</xpath>
<xpath expr="//field[@name='line_ids']" position="inside">
<form string="Statement Line" create="false">
<group col="4">
<field name="statement_id"/>
<field name="date"/>
<field name="name"/>
<field name="ref"/>
<field name="partner_id"/>
<field name="amount"/>
<field name="journal_currency_id" invisible="1"/>
<field name="sequence"/>
<field name="note"/>
</group>
<notebook colspan="4">
<page string="Ecritures liées">
<field name="move_line_ids">
<tree readonly="1">
<field name="name"/>
<field name="account_id"/>
<field name="move_id"/>
<field name="date"/>
<field name="debit" sum="Débit"/>
<field name="credit" sum="Crédit"/>
</tree>
</field>
</page>
</notebook>
</form>
</xpath>
</data>
</field>
</record>
该错误表明父视图中没有'state'属性,但该属性存在。
这是父视图:
<record id="view_bank_statement_form" model="ir.ui.view">
<field name="name">account.bank.statement.form</field>
<field name="model">account.bank.statement</field>
<field name="priority">1</field>
<field name="arch" type="xml">
<form string="Bank Statement">
<header>
<field name="all_lines_reconciled" invisible="1" />
<button name="%(action_bank_reconcile_bank_statements)d" string="Reconcile" type="action" class="oe_highlight" attrs="{'invisible':['|','|',('all_lines_reconciled','=',True),('line_ids','=',[]),('state', '!=', 'open')]}"/>
<button name="check_confirm_bank" string="Validate" type="object" class="oe_highlight" attrs="{'invisible':['|','|',('all_lines_reconciled','=',False),('line_ids','=',[]),('state', '!=', 'open')]}"/>
<field name="state" widget="statusbar" statusbar_visible="open,confirm"/>
</header>
...
</field>
</record>
答案 0 :(得分:2)
当您编写这样的内容时:
<xpath expr="//field[@name='line_ids']/tree/field[@name='bank_account_id']" position="after">
...
</xpath>
添加的所有内容都与x2many字段line_ids
的协模型及其树形视图有关。因此,如果您添加带有attrs
参数的新字段/按钮,则必须检查域左侧的属性是否在line_ids
的树形视图内,而不是在{{1 }}。
因此,您必须将字段状态添加到字段account.bank.statement
的树形视图中:
line_ids
顺便说一句,您重复两次相同的<xpath expr="//field[@name='line_ids']/tree/field[@name='bank_account_id']" position="after">
<field name="type" invisible="1"/>
<field name="state" invisible="1"/>
<button name="select_account_move_line" type="object" icon="fa-registered" attrs="{'invisible': ['|','|',('journal_entry_ids', '!=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"/>
<button name="cancel_reconciliation" type="object" icon="fa-chain-broken" attrs="{'invisible': ['|','|',('journal_entry_ids', '=', []), ('state', '=', 'confirm'),('type', '!=', 'bank')]}"/>
</xpath>
,这对于Odoo来说既混乱又慢,因此我将其分组为更有意义的一个。