Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

How to retain back the existing One2many fields data whenever the button is clicked in the wizard

Odoberať

Get notified when there's activity on this post

This question has been flagged
wizarddefaultone2many
4145 Zobrazenia
Avatar
Karan Gupta

I have a situation that whenever I tried to open the wizard i want my data back in the one2many fields since for the parent is working fine it is loading the data by using _default as a prefix over every fields but what if i want to load the data in the grid(One2many) also

# Here is the Main class

class batch_wise_allocation(models.TransientModel):
    _name = 'batch.wise_allocation'
    _table = 'batch_wise_allocation'
    _description = 'Batch Wise Allocation'
  
    product_id= fields.Many2one('product.product', string="Product")
    dispatch_line_id = fields.Integer(string= 'Dispatch Line ID')
    main_id=  fields.One2many('batch.wise_allocation_line','batch_allocation_line_id',string= 'Allocation Line ID')

#Here is the child class

class batch_wise_allocation_line(models.TransientModel):
    _name = 'batch.wise_allocation_line'
    _table = 'batch_wise_allocation_line'
    _description = 'Batch Wise Allocation Line'
  
    batch_allocation_line_id= fields.Many2one('batch.wise_allocation', string="Batch Allocation ID")
    batch_id= fields.Many2one('pra.batch_master',string= 'Batch No')
    batch_name=fields.Char('Batch Name')
    batch_size= fields.Float('Batch Size')
    batch_qty=fields.Float('Batch Qty')
    dispatch_qty= fields.Float('Dispatch Qty')
    packing_details= fields.Char('Packing Details')


#########

And this is the class from where I want to load the batch_list and the batch_wise_dispatch automatically if it is entered before while opening the wizard

class DispatchLine(models.Model):
    _name = 'pra.dispatch_line'
    _table = 'pra_dispatch_line'
    _description = 'Sales Dispatch Line'
  
    def action_dispatch_qty_transfer(self, cr, uid, ids, context=None):
        pra_dispatch_line = self.browse(cr, uid, ids[0], context=context)
        return {
            'name': ('Batch Allocation'),
            'view_type':'form',
            'view_mode':'form',
            'res_model': 'batch.wise_allocation',
            'view_id':False,
            'type':'ir.actions.act_window',
            'target':'new',
            'context': {'default_dispatch_line_id':pra_dispatch_line.id,
                        'default_product_id':pra_dispatch_line.product_id.id,

                         #How can I add here the default for the One2many fields------????
                        },
            }
  
  
    batch_list = fields.Text(string= 'Batches',readonly=1)
    batch_wise_dispatch = fields.Text(string= 'Batch Wise Dispatch',readonly=1)

#############################################
'''Very thanks to Dan Čermák for the last 2 answer it was really very wonderful'''

0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
How to open wizard from "Add a line" link of One2many field?
wizard one2many
Avatar
Avatar
1
jún 24
443
One2many through wizard, (without errors, but no add to the record)
wizard one2many
Avatar
Avatar
1
feb 16
5768
One2many field on wizard opens by itself
wizard one2many print
Avatar
Avatar
1
sep 23
2893
Insert One2many in wizard, TransientModel Solved
wizard one2many transientmodel
Avatar
Avatar
Avatar
2
sep 24
14223
Add records in existing one2many field using wizard Solved
wizard one2many records
Avatar
Avatar
Avatar
2
okt 22
22672
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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