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
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • 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
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et 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
    Browse all 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
    • Devenez partenaire
    • Services for Partners
    • 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

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
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

Why my wizard is blank?

S'inscrire

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

Cette question a été signalée
wizard
2 Réponses
5116 Vues
Avatar
Luis Domingues

Hello,

I'm trying to do a wizard. But when I try to launch it on OpenERP, I have a blank view. I think I miss something, but I don't know what.

XML:

<?xml version="1.0"?>
<openerp>
<data>
    <!-- form view -->
    <record model="ir.ui.view" id="view_staff_pay_push_form">
        <field name="name">staff.pay.push.form</field>
        <field name="model">staff.pay.push</field>
        <field name="type">form</field>
        <field name="arch" type="xml">
            <form string="Pay Push" version="7.0">
                <field invisible="1" name="state" />
                <group states="init">
                    <field name="user_id" />                
                </group>
                <group states="defineAmount">
                    <field name="amount" />                
                </group>
                <footer states="init">
                    <button name="action_next" string="Next"/>
                </footer>
                <footer states="defineAmount">
                    <button name="action_previous" string="Previous"/>
                </footer>
          </form>
        </field>
    </record>
    <record model="ir.ui.view" id="view_staff_pay_push_tree">
        <field name="name">staff.pay.push.tree</field>
        <field name="model">staff.pay.push</field>
        <field name="type">tree</field>
        <field name="arch" type="xml">
            <tree string="Pay Push" version="7.0">
                <field name="user_id" />
                <field name="amount" />
          </tree>
        </field>
    </record>
    <!-- action -->
    <record model="ir.actions.act_window" id="show_Field">
        <field name="name">Pay Push</field>
        <field name="res_model">staff.pay.push</field>
        <field name="view_type">form</field>
        <field name="view_mode">tree,form</field>
    </record>
    <!-- menu -->
    <menuitem name="Field" id="menu_staff_pay_pushs"  sequence="49" parent="menu_staff_options" action="show_Field" groups="group_staff_management_in_charge"/>
</data>
</openerp>

Python file:

from openerp.osv import osv, fields
from openerp.osv.orm import TransientModel

class staff_pay_push(TransientModel):
_name="staff.pay.push"
_columns={
    'user_id':fields.many2one('res.users', 'User', relate=True),
    'amount': fields.float('Amount', readonly=False),
    'state': fields.selection([('init', 'init'),('defineAmount', 'defineAmount')])
}

def action_next(self, cr, uid, ids, context=None):
    #your treatment to click  button next 
    #...
    # update state to  step2
    self.write(cr, uid, ids, {'state': 'defineAmount',}, context=context)
    #return view
    return {
        'type': 'ir.actions.act_window',
        'res_model': 'staff_pay_push',
        'view_mode': 'form',
        'view_type': 'form',
        'res_id': this.id,
        'views': [(False, 'form')],
        'target': 'new',
        'context' : context
         }

def action_previous(self, cr, uid, ids, context=None):
    #your treatment to click  button previous 
    #...
    # update state to  step1
    self.write(cr, uid, ids, {'state': 'init',}, context=context)
    #return view
    return {
        'type': 'ir.actions.act_window',
        'res_model': 'staff_pay_push',
        'view_mode': 'form',
        'view_type': 'form',
        'res_id': this.id,
        'views': [(False, 'form')],
        'target': 'new',
         }

staff_pay_push()
0
Avatar
Ignorer
Avatar
Vasiliy Birukov
Meilleure réponse

You need define initial value of state field. Or through defaults values or through context.

For example in your py file add:

_defaults = {
    'state': 'init',
}
1
Avatar
Ignorer
Avatar
Jagdish Panchal
Meilleure réponse

Hi,

Try this code

def action_previous(self, cr, uid, ids, context=None):
    #your treatment to click  button previous 
    #...
    # update state to  step1
    self.write(cr, uid, ids, {'state': 'init',}, context=context)
    ir_model_data = self.pool.get('ir.model.data')
    view_id = ir_model_data.get_object_reference(cr, uid, 'your_module_name', 'view_staff_pay_push_form')[1]
    #return view
    return {
        'name': _('Test '),
        'type': 'ir.actions.act_window',
        'res_model': 'staff.pay.push',
        'view_mode': 'form',
        'view_type': 'form',
        'view_id': view_id,
        'views': [(view_id, 'form')],
        'target': 'new',
         }
0
Avatar
Ignorer
Luis Domingues
Auteur

This code don't seems to be the solution. I steel have my blank page.

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
Publications associées Réponses Vues Activité
Load currnet record values when calling wizard Résolu
wizard
Avatar
Avatar
1
déc. 22
4264
What is wizard ? Résolu
wizard
Avatar
Avatar
Avatar
3
nov. 23
34413
Close wizard in onchange
wizard
Avatar
Avatar
4
juil. 25
5647
IntegrityError: null value in column "res_model" violates not-null constraint Résolu
wizard
Avatar
Avatar
2
déc. 23
18650
populate wizard form dynamically Résolu
wizard
Avatar
Avatar
Avatar
Avatar
6
avr. 18
22388
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
  • Devenez 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 ภาษาไทย 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