Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Show Tree view inside a Note book page

Subscriure's

Get notified when there's activity on this post

This question has been flagged
viewv7pagenotebook
2 Respostes
27684 Vistes
Avatar
GuruDev

Dear All, Please let me know, how to display, A Tree view (which is able to add new lines) inside a notebook page. Like, in purchase requisition we add the products to be purchased, as line by line. Im using V7.

Please help.

3
Avatar
Descartar
Avatar
Keyur
Best Answer

Hi Gurudev,

You can add tree view inside page like this,

<record id="form_id" model="ir.ui.view">
    <field name="name">object.object.form</field>
    <field name="model">object.object</field>
    <field name="arch" type="xml">
        <form string="Form String" version="7.0">
        <header>
        </header>
        <sheet>
            <div class="oe_title">
            </div>
            <notebook>
                <page string="Page String">
                    <field name="one2many_field">
                        <tree string="Tree String">
                            <field name="name"/>
                            <field name="date_planned"/>
                            <field name="price_subtotal"/>
                        </tree>
                    </field>
                </page>
            </notebook>
        </sheet>
        </form>
    </field>
<record/>
4
Avatar
Descartar
GuruDev
Autor

Dear keyur, """<field name="one2many_field"> <tree string="Tree String"> <field name="name"/> <field name="date_planned"/> <field name="price_subtotal"/> </tree> </field>"""

this "one2many_field" is from different model, right? Is it necessary that, that model should contain a view?(or a tree view?)

Keyur

The model should contain a view. Because model's view is considered everywhere wherever you use that model as one2many or many2many if you don't specify inline view. If you don't want to make view then you have to make inline view for that model as I mentioned in above answer.

Umar Maniar

How can i group this tree by combo_name and expiry_date?

Below I giving image of my tree-view

https://cdn.discordapp.com/attachments/956070122609606656/1044558003606650950/unknown.png

Avatar
GuruDev
Autor Best Answer

Dear Keyur, Thank you for the reply. I need to have an extra notebook_PAGE in hr_employee. The new page is to Store some extra data, which has to be added frequently(may be twice in a month).

For that, I created a new module say, hr_extended. In that I inherited the hr_employee. And in the view file, added the my new Page, aslo. That all worked fine.

Now, what I want is. The data which I want to store should come as a table view under the new Page. So that I can see the previous datas also. To capture the new data, a new model should be created right? like sale_order_lines comes in slae_order. But, how to display this new model's data in my hr_extended module? Awaiting your reply..

0
Avatar
Descartar
Keyur

You can make one2many field under your page and add in the view you want. one2many field will show you data in tabular format.

GuruDev
Autor

Im new to programming, Please let me know.. how to put, many2one.

Suppose my datas to be stored are..

[model is operator.code] _columns = { 'code' : fields.char('Operator Code', size=32,required=True) 'reg_date': fields.date('Registered On') 'note': char('Notes', size=32) }

..And, I want to take them into my hr_extended module..that means, I want to connect it via a

'op_code' : fields.one2many('operator.code', '?', '?'),

How to do this?

Keyur

I hope you get the answer of the question you posted here. For new questions I suggest you to make a new post otherwise this posted question will become messy.

GuruDev
Autor

Ok.. Mean time, please let me know, how to add code in Questions and comments :)

GuruDev
Autor

Thank you Keyur, It worked.. :)

Keyur

Great. Keep it up :)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrar-se
Related Posts Respostes Vistes Activitat
Notebook Page
page notebook
Avatar
Avatar
1
d’ag. 22
5384
How to auto refresh view? Solved
view v7
Avatar
Avatar
Avatar
Avatar
Avatar
12
de des. 23
45373
Saving Views
view v7
Avatar
0
de març 15
5759
set one page(Tab) as default in notebook Solved
default page notebook
Avatar
Avatar
Avatar
Avatar
3
de set. 24
16600
forbid addition in one2many widget but permit edition of lines Solved
view one2many v7
Avatar
Avatar
Avatar
2
de maig 24
9916
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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