ODOO 12.0 MIGRATION:在系统中找不到外部ID:stock_account

时间:2019-03-06 16:11:49

标签: xml odoo odoo-10

尝试将模块从odoo 10迁移到odoo 12,但它向我显示此错误,似乎stock_account不存在。

raise ValueError('External ID not found in the system: %s' % xmlid)
    odoo.tools.convert.ParseError: "External ID not found in the system: stock_account.view_picking_inherit_form2" while parsing /home/*/PycharmProjects/Odoo12/*/invoice_in_picking/views/stock_view.xml:37, near
    <record id="view_picking_inherit_form3" model="ir.ui.view">
                <field name="name">stock.picking.form.inherit3</field>
                <field name="model">stock.picking</field>
                <field name="inherit_id" ref="stock_account.view_picking_inherit_form2"/>
                <field name="arch" type="xml">
                    <field name="move_lines" position="attributes">
                        <attribute name="context">{'default_invoice_state': invoice_state, 'address_in_id': partner_id, 'form_view_ref':'stock.view_move_picking_form', 'tree_view_ref':'stock.view_move_picking_tree', 'default_picking_type_id': picking_type_id, 'default_location_id': location_id, 'default_location_dest_id': location_dest_id}</attribute>
                    </field>
                </field>
            </record>

1 个答案:

答案 0 :(得分:1)

您收到的错误提示外部ID不存在。您收到此错误的原因是,尽管stock_account模块仍在Odoo 12中存在,但视图(view_picking_inherit_form2)不存在。

您需要确定要从哪个Odoo 12视图继承-最有可能是stock.view_picking_form

但是,您还需要查看该表单的内容,因为自Odoo 10以来发生了很多变化。例如,您尝试更改(attributes)上的move_lines的字段不会存在它将替换为move_ids_without_package


在12中继承视图几乎相同,但是在将任何视图内容迁移到Odoo 12之前,您需要问自己几个问题。

  1. 我什至需要在12秒钟内这样做吗?
  2. 我继承的模块是否存在于12中?
  3. 我继承的视图是否存在于12中?
  4. 视图内容是否在12中相同?

这里是the Views Documentation

的链接