Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita 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
  • Proyectos
  • 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
27692 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.

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
Notebook Page
page notebook
Avatar
Avatar
1
ago 22
5391
How to auto refresh view? Resuelto
view v7
Avatar
Avatar
Avatar
Avatar
Avatar
12
dic 23
45411
Saving Views
view v7
Avatar
0
mar 15
5776
set one page(Tab) as default in notebook Resuelto
default page notebook
Avatar
Avatar
Avatar
Avatar
3
sept 24
16625
forbid addition in one2many widget but permit edition of lines Resuelto
view one2many v7
Avatar
Avatar
Avatar
2
may 24
9928
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • 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 estar 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