Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Conocimientos
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyecto
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Show Tree view inside a Note book page

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
viewv7pagenotebook
2 Respuestas
27700 Vistas
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
Mejor respuesta

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 Mejor respuesta

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 :)

¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
Notebook Page
page notebook
Avatar
Avatar
1
ago 22
5405
How to auto refresh view? Resuelto
view v7
Avatar
Avatar
Avatar
Avatar
Avatar
12
dic 23
45428
Saving Views
view v7
Avatar
0
mar 15
5791
set one page(Tab) as default in notebook Resuelto
default page notebook
Avatar
Avatar
Avatar
Avatar
3
sept 24
16649
forbid addition in one2many widget but permit edition of lines Resuelto
view one2many v7
Avatar
Avatar
Avatar
2
may 24
9958
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y totalmente integrado.

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