콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
2441 화면

I work on Odoo 12, I want to create a module, installation is ok but when I wan to upgrade with a xml file, I have some errors.I'm on odoo 12 Here xml code:

<record model="ir.ui.view" id="student_form_view">
      <field name="name">Student From</field>
      <field name="model">university.student</field>
      <field name="arch" type="xml">
        <from>
          <field name="f_name"/>
          <field name="l_name"/>
          <field name="identity_card"/>
          <field name="adress"/>
          <field name="birthdays"/>
          <field name="sexe"/>
          <field name="registration_date"/>
          <field name="email"/>
          <field name="phone"/>
        </from>
      </field>
    </record>

And here error:

odoo.tools.convert.ParseError: "Wrong value for ir.ui.view.type: 'from'" while parsing /home/odoo/Documents/custom_addons/student_module/views/student_views.xml:23, near
<record model="ir.ui.view" id="student_form_view">
      <field name="name">Student From</field>
      <field name="model">university.student</field>
      <field name="arch" type="xml">
        <from>
          <field name="f_name"/>
          <field name="l_name"/>
          <field name="identity_card"/>
          <field name="adress"/>
          <field name="birthdays"/>
          <field name="sexe"/>
          <field name="registration_date"/>
          <field name="email"/>
          <field name="phone"/>
        </from>
      </field>
    </record>

If you have any ideas, I will be very grateful ! Thank you !

아바타
취소
베스트 답변

The tag "from" is wrong. There is no such tag in Odoo. It must be "form"

<form>
.... # Your fields
</form>

Just change tag "from" to "form" and update/install your module and it will work.

아바타
취소
관련 게시물 답글 화면 활동
2
12월 23
14800
0
10월 23
33
3
10월 23
788
1
10월 23
569
1
8월 23
2520