Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • 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 Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & 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
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Invalid field error on code for stock.picking

Subscribe

Get notified when there's activity on this post

This question has been flagged
stock_picking
13458 Views
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
Discard
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
Author

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!

Sign up
Related Posts Replies Views Activity
what is the use of stock.picking, stock.picking.out and stock.picking.in Solved
stock_picking
Avatar
Avatar
1
Nov 24
20187
Batch picking lists
stock_picking
Avatar
Avatar
Avatar
3
Dec 19
7580
Can't get Backorder_id in Custom module Odoo 11
stock_picking
Avatar
Avatar
1
May 19
3907
What is Stock Picking Type and how to edit them? Solved
stock_picking
Avatar
Avatar
1
Dec 23
24829
AccessError: ('AccessError', 'No value found for stock.issue(3,).nurse_id')
stock_picking
Avatar
Avatar
2
Dec 15
4851
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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