代表正确的odoo形式的麻烦

Troubles with representing correct odoo form

我正在做 odoo 教程,但在正确表示表单方面遇到了问题。 It should look like this in odoo tutorial

but it comes out differently when apply my xml file with form description

我的 xml 设置:

<record id="estate_property_view_form" model="ir.ui.view">
<field name="name">estate.property.form</field>
<field name="model">estate.property</field>
<field name="arch" type="xml">
    <form string="Lost Reason">
      <sheet>
          <h1 class="mb32">
              <field name="name" class="mb16"/>
          </h1>
          <group>
              <group>
                  <field name="property_type_id" string="Property Type"/>
                  <field name="postcode"/>
                  <field name="date_availability"/>
              </group>
              <group>
                  <field name="expected_price"/>
                  <field name="selling_price"/>
              </group>
              <notebook>
                  <page string="Description">
                    <group>
                        <field name="tag_ids" string="Tag" widget="many2many_tags"/>
                        <field name="description"/>
                        <field name="bedrooms"/>
                        <field name="living_area"/>
                        <field name="facades"/>
                        <field name="garage"/>
                        <field name="garden"/>
                        <field name="garden_area"/>
                        <field name="garden_orientation"/>
                        <field name="postcode"/>
                    </group>
                  </page>
              </notebook>
              <notebook>
                  <page string="Other info">
                    <group>
                        <field name="buyer"/>
                        <field name="salesperson"/>
                    </group>
                  </page>
              </notebook>
             <notebook>
                  <page string="Offers">
                    <group>
                        <field name="offer_ids"/>
                    </group>
                  </page>
              </notebook>
          </group>
      </sheet>
    </form>
</field>

我看了所有教程,但没有找到解决我问题的方法。感谢您的帮助。

您创建了 3 个不同的笔记本标签,这些标签会为您提供输出。尝试使用 1 个 3 页的笔记本标签。它将给出正确的输出。

一般情况下,1 个表单视图有 1 个笔记本标签。