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
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    Others
    • 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
  • Help

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

Invalid field error on code for stock.picking

Odoberať

Get notified when there's activity on this post

This question has been flagged
stock_picking
13432 Zobrazenia
Avatar
Elevenmidia

I am making some changes on a specific module that raises an error when added to a recent addons package. The code works fine for a previous version of some addons, but when I add this module to a update list of addons I get an execution error and I get stuck on this problem.

The error is:

ValueError: Invalid field 'discharge_id' in leaf "<osv.ExtendedLeaf: ('discharge_id', 'in', [18]) on stock_picking (ctx: )>"

I believe if I put some parts of the code you can help me solve this.

The class for the main form:

class discharge_note(osv.osv):
    _name = 'discharge.note'
    _description = 'Discharge Note'
    _inherit = 'mail.thread'
    _columns = {
                'name': fields.char('Reference', size=32, states={'confirmed': [('readonly', True)], 'done': [('readonly', True)]}),
                'date': fields.datetime('Discharge Date'),
                'user_id': fields.many2one('res.users', 'Responsible', states={'confirmed': [('readonly', True)], 'done': [('readonly', True)]}),
                'description': fields.text('Description',),
                'company_id': fields.many2one('res.company', 'Company', required=True),
                'line_ids' : fields.one2many('discharge.note.line', 'discharge_id', 'Products to Discharge'),
                'warehouse_id': fields.many2one('stock.warehouse', 'Warehouse', states={'confirmed': [('readonly', True)], 'done': [('readonly', True)]}),
                'location_id': fields.related('warehouse_id', 'disc_local_id', type='many2one', relation='stock.location', string='Warehouse Location', store=True, readonly=True),
                'state': fields.selection([('draft','New'),('confirmed','Waiting Availability'),('done','Delivery Done')], 'Status', track_visibility='onchange', required=True),
                'ship_id': fields.many2one('ship', 'Ship'),
                'picking_in_ids' : fields.one2many('stock.picking.in','discharge_id','Delivery Orders',),
                'notes' : fields.char('Notes', size=255)
    }

The class for the lines on document:

class discharge_note_line(osv.osv):
    _name = "discharge.note.line"
    _description="Stock Discharge Line"
    _rec_name = 'product_id'

    _columns = {
        'product_id': fields.many2one('product.product', 'Product' ),
        'product_uom_id': fields.many2one('product.uom', 'Product Unit of Measure'),
        'product_qty': fields.float('Quantity', digits_compute=dp.get_precision('Product Unit of Measure')),
        'discharge_id' : fields.many2one('discharge.note', 'Discharge Note', ondelete='cascade'),
        'company_id': fields.related('discharge_id', 'company_id', type='many2one', relation='res.company', string='Company', store=True, readonly=True),
    }

The stock.picking and stock_picking_in classes:

class stock_picking(osv.osv):
    _name = "stock.picking"
    _inherit = "stock.picking"

    def do_partial(self, cr, uid, ids, partial_data, context=None):
        picking_in_obj = self.pool.get('stock.picking.in')
        res = super(stock_picking, self).do_partial(cr, uid, ids, partial_data, context=context)
        note_ids = set()
        ids = picking_in_obj.search(cr, uid, [('type', '=', 'in'), ('id', 'in', ids)])
        for picking in picking_in_obj.browse(cr, uid, ids):
            if picking.discharge_note_id:
                note_ids.add(picking.discharge_note_id.id)
        if note_ids:
            self.pool.get('discharge.note').write(cr, uid, note_ids, {'state': 'done'}, context)
        return res


class stock_picking_in(osv.osv):
    _name = "stock.picking.in"
    _inherit = "stock.picking.in"

    _columns = {
                'discharge_note_id' : fields.many2one('discharge.note', 'Discharge Note'),
                }

I believe all code runs from here (method set_status_done):

   def set_status_done(self, cr, uid, ids, context=None):
        picking_in_obj = self.pool.get('stock.picking.in')
        partial_picking_obj = self.pool.get('stock.partial.picking')
        for note in self.browse(cr, uid, ids, context):
            picking_in_ids = [picking.id for picking in note.picking_in_ids]
            picking_in_obj.draft_validate(cr, uid, picking_in_ids, context=context)
            # draft_validate sets the context for creating a partial picking
            partial_fields = ('picking_id', 'move_ids', 'date')
            partial_values = partial_picking_obj.default_get(cr, uid, partial_fields, context)
            partial_values['move_ids'] = [(0, 0, v) for v in partial_values['move_ids']]
            partial_id = partial_picking_obj.create(cr, uid, partial_values, context)
            partial_picking_obj.do_partial(cr, uid, [partial_id], context)
        return self.write(cr, uid, ids, {'state': 'done'})

Anyone can help me please?

Thank you very much

0
Avatar
Zrušiť
Nehal

Have you put domain for discharge_id in xml or somewhere? This might be due to wrong domain of discharge_id.Have you passed context/domain in action window?

Elevenmidia
Autor

Thank you Nehal. I will check that and than post the results.

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
what is the use of stock.picking, stock.picking.out and stock.picking.in Solved
stock_picking
Avatar
Avatar
1
nov 24
20159
Batch picking lists
stock_picking
Avatar
Avatar
Avatar
3
dec 19
7545
Can't get Backorder_id in Custom module Odoo 11
stock_picking
Avatar
Avatar
1
máj 19
3884
What is Stock Picking Type and how to edit them? Solved
stock_picking
Avatar
Avatar
1
dec 23
24805
AccessError: ('AccessError', 'No value found for stock.issue(3,).nurse_id')
stock_picking
Avatar
Avatar
2
dec 15
4844
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