Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Inteligência Artificial
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Gestão de Imóveis
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Agende uma Demonstração
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

What is wizard ?

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
wizard
3 Respostas
36858 Visualizações
Avatar
stephen nedumpally

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

5
Avatar
Cancelar
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
Melhor resposta

please refer these documentation.It will help you

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

6
Avatar
Cancelar
Avatar
Dhaval Desai
Melhor resposta

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
Cancelar
Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscrever-se
Publicações relacionadas Respostas Visualizações Atividade
 United Airlines_Custom no 79.3142.0013 ¿Como falar com a Air France no Brasil?
wizard
Avatar
0
abr. 26
12
Odoo Customization for Purchase?
wizard
Avatar
0
abr. 26
8
How to create an non-transient wizard?
wizard
Avatar
Avatar
1
fev. 24
4027
Load currnet record values when calling wizard Resolvido
wizard
Avatar
Avatar
1
dez. 22
5295
Close wizard in onchange
wizard
Avatar
Avatar
4
jul. 25
6641
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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