Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Odoo 8: how to prevent wizard from closing after a new one is opened?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
wizardpython2.7odoo8
2 Odpowiedzi
6922 Widoki
Awatar
SlyK

I am trying to create a wizard, launched from a button in res.partner's form view, which has two buttons on its footer (besides the 'cancel' one): the first one launches a method that does stuff inside the related res.partner record (but it's not important to the main problem); the second one opens the email form with precompiled values (again, from the related res.partner's recordset values).

My question is: how do I prevent the wizard from closing when I click on the "Send email" button which opens the email form, so that (after I've finished with email itself) I can go back to the wizard and click the "Execute action" button?


I am using Odoo 8 with Python 2.7.14.


My code:

1- the button that launches the wizard (from res.partner):

    <button string="Execute action" type="action"
        name="%(execute_action_wizard)d"
        attrs="{'invisible': [('action_required', '=', False)]}"
        class="oe_highlight"/>


2- the action that launches the wizard:

    <record id="execute_action_wizard" 
        model="ir.actions.act_window">
        <field name="name">Execute action</field>
        <field name="res_model">
            account.payment.action.wizard</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" 
            ref="execute_action_wizard_form_view"/>
        <field name="target">new</field>
    </record>


3- the buttons within the wizard itself:

    <button name="compute_execute_action"
        string="Execute action"
        class="oe_highlight"
        type="object"/>
    <button name="open_form_send_mail"
        string="Send email"
        class="oe_highlight"
        type="object"
        attrs="{'invisible':[('send_mail', '=', False)]}"/>


4- email form method: 

    @api.multi
    def open_form_send_mail(self):
        self.ensure_one()
        template_id = self.email_template_id.id
        partner_id = self._context['active_ids'][0]
        compose_form_id = self.env.ref(
            'mail.email_compose_message_wizard_form', False).id
        ctx = dict(
            default_res_id=partner_id,
            default_use_template=True,
            default_template_id=template_id or False,
            default_composition_mode='comment',
            default_model='res.partner',
            default_partner_ids=[(6, 0, [partner_id])],
            default_subject=_(u"Client email")
            )
        return {
            'name': _('Compose Email'),
            'context': ctx,
            'type': 'ir.actions.act_window',
            'target': 'new',
            'res_model': 'mail.compose.message',
            'views': [(compose_form_id, 'form')],
            'view_id': compose_form_id,
            'view_mode': 'form',
            'view_type': 'form',
            'flags': {'action_buttons': True},
        }


Please help me out. This is driving me crazy.

0
Awatar
Odrzuć
Awatar
Khubab Shams
Najlepsza odpowiedź

you can open just one form as a pop up, just change the first form action target to "current", it will be still open if another form popped up.

<record id="execute_action_wizard" 
        model="ir.actions.act_window">
        <field name="name">Execute action</field>
        <field name="res_model">
            account.payment.action.wizard</field>
        <field name="view_type">form</field>
        <field name="view_mode">form</field>
        <field name="view_id" 
            ref="execute_action_wizard_form_view"/>
        <field name="target">current</field>
    </record>

0
Awatar
Odrzuć
Awatar
Rakesh Vadeghar
Najlepsza odpowiedź

instead opening a wizard (form view) try to open form view directly


inXML
<button string="Execute action" name="execute_action_wizard" attrs="{'invisible': [('action_required', '=', False)]}"
        class="oe_highlight"/>
def execute_action_wizard(self):
view_id = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'base', 'execute_action_wizard')
return {
'name': _('form name'),
'view_type': 'form',
'view_mode': 'form',
'view_id': [view_id],
'res_model': 'res.partner',
'type': 'ir.actions.act_window',
'nodestroy': True,
'target': 'current',
'res_id': self._ids,
}

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Pivot view does not display in odoo 8 Rozwiązane
python2.7 odoo8
Awatar
Awatar
1
paź 22
6220
How to call wizard in create method in odoo-11 ?
wizard python2.7 odoo11
Awatar
Awatar
1
sie 20
9540
How to create a recursive function in Python to create a dict which maps Odoo 8 relational field records?
python2.7 recursion dictionary odoo8
Awatar
Awatar
1
sty 18
16351
Launch wizard after selecting elements in treeView
wizard listview launch odoo8
Awatar
Awatar
1
wrz 17
6546
Odoo 8 - wizard cannot sent back editable input after submit
wizard odooV8 odoo8.0 odoo8
Awatar
1
sty 17
4324
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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