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

field function and its store parameter in an inherited class

Subscribe

Get notified when there's activity on this post

This question has been flagged
storeinheritance7.0function_fieldsuper
6 Replies
8482 Views
Avatar
Ludovic CHEVALIER

Hi!

I want to add a calculated field in Partner class.

To do this, I've made a module with the code below.

I made it first without trying to called parent function from super python method.

But I had this error:

NameError. name '_get_invoice_partner'  is not defined

And now I have called them with super method, I have this error:

TypeError: super(type, obj): obj must be an instance or subtype of type

Is someone could help me please?

from openerp.osv import osv

from openerp.osv import orm

from openerp.osv import fields


class Partner(osv.osv):

'''Partner'''

_inherit = 'res.partner'


def _get_invoice_partner(self, cr, uid, ids, context=None):

res = super(Partner, self)._get_invoice_partner(cr, uid, ids, context=context)

return res


def _get_partner_id(self, cr, uid, ids, context=None):

res = super(Partner, self)._get_partner_id(cr, uid, ids, context=context)

return res


def _get_last_mb_product(self, cr, uid, ids, name, args, context=None):

"""Return the last membership product buy by a user"""

name=name[0]

res ={}

member_line_obj = self.pool.get('membership.membership_line')

for partner in self.browse(cr, uid, ids, context=context):

partner_id = partner.id

line_id = member_line_obj.search(cr, uid, [

('partner', '=', partner_id),

('date_cancel', '=', False)

], limit=1, order='date_from', context=context)

if line_id:

res[partner.id] = {name: product_id}

product_id = member_line_obj.read(cr, uid, line_id[0], [name], context=context)[name][0]

return res

_columns = {

'membership_id': fields.function(

_get_last_mb_product, multi='membership_id',

string='Last membership product',

type='many2one',

obj='product.product',

store = {

'account.invoice': (_get_invoice_partner, ['state'], 10),

'membership.membership_line': (_get_partner_id, ['state'], 10, )

}, help="Last membership product"),

}

Partner()


0
Avatar
Discard
Pawan

L'Heureux-Cyclage, Ludovic CHEVALIER,
Your code seems to be fine
One of the only reason seeming possible is because there is no '_get_invoice_partner' function in the main/super res.partner object, thats why it is showing error while executing that line.
Try keeping a print statement in "_get_invoice_partner" function, before calling super of it, if it executes that print statement then simply remove the super call and it should work
Hope it helps!

Ludovic CHEVALIER
Author

Hi Pawan! Thanks for your answer. "_get_invoice_partner" function existing in Partner class in pos_membership module. I put a print statement in pos_membership "_get_invoice_partner" function and in custom module. The one of pos_membership is called before the one of custom module. If I remove the super call in my custom module, I can't define a value to res and I have this logical error: NameError: global name 'res' is not defined And if I remove the return of res variable, I have this other logical error: TypeError: 'NoneType' object is not iterable :-(

Julio Serna

you can try to use another methods that no exist in core odoo, for example you can use _get_partner_id_custom and _get_invoice_partner_custom and call inside new methods custom the original methods and after modify "res"

Avatar
Ludovic CHEVALIER
Author Best Answer

Here is a code that works: http://git.heureux-cyclage.org/?p=burette/etudesetchantiersidf.git;a=blob;f=etudesetchantiersidf.py;h=4b5774ebd0d505c18dca5747449a8ad0745f7774;hb=ab989882154710b12c9ed2ed2ee74060974cd1cd

self did not return courant object (res.partner) but, 'account.invoice', 'pos.order' or 'membership.membership_line' depending which store field it is.

0
Avatar
Discard
Avatar
Krupesh Laiya
Best Answer

Had you put membership module in depends (__openerp__.py)?

if you have membership module in depends then override the method don't use super.

0
Avatar
Discard
Ludovic CHEVALIER
Author

Thanks for the answer! Here is my dependance tree for my module (">" == "depend from"): - custom module > bikecoop_l10n_fr > pos_membership > remembership > membership I thought it was ok with this configuration to override all of thoses dependances. I've added explicitly those dependances to my custom module: - membership, remembership, pos_membership If I remove "_get_invoice_partner" and "_get_partner_id" in my custom module, when I launch OpenERP, I have this strange error message: 2015-12-29 08:38:10,542 12528 CRITICAL custom_module openerp.modules.module: Couldn't load module web 2015-12-29 08:38:10,542 12528 CRITICAL custom_module openerp.modules.module: name '_get_invoice_partner' is not defined ??? If I add those two function, I have this message error again: TypeError: super(type, obj): obj must be an instance or subtype of type Any idea?

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
Python "super" - function does not work Solved
python inheritance super
Avatar
Avatar
Avatar
2
Dec 22
13659
Add/Override parent compute method (event.booth) Odoo15 Solved
inheritance super v15
Avatar
Avatar
1
Dec 22
5051
[7.0] Group by functional field (stored in db)
7.0 group_by function_field
Avatar
Avatar
1
Mar 15
4380
Calling super of super (grandparent class)
inheritance class super 12.0
Avatar
Avatar
Avatar
2
Jun 21
6810
Why does this inherited write function goes of twice? Solved
inheritance write super odoo9
Avatar
Avatar
7
Nov 23
9757
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