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
    • Información
    • 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

How to Update the Record in Wizard?

Suscribirse

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

Se marcó esta pregunta
wizardxmlpyhtonodoo12
3 Respuestas
11654 Vistas
Avatar
Harshit Trivedi

I am using Odoo v12, I have one requirement to update the qty to wizard view. I have added two button Plus and Minus and but when I try to update qty using button it is not working. Here I attach the Screenshot my wizard 



  Here button code in xml.

 <button name="action_plus" icon="fa-plus-square" type="object" style="float:right" />

  And qty Increment Code in 

@api.multi

def action_plus(self):

    for record in self:

        record.qty  = record.qty + 1

    return {"type": "set_scrollTop"}


   So My Qty not to increasing and decreasing using that button 


0
Avatar
Descartar
Avatar
Vincent
Mejor respuesta

Hi, have you solved this problem? may i know how you can solved this problem because right now i got same problem like you. Thank you

0
Avatar
Descartar
Avatar
La Jayuhni Yarsyah
Mejor respuesta

How do you display the wizard form ??
Are you save the wizard record first then show the record at pop up wizard  OR you just set new form with some default value ??

Example:

  1.  https://pastebin.com/ymzMcQFF

  2. \https://pastebin.com/ymzMcQFF



Based on your syntax (def action_plus(self):),, self pointed to the object (including record) that to be executed.. so if you use style no #2 you can't do that (increase/decrease) only just by the python,, but if you use style no #1 it could be done because when you call the button the record has been saved at database and odoo know wich record to be updated..
You can test you code with "print(self)", or logger to the command line,, and see what the result. I guess the result will be a empty object...
Ex:

@api.multi

def action_plus(self):

   # DO THIS FOR SEE "SELF" VALUE--->  print(self)
   # OR DO THIS --> _logger.info(self) # IF YOU USE logger object

    for record in self:

        record.qty  = record.qty + 1


But i think its better you to handle it by javascript,,  then user can save it with save button..

Regards

La Jayuhni Yarsyah

0
Avatar
Descartar
Avatar
faOtools
Mejor respuesta

Hi, it seems it is because your page is not refreshed after the action is done. If you reload the page, it should be updated. 

To programatically refresh the page, try something like:

return {
    'type': 'ir.actions.client',
    'tag': 'reload',
}

You can also play around with 'always_reload' and 'reload_on_button' options for the QTY field. Have a look at: https://www.odoo.com/forum/ayuda-1/question/what-behavior-with-options-always-reload-5566


Finally, I guess it was a misprint, but anyway: the decorator is @api.multi. In your question you missed 'i' at the end

0
Avatar
Descartar
Harshit Trivedi
Autor

Thank You for Answering but I have not to need the reload page every plus qty or minus qty and also you have given the link not working and In that case, it is working for me Odoo V11 version but the same thing Odoo V11 to V12 it is not working.

faOtools

As for reloading the page: I'm afraid you have to because of how buttons in embedded tree view work. Each time you pressed the button on a form view the form is reloaded, however, when you pressed the button on a embedded tree view, a form is not updated. So, you need to do that manually.

Otherwise, you need to implement JavaScript methods to make the update partially.

As for the reload options: I didn't try it by myself, so can't be sure. However, in the Odoo 12 core there are many places where it is used

¿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
Element cannot be located in parent view
xml odoo12
Avatar
0
feb 22
2531
Prevent wizard from being closed odoo 12
wizard odoo12
Avatar
Avatar
Avatar
2
sept 20
6807
ParseError: "External ID not found in the system?
wizard xml buttons wizards odoo12
Avatar
0
dic 19
3
How to receive value from wizard before saving it
wizard odoo12
Avatar
Avatar
1
sept 19
7353
AssertionError: Element data has extra content: record, line 3 Resuelto
xml odoo12
Avatar
Avatar
Avatar
6
ago 19
11140
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