Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

how to add a tree view in openerp 7?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
treeviewone2manyobject
1 Odpowiedz
9719 Widoki
Awatar
sneha antony

I had developed a simple module student_info in my openerp 7.I have a form view in which I want to create a tree view having two columns Date and Status.The screen shot of view attachedScreenshot-1.png I want to have a grid with two columns Date and Status under the tab heading Student Status.My present xml file and py file are attached.

student_info.py

  from openerp.osv import osv, fields

class student_student(osv.osv):

_name = 'student.student'

_columns = {
'name':fields.char('Student Name',size=16,required = True,translate = True),
'age':fields.integer('Age',required = True),
'percent':fields.float('Percentage',help = 'This field will add average marks of students out of 100'),
'gender':fields.selection([('male','Male'),('female','Female')],'Gender'),
'active':fields.boolean('Active'),
'notes':fields.text('Details'),
}

_defaults = { 'name':'Atul',
      'active':True,
}
student_student()

student_info_view.xml

    <?xml version="1.0" encoding="utf-8"?>
 <openerp>
  <data>


    <!--Student search view-->
    <record model="ir.ui.view" id="student_search">
        <field name="name">student.search</field>
        <field name="model">student.student</field>
        <field name="type">search</field>
        <field name="arch" type="xml">
          <search string = "student information search">
            <field name="name" string = "Student Name"/>
            <field name="gender" string = "Gender"/>  
            <field name="age" string = "Age"/>
           </search>
        </field>
    </record>



      <!--Student tree View-->
      <record id="student_student_tree" model="ir.ui.view">
        <field name="name">student.result.tree</field>
        <field name="model">student.student</field>
        <field name="type">tree</field>
        <field name="arch" type="xml">
          <tree string="Student_result">  
            <field name="name"/>  
            <field name="age"/>
        <field name="percent"/> 
            <field name="gender"/>  
            <field name="active"/>
            </tree>
        </field>
    </record>


      <!--Student Form View-->
        <record id="student_student_form" model="ir.ui.view">
            <field name="name">student.result.form</field>
            <field name="model">student.student</field>
          <!--<field name="type">form</field>-->
            <field name="arch" type="xml">
              <form string="Student_result" version="7.0">  
              <sheet>
               <group>
                <group>
                 <field name="name" />
                 <field name="age" />
                 <field name="percent" />
                 <field name="gender" />
                 <field name="active" />
                 <field name="notes" /> 
              </group>
                </group>
            </sheet>
            </form>
            </field>
        </record>

      <!--Student Action-->
        <record id="action_student_student" model="ir.actions.act_window">
            <field name='name'>Student Information</field>
            <field name='res_model'>student.student</field>
            <field name='view_type'>form</field>
            <field name='view_mode'>tree,form</field>
        </record>

       <!--Student Menu-->
         <menuitem id="student_parent" name="student"/>
         <menuitem id="menu_student_parent" name="Student Management" parent="student_parent"></menuitem>
         <menuitem action="action_student_student" id="menu_student_student" parent="menu_student_parent"      string="Result"/>
             </data>
         </openerp>

What are the code changes to be made in the present files.I am very new to openerp and tried for a long time yet the syntax for treee view was not found.So any help is greatly appreciated.

0
Awatar
Odrzuć
Awatar
Jagdish Panchal
Najlepsza odpowiedź

Hi Try this

  <!--Student tree View-->
    <record id="student_student_tree" model="ir.ui.view">
        <field name="name">student.result.tree</field>
        <field name="model">student.student</field>
        <field name="arch" type="xml">
            <tree string="Student_result">  
                <field name="name"/>  
                <field name="age"/>
                <field name="percent"/> 
                <field name="gender"/>  
                <field name="active"/>
            </tree>
        </field>
    </record>
1
Awatar
Odrzuć
sneha antony
Autor

where to write this coding?Isnt there any change in .py file?

Jagdish Panchal

Add this code in .xml file

sneha antony
Autor

should I replace the present code for student tree view or else paste as another code?

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
how to add a button in a one2many tree view Rozwiązane
treeview one2many
Awatar
Awatar
Awatar
Awatar
Awatar
4
gru 23
18686
Display One2many field value in tree view (Odoo 9)
treeview one2many
Awatar
Awatar
1
wrz 16
8139
editable treeview without ability to add new items
treeview one2many
Awatar
0
mar 15
4445
How to display related fields of one2many field in list view?
treeview one2many relations
Awatar
0
wrz 24
296
one2many field show possible unexisting records in view
treeview one2many virtual-record
Awatar
Awatar
1
mar 23
2981
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now