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

many2many in custom wizard

Odoberať

Get notified when there's activity on this post

This question has been flagged
wizardmany2many
7949 Zobrazenia
Avatar
Laurent33

Hi,

In my custom wizard with different steps, I want to populate a m2m field defined on second step by selecting records with choice of first step... How can I do that in python code of action_choose ?

class account_change_lotnbr_wizard(osv.osv_memory):
_name='iota.change.lotnbr.wizard'

def act_cancel(self, cr, uid, ids, context=None):
    #self.unlink(cr, uid, ids, context)
    return {'type':'ir.actions.act_window_close' }

def act_destroy(self, *args):
    return {'type':'ir.actions.act_window_close' }

def action_choose(self,cr,uid,ids,context=None):
    if not context:
        context={}

    this = self.browse(cr, uid, ids)[0]
    wizard=self.browse(cr,uid,ids[0],context=context)

    # Contrôle pour recherche
    if not wizard.date_invoice:
        raise osv.except_osv(_('Error !'), _('No date !'))
    if not wizard.product_id:
        raise osv.except_osv(_('Error !'), _('No product !'))
    if not wizard.new_lot_nbr:
        raise osv.except_osv(_('Error !'), _('No new lot number !'))

    # Définition des objets
    invoice_obj = self.pool.get('account.invoice')

    # Recherche des factures à réaffecter
    inv_select_ids = []
    inv_ids = invoice_obj.search(cr, uid, [('date_invoice', '=', wizard.date_invoice), ('type', '=', 'out_invoice')])
    invs = invoice_obj.browse(cr, uid, inv_ids, context)
    for inv in invs:
        inv_select = False
        for line in inv.invoice_line:
            if line.product_id.id == wizard.product_id.id:
                inv_select = True
                break
        if inv_select:
            inv_select_ids.append(inv.id)

    # Mise à jour du wizard pour passer à l'étape suivante
    self.write(cr, uid, ids, {'state':'get'}, {'invoice_ids':inv_select_ids})

    return {
        'type': 'ir.actions.act_window',
        'res_model': 'iota.change.lotnbr.wizard',
        'view_mode': 'form',
        'view_type': 'form',
        'res_id': this.id,
        'views': [(False, 'form')],
        'target': 'new',
        }

def action_confirm(self,cr,uid,ids,context=None):
    if not context:
        context={}

    #this = self.browse(cr, uid, ids)[0]
    wizard=self.browse(cr,uid,ids[0],context=context)

    # Contrôle pour recherche
    if not wizard.invoice_ids:
        raise osv.except_osv(_('Error !'), _('No invoice !'))

    return {'type':'ir.actions.act_window_close' }

_columns = {
           'date_invoice': fields.date('Invoice Date'),
           'product_id': fields.many2one('product.product', 'Product'),
           'new_lot_nbr': fields.char('Lot number', size=15),
           'invoice_ids':fields.many2many('account.invoice','wiz_change_lotnbr','wiz_id','invoice_id','Invoices'),
           'state': fields.selection( ( ('choose','choose'),
                                        ('get','get'),
                                   ) ),
           }

_defaults = {
    'date_invoice': fields.date.context_today,
    'state': lambda *a: 'choose',
}

account_change_lotnbr_wizard()

E.g : In the first step, I give a date and product_id when I go to step 2, i want to obtain a list of invoices with a date and which have one line of product in invoice_ids field

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 transfer id created wizard into main form?
wizard many2many
Avatar
Avatar
1
júl 18
3955
Many2many field in wizard is showing empty (v9) ?
wizard many2many
Avatar
0
jan 16
4101
many2many automaticly filled
wizard many2many
Avatar
Avatar
1
jún 15
14133
Is it possible to use many2many relation for other many2many field in wizard
wizard many2many
Avatar
Avatar
1
mar 15
5325
Upon pressing save in a wizard, populate a many2many field
wizard many2many v15
Avatar
0
júl 22
2933
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