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

Default values on Transient Model

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
wizarddefaultvalues
3 Odpowiedzi
7638 Widoki
Awatar
Christos Tsiknis
Hello. We have created a wizard to create some new records from sale order. I am trying to load default values on the wizard, but it's not working. I have tried the following:

- setting default values in the python fields declaration
- adding force_save to the fields when they are readonly
- passing the default values to the context of the wizard with default_field_name
- overriding the 'default_get' method of the wizard to check the dict it returns. The values are inside the res dict but they still don't appear when I load the wizard.

Can anyone help me figure this out?

#in parent model record
def action_create(self):
       
        return {
            'name':'Create Task',
            'res_model': 'sh.task.wizard',
            'view_mode':'form',
            'context': {
                'default_type': 'study',
                'default_scheduling_mode': 'FixedEffort',
                'default_effort_driven': True,
                'default_auto_scheduling': True,
                'default_proj_user_id': self._uid,
                'default_so_id': self.id
            },
            'view_id':self.env.ref('sh_so_task.sh_task_wizard').id,
            'target':'new',
            'type':'ir.actions.act_window'
        }


#in the transient model record
class ShMessageWizard(models.TransientModel):
    _name = "sh.task.wizard"
    _description = "Wizard To Ask Create Or Edit"

    task_selection = fields.Selection([('create_new','Create New Task'),('create_edit','Create Or Update Task')],string="Task Type")
   
    project_selection = fields.Selection([('create','Create New Project'),('edit','Update Existing Project')], default='create', string="Project Type")

    so_id = fields.Many2one('sale.order', string="Parent SO")
    so_partner = fields.Many2one('res.partner', related="so_id.partner_id", string="SO Customer")
   
    new_project = fields.Boolean("Create New Project", compute='compute_new_project')
    project_id = fields.Many2one('project.project', string="Project to edit")
    project_name = fields.Char(string="Project Name")
   
    task_ids = fields.Many2many('sale.order.line.task', string="Tasks")
   
    type = fields.Selection([('study', 'Study'),('construction', 'Construction')], default='study', string='Project type')

    scheduling_mode = fields.Selection([
        ('Normal', 'Normal'),
        ('FixedDuration', 'Fixed Duration'),
        ('FixedEffort', 'Fixed Effort'),
        ('FixedUnits', 'Fixed Units')
    ], string='Scheduling Mode', default='FixedEffort')
   
    effort_driven = fields.Boolean(string="Effort driven", default=True, help="New tasks will be effort driven by default")
    auto_scheduling = fields.Boolean('Auto scheduling', default=True)

   
    proj_user_id = fields.Many2one('res.users', string='Project Manager', ondelete='cascade', default=lambda self: self.env.user, help="User to be put in charge of the project")
    task_user_id = fields.Many2one('res.users', string='Task user', ondelete='cascade', default=lambda self: self.env.user, help="User to assign all new tasks to")
   
    ....


XML view for wizard:


   
        sh.task.wizard
        sh.task.wizard
       
           
               
               

                    Create New Project - It will create new project everytime

                    Update Existing Project - It will add tasks to existing project
               

               
               

                   
                       

                       
                       
                       
                       
                       
                       
                       
                       
               
                       
                       
                       
                       
                   
                   
               

                   
               
               
               

                   
                   
               

           
       
   



Does anyone have any ideas? Thanks a lot.
0
Awatar
Odrzuć
Awatar
Waleed Ali Mohsen
Najlepsza odpowiedź

You can use default_get method 

@api.model
def default_get
(self, fields):

result = super(YOUMODULE, self).default_get(fields)     
#SET THE DEFAULT VALUES TO FIELDS.    
result.update({'Field_name': Set Value from Context ,   'field_name2': self.env.context.get('Field_name2')})
return result
 



        

1
Awatar
Odrzuć
Awatar
Josef Schmid
Najlepsza odpowiedź

Im having the same problem, did you find any solution?

0
Awatar
Odrzuć
Awatar
Christos Tsiknis
Autor Najlepsza odpowiedź

not working unfortunately I have tried it.


- overriding the 'default_get' method of the wizard to check the dict it returns. The values are inside the res dict but they still don't appear when I load the wizard.


0
Awatar
Odrzuć
Waleed Ali Mohsen

Could you please post your default_get method code?

Christos Tsiknis
Autor

@api.model
def default_get(self, fields):

result = super(ShMessageWizard, self).default_get(fields

result.update({'type': 'study', 'scheduling_mode': self.env.context.get('scheduling_mode'), effort_driven': True})

return result

I tried it with some of the values to see if it works and it still doesn't. If you print the result dict, all the values are there.

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ść
Wizard > context and default value not working Rozwiązane
wizard context defaultvalues v17
Awatar
1
mar 24
3872
Load currnet record values when calling wizard Rozwiązane
wizard
Awatar
Awatar
1
gru 22
4192
What is wizard ? Rozwiązane
wizard
Awatar
Awatar
Awatar
3
lis 23
34173
Close wizard in onchange
wizard
Awatar
Awatar
4
lip 25
5558
IntegrityError: null value in column "res_model" violates not-null constraint Rozwiązane
wizard
Awatar
Awatar
2
gru 23
18506
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