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

What is wizard ?

Suscribirse

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

Se marcó esta pregunta
wizard
3 Respuestas
34283 Vistas
Avatar
stephen nedumpally

What is wizard.what are the uses or application with example

5
Avatar
Descartar
Mitul Shingala

hello,

please refer this link, i hope this will helps you.: https://odooforbeginnersblog.wordpress.com/2017/03/05/how-to-create-wizards-in-odoo/

Avatar
Abraham Qureshi
Mejor respuesta

please refer these documentation.It will help you

https://www.odoo.com/documentation/12.0/howtos/backend.html#wizards

6
Avatar
Descartar
Avatar
Dhaval Desai
Mejor respuesta

Hi, 

Geo,

* Odoo Wizard Document Link Given Below Please refer It will definitely help you. :      https://www.odoo.com/documentation/12.0/howtos/backend.html#wizards

* Wizard Example:

1. Create the Transient Model : I have create a new python file salewiz.py under the models directory. The name of our transient model  is : sale.control.limit.wizard. For now, we won’t bother creating fields for it. Let’s keep it basic.

# -*- coding: utf-8 -*-

from odoo import api, models,fields

from odoo.exceptions import UserError

from odoo import exceptions

import logging

_logger = logging.getLogger(__name__)


class SaleConfirmLimit(models.TransientModel):

_name='sale.control.limit.wizard'

invoice_amount = fields.Float('Invoice Amount',readonly=1)

new_balance = fields.Float('Total Balance',readonly=1)

my_credit_limit = fields.Float('Partner Credit Limit',readonly=1)

@api.multi

def agent_exceed_limit(self):

    _logger.debug(' \n\n \t We can do some actions here\n\n\n')

2. Create the XML view file for the Wizard or popup window

<?xml version="1.0" encoding="utf-8"?>

<odoo>

<record model="ir.ui.view" id="my_credit_limit_wizard">

<field name="name">Confirming Sale Order When Credit is Over Limit</field>

<field name="model">sale.control.limit.wizard</field>

<field name="type">form</field>

<field name="arch" type="xml">

<form>

    <group>

          <span>The following customer is about or exceeded their credit limit. This operation needs an Authorized                         Employee to approve the sale order:</span>

    </group>

    <group>

        <field name="invoice_amount" widget="monetary"/>

        <field name="new_balance" widget="monetary"/>

        <field name="my_credit_limit" widget="monetary"/>

    </group>

    <footer>

        <button string="Cancel" special="cancel" class="oe_highlight"/>

        <button name="agent_exceed_limit" string="Request Manager to Approve Sale" type="object"         class="oe_highlight" />

    </footer>

</form>

</field>

</record>

</odoo>

 3. Update the __manifest__.py file to edit the data attribute

'data': [

'views/partner_credit_view.xml',

'views/wizard.confirm.overcredit.xml',

],

4. We may need to create the view with its parameter values  !

params=order.check_credit_limit()

view_id=self.env['sale.control.limit.wizard']

new = view_id.create(params[0])

#The part of the code to initiate the creation of the wizard is shown below:return {

'type': 'ir.actions.act_window',

'name': 'Warning : Customer is about or exceeded their credit limit',

'res_model': 'sale.control.limit.wizard',

'view_type': 'form',

'view_mode': 'form',

'res_id' : new.id,

'view_id': self.env.ref('control_credit_limit.my_credit_limit_wizard',False).id,

'target': 'new',

}

5. As we have extended the sale.order class and we are to override the action_confirm method, we need to return the object to fire off the popup window as follows !

# -*- coding: utf-8 -*-

from odoo import api, models,fields

class MySale(models.Model):

_inherit = "sale.order"

@api.one

def check_credit_limit(self):

    partner=self.partner_id

    new_balance=self.amount_total+partner.credit

    if new_balance>partner.my_credit_limit:

        params = {'invoice_amount':self.amount_total,'new_balance': new_balance,'my_credit_limit':                             partner.my_credit_limit}

        return params

    else:

        return True

@api.multi

def action_confirm(self):

    for order in self:

        params=order.check_credit_limit()

        view_id=self.env['sale.control.limit.wizard']

        new = view_id.create(params[0])

    return {

                'type': 'ir.actions.act_window',

                'name': 'Warning : Customer is about or exceeded their credit limit',

                'res_model': 'sale.control.limit.wizard',

                'view_type': 'form',

                'view_mode': 'form',

                'res_id' : new.id,

                'view_id': self.env.ref('control_credit_limit.my_credit_limit_wizard',False).id,

                'target': 'new'}

#res = super(MySale, self).action_confirm()

#return res

6. That’s it! we have created a simple wizard popup window.


Thank You.


2
Avatar
Descartar
¿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
Load currnet record values when calling wizard Resuelto
wizard
Avatar
Avatar
1
dic 22
4225
Close wizard in onchange
wizard
Avatar
Avatar
4
jul 25
5596
IntegrityError: null value in column "res_model" violates not-null constraint Resuelto
wizard
Avatar
Avatar
2
dic 23
18594
populate wizard form dynamically Resuelto
wizard
Avatar
Avatar
Avatar
Avatar
6
abr 18
22351
How To call wizard from python in odoo10 Resuelto
wizard
Avatar
Avatar
5
dic 23
19027
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