Siirry sisältöön
Odoo Menu
  • Kirjaudu sisään
  • Kokeile ilmaiseksi
  • Sovellukset
    Talous
    • Kirjanpito
    • Laskutus
    • Kulut
    • Datataulukot (BI)
    • Asiakirjat
    • Allekirjoita
    Myynti
    • CRM
    • Myynti
    • Kassajärjestelmä myymälään
    • Kassajärjestelmä ravintolaan
    • Tilaukset
    • Vuokraus
    Verkkosivut
    • Verkkosivun Rakennustyökalu
    • Verkkokauppa
    • Blogi
    • Foorumi
    • Livechat
    • Verkko-oppiminen
    Toimitusketju
    • Varastointi
    • Tuotanto
    • Tuotteen elinkaaren hallinta (PLM)
    • Ostot
    • Huolto
    • Laatu
    Henkilöstöhallinto
    • Työntekijät
    • Rekrytointi
    • Vapaat
    • Arvioinnit
    • Suositukset
    • Kuljetuskalusto
    Markkinointi
    • Somemarkkinointi
    • Sähköpostimarkkinointi
    • Tekstiviestimarkkinointi
    • Tapahtumat
    • Markkinoinnin automaatio
    • Kyselyt
    Palvelut
    • Projekti
    • Työaikakirjaukset
    • Kenttähuolto
    • Asiakaspalvelu
    • Suunnittelu
    • Ajanvaraukset
    Tuottavuus
    • Viestintä
    • Hyväksynnät
    • IoT
    • IP-puhe
    • Tietokirjasto
    • WhatsApp
    Kolmannen osapuolen sovellukset Odoo-Studio Odoo-Pilvialusta
  • Toimialat
    Vähittäiskauppa
    • Kirjakauppa
    • Vaatekauppa
    • Huonekaluliike
    • Ruokakauppa
    • Laitteistokauppa
    • Lelukauppa
    Ruoka & Majoitus
    • Baari ja Pubi
    • Ravintola
    • Pikaruoka
    • Majatalo
    • Juomien jakelija
    • Hotelli
    Kiinteistöt
    • Kiinteistönvälitystoimisto
    • Arkkitehtitoimisto
    • Rakentaminen
    • Kiinteistönhallinta
    • Puutarhanhoito
    • Kiinteistön omistajien yhdistys
    Konsultointi
    • Tilitoimisto
    • Odoo-kumppani
    • Markkinointitoimisto
    • Lakitoimisto
    • Osaajahankinta
    • Tilintarkastus & sertifiointi
    Tuotanto
    • Tekstiili
    • Metalli
    • Huonekalut
    • Ruoka
    • Panimo
    • Yrityslahjat
    Terveys & Liikunta
    • Urheiluseura
    • Silmälasiliike
    • Kuntokeskus
    • Hyvinvointialan ammattilaiset
    • Apteekki
    • Kampaamo
    Kaupat
    • Yleismies
    • IT-laitteisto & Tuki
    • Aurinkoenergiajärjestelmät
    • Suutari
    • Siivoustarvikkeet
    • LVI-palvelut
    Muut
    • Voittoa tavoittelematon järjestö
    • Ympäristötoimisto
    • Mainostaulujen vuokraus  
    • Valokuvaus
    • Leasing-pyörät
    • Ohjelmistojen jälleenmyyjä
    Selaa kaikkia toimialoja
  • Yhteisö
    Opi
    • Tutoriaalit
    • Dokumentaatio
    • Todistukset
    • Koulutus
    • Blogi
    • Podcast
    Kannusta kouluttautumaan
    • Koulutusohjelmat
    • Scale Up! Liiketoimintapeli
    • Vieraile Odoolla
    Hanki ohjelmisto
    • Lataa
    • Vertaile versioita
    • Julkaisut
    Tee yhteistyötä
    • Github
    • Foorumi
    • Tapahtumat
    • Käännökset
    • Ryhdy kumppaniksi
    • Kumppanipalvelut
    • Rekisteröi tilitoimistosi
    Hanki palveluja
    • Löydä kumppani
    • Löydä kirjanpitäjä
    • Varaa asiantuntijatapaaminen
    • Implementaatiopalvelut
    • Asiakasreferenssit
    • Tuki
    • Versionkorotukset
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Varaa demo
  • Hinnoittelu
  • Asiakaspalvelu

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

  • CRM
  • e-Commerce
  • Kirjanpito
  • Varastointi
  • PoS
  • Projekti
  • MRP
All apps
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Kaikki kirjoitukset Ihmiset Merkit
Tunnisteet (Näytä kaikki)
odoo accounting v14 pos v15
Tietoa tästä foorumista
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Kaikki kirjoitukset Ihmiset Merkit
Tunnisteet (Näytä kaikki)
odoo accounting v14 pos v15
Tietoa tästä foorumista
Apua

Return wizard from a function

Tilaa

Saat ilmoituksen, kun tähän viestiin ilmaantuu aktiviteettia

Tämä kysymys on merkitty
5819 Näkymät
Avatar
Celia

How can I call a wizard in a return of a function? 

This is the first wizard that appears: 

class get_ticket(osv.osv_memory):    
    _name = 'get.tickets.wizard'    

    def _tickets_control(self, cr, uid, context=None):         active_ids = []         partner_ids = {}         for active_id in context.get('active_ids'):             active_ids.append(active_id)             for partner_id in self.pool.get('tickets').browse(cr, uid, active_id, context=context).partner_id:                 partner_ids[partner_id.id] = partner_id.id         if len(active_ids) <= 1:             self.display_error_message(cr, uid, 'You have to select more than 1 tickets.')             return False          elif len(partner_ids) > 1:             self.display_error_message(cr, uid, 'You have selected 2 or more tickets of different partners.')             return False         return True
    
    def display_error_message(self, cr, uid, error, context=None):         view_id = self.pool.get('ir.model.data').get(cr, uid, 'get_ticket_wizard', 'close_wizard_form_view', context=context)         view_id = view_id[0]         return {             'name': _("Error"),             'view_type': 'form',             'view_mode': 'form',             'view_id': view_id,             'res_model': 'close.wizard',             'type': 'ir.actions.act_window',             'target': 'new',             'context': {'error': error},     }     _columns = {         'ticket_id': fields.many2one('tickets', string='Ticket to keep'),         'control': fields.boolean(compute='_tickets_control'),     }     def onchange_get_tickets(self, cr, uid, ids, context=None):         active_ids = []         for active_id in context.get('active_ids'):             active_ids.append(active_id)         return {'domain': {'ticket_id': [('id', 'in', active_ids)]}}     _defaults = {         'control': _tickets_control,     }

And this is the wizard that I want to call (that has the function like an error message and close the wizard before and this [this I don't know if really does it]): 

class close_wizard(osv.osv_memory):    
    _name = 'close.wizard'    

    def _display_error(self, cr, uid, ids, context=None):        
        return context.get('error')    

    def _close_window_wizard(self, cr, uid, ids, context=None):         return {'type': 'ir.actions.act_window_close'}     _columns = {         'error': fields.char(string=''),     }     _defaults = {         'error': _display_error,     }

And this is its view: 

<!-- ********** Form view of close wizard ********** -->
<record model="ir.ui.view" id="close_wizard_form_view">    
    <field name="name">close.wizard.form</field>    
    <field name="model">close.wizard</field>    
    <field name="arch" type="xml">        
        <form string="Error">            
            <group>                
                <field name="error"/>            
            </group>            
            <footer>                
                <button string="Accept" name="%(_close_wizard_window)d" type="action" class="oe_highlight"/>         
            </footer>        
        </form>    
    </field>
</record>
<!-- ********** Option get tickets in menu 'More' ********** -->
<act_window id="close_wizard_action"            
    multi="True"            
    key2="client_action_multi"            
    name="Error"            
    res_model="close.wizard"            
    src_model="get.tickets.wizard"            
    view_mode="form"            
    target="new"            
    view_type="form"/>


0
Avatar
Hylkää
Emipro Technologies Pvt. Ltd.

Can you explain your main objective to achieve from wizard ? It will help us to understand your code as well as your requirement. Based on that we can give you exact suggestion or solution.

Celia
Tekijä

The module that I'm developing has the objective to have tickets as part of after-sales services. That tickets can being fused or separated in 2 tickets and other actions. Here I'm going to fuse 2 tickets, to do this I have to check 2 tickets in the tree view and in the 'more' button I have an option 'Fuse tickets' that call the wizard (get.tickets.wizard), here appears the wizard that has a many2one where I have to select the ticket that I want to preserve (the other is going to go over to another status, that is fused), but if the tickets that I have checked are of differents partners I have to display a message with the error, and I have to close the message error and the wizard when the user press the 'accept' button. So in code is: I call _tickets_control function, and if is something wrong (like the tickets have differents partners), this function calls display_error_message function that has to return the error message wizard (or window or view)

Nautitko keskustelusta? Älä vain lue, vaan osallistu!

Luo tili jo tänään nauttiaksesi yksinoikeusominaisuuksista ja osallistuaksesi mahtavaan yhteisöömme!

Rekisteröidy
Yhteisö
  • Tutoriaalit
  • Dokumentaatio
  • Foorumi
Avoin lähdekoodi
  • Lataa
  • Github
  • Runbot
  • Käännökset
Palvelut
  • Odoo.sh hosting
  • Tuki
  • Versionkorotus
  • Räätälöidyt kehitykset
  • Koulutus
  • Löydä kirjanpitäjä
  • Löydä kumppani
  • Ryhdy kumppaniksi
Meistä
  • Yrityksemme
  • Tavaramerkki
  • Ota yhteyttä
  • Työpaikat
  • Tapahtumat
  • Podcast
  • Blogi
  • Asiakkaat
  • Oikeudellinen ilmoitus • Yksityisyys
  • Tietoturva
الْعَرَبيّة 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 on kokoelma avoimen lähdekoodin yrityssovelluksia, jotka kattavat kaikki yrityksesi tarpeet: asiakkuudenhallinta eli CRM, verkkokauppa, kirjanpito, varastointi, kassajärjestelmä, projektinhallinta, jne.

Odoon uniikki arvolupaus on olla samanaikaisesti erittäin helppokäyttöinen ja täysin integroitu.

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