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

How to handle parent-child, master-detail?

Suscribirse

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

Se marcó esta pregunta
variables
7404 Vistas
Avatar
Ehab Mosilhy

I'm writing a warehouse management module and I came to the inventory step.

==========================================

class wh_inventory(osv.osv): _name = 'wh.inventory'

_columns = {
        'date' : fields.datetime('Date),
        'warehouse_id' : fields.many2one('wh.warehouse', 'Warehouse Name,required=True),
        'inventory_line_ids':fields.one2many('wh.inventory.line','inventory_id','Inventory),
        'notes':fields.char('Notes),
        'balance_track':fields.boolean('Balance Track')

}

==========================================

class wh_inventory_line(osv.osv):

_name = 'wh.inventory.line'

_columns = {

        'inventory_id':fields.many2one('wh.inventory', 'Inventory'),

        'warehouse_id':fields.related('inventory_id','warehouse_id'),

        'material_id' : fields.many2one('wh.material' ,'Material Name'),

        'balance':fields.float('Balance'),

        'previous_balance':fields.float('Previous Balance'),

}

I need to make an inventory every now and then for each warehouse separately and each inventory operation will be kept in the database as a master-detail relation, ie:

one record for the basic data such as id, date, warehouse_id etc. and this will be recorded in a table created by (inventory) object.

many records will keep the details of the operation (one record for each material) recording the material id, inventory id, balance, etc. and this will be recorded in the table (inventory_lines).

During the data entry, when the user selects a material, I need to check its current balance and display it in the balance field. In order to do this, I'll need to know the warehouse id because every warehouse shall have separate inventories.


I have many materials stored in many warehouses. For example: I can have a quantity of 5 pens in warehouse A and 10 pens in warehouse B and 6 pens in warehouse C.

First, I select the warehouse (A or B or C) --- let's say warehouse B

Then I select the material (Pen or notebook or whatever) --- let's say Pen

Now, I want to search the database to find the balance of (Pen) in (Warehouse B)

I can write something like this:

select balance from inventory_lines where material_id=mmmmmm and warehouse_id=wwwwww

So, I need to get the material id (mmmmm) and the warehouse id (wwwww)

And that will be done with each material I choose.

The warehouse id is in the column: inventory_id in the object: inventory 'warehouse_id' : fields.many2one('makhazen.warehouse', 'Warehouse Name',required=True),

The material id is in the column: material_id of the object inventory_line as in the picture in the question 'material_id' : fields.many2one('makhazen.material' ,'Material Name'),


I faced the following problem:

I could use the (on_change) method in the form view on the material_id field and could trigger a method to search for the balance in the database but I needed the warehouse_id which I couldn't get. The questions are: - How are this master-detail relationship is handled in openerp? how values are passed between the master table and the details table? - How can we extend the scope of the warehouse_id so that it can be seen from any method in the module? - I could change the values of the fields by calling a method and returning the desired values in a dictionary, but how to do the opposite (read them)?

It's very critical matter to me.

0
Avatar
Descartar
¿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
There is a bug in Product Variables?
barcode variables
Avatar
Avatar
1
dic 23
1659
Inquiring about Customization Options in Odoo e-commerce.
ecommerce variables
Avatar
Avatar
2
oct 23
1753
How to put a contact instead of the partner in email template?
objects variables
Avatar
0
mar 15
5574
[Odoo16 CE] How to insert -- event.question answer_ids in to email template?
events variables emailtemplate
Avatar
0
ene 25
1054
How to define a environment variable on Odoo.sh Resuelto
environment variables odoo.sh
Avatar
Avatar
1
feb 22
14551
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