Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Wizard popup not being shown from python function

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
2 Réponses
3629 Vues
Avatar
nirav

hello,

I am returning wizard form view from python function but wizard popup is not coming.

please help me, I am  new to odoo.


python code:

class SaleOrder(models.Model):
_inherit = 'sale.order'

def action_confirm(self):
if self.partner_id.check_credit:
if self.amount_total > self.partner_id.credit_limit:
self.return_wizard()

def return_wizard(self):
print('==========================return wizard')
         form_view_id = self.env.ref('check_credit_limit.send_notification_action').id
print('==========================', form_view_id)
return {
'name': "Send Notification",
'type': 'ir.actions.act_window',
'view_mode': 'form',
'res_model': 'send.notification',
'view_id': form_view_id,
'target': 'new'
}



xml code(transient model form view):

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="send_notification_form" model="ir.ui.view">
<field name="name">notification.form</field>
<field name="model">send.notification</field>
<field name="arch" type="xml">
<form string="Send Notification">
<group>
<span> Hi I am wizard</span>
</group>
<footer>
<button name="send_notification" string="Send" type="object" class="oe_highlight"/>
<button string="Cancel" class="btn btn-default" special="cancel"/>
</footer>
</form>
</field>
</record>

<record id="send_notification_action" model="ir.actions.act_window">
<field name="name">Send Notification</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">send.notification</field>
<field name="view_mode">form</field>
<field name="target">new</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Hi I am wizard
</p>
</field>
</record>
</odoo>
1
Avatar
Ignorer
Avatar
Begineer
Meilleure réponse

Hi, 

Everything seems correct other than the inheritance part, while your inheriting a function from default class then you must return that class function with using "super".

@api.multi

def action_confirm(self):

        Your code.....

res = super(SaleOrder, self).action_confirm()

return res


and also include 'view_type' : 'form' in your wizard return
Hope it helps ,

Thanks

0
Avatar
Ignorer
nirav
Auteur

it worked like this, i was giving view action's id but i had to give form view id and i removed view action from xml and everything works fine:

def action_confirm(self):

if self.partner_id.check_credit:

if self.amount_total > self.partner_id.credit_limit:

form_view_id = self.env.ref('check_credit_limit.send_notification_form').id

return {

'name': "Send Notification",

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

'view_mode': 'form',

'res_model': 'send.notification',

'view_id': form_view_id,

'target': 'new'

}

Begineer

Hi, your code will completely change the action_confirm written by odoo.

This is not the correct procedure,

Do check this to override something

https://www.odoo.yenthevg.com/override-create-functions-odoo/

nirav
Auteur

yes, i added super() when i noticed different behavior of action_confirm.

Begineer

Good that you changed!!

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Meilleure réponse

Hi Nirav,
Please try changing your python code as below.

class SaleOrder(models.Model):
_inherit = 'sale.order'

def action_confirm(self):
if self.partner_id.check_credit:
if self.amount_total > self.partner_id.credit_limit:
return self.return_wizard()

def return_wizard(self):
print('==========================return wizard')
form_view_id = self.env.ref('check_credit_limit.send_notification_action').id
print('==========================', form_view_id)
return {
'name': "Send Notification",
'type': 'ir.actions.act_window',
'view_mode': 'form',
'res_model': 'send.notification',
'view_id': form_view_id,
'target': 'new'
}

Regards

1
Avatar
Ignorer
Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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