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

How to add a simple field to partner?

Subscribe

Get notified when there's activity on this post

This question has been flagged
inheritance
3 Replies
15719 Views
Avatar
thenon

I've read the available documentation (particularly the travel example), and googled around, searched this forum, etc. Cannot find a bullet proof example of how to simply add a single field to partner and have it displayed.

Here's what I have:

__openerp__.py

{
    "name" : "NT3",
    "version" : "1.7",
    "author" : "Foo",
    "category" : "Generic Modules/Others",
    "website" : "http://www.example.com",
    "description": "Foo",
    "depends" : ["base"],
    "init_xml" : [],
    "update_xml" : ["nt2_view.xml"],
    "active": True,
    "installable": True
}

__init__.py:

import nt3

nt3.py:

from osv import osv, fields
from tools.translate import _

class res_partner(osv.osv):
    _inherit = 'res.partner'

    _columns = {
        'mycol': fields.char('MyCol', size=16, help='Foo'),
        }

res_partner()

nt2_view.xml:

<?xml version="1.0" encoding="utf-8"?>
<openerp>
     <data>

        <record id="view_partner_form" model="ir.ui.view">
            <field name="name">res.partner.form</field>
            <field name="model">res.partner</field>
            <field name="type">form</field>
            <field name="inherit_id" ref="base.view_partner_form" />
            <field name="arch" type="xml">
                <field name="email" position="after">
                    <field name="mycol" />
                </field>
            </field>
        </record>   

    </data>
</openerp>

I can see mycol gets added to the database, but get this error when accessing the view:

2013-04-08 13:33:13,163 5956 ERROR dev8 openerp.osv.orm: **Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':
 * res.partner.form**

Either you wrongly customized this view, or some modules bringing those views are not compatible with your current data model
2013-04-08 13:33:13,163 5956 ERROR dev8 openerp.netsvc: View error
Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':
 * res.partner.form

Either you wrongly customized this view, or some modules bringing those views are not compatible with your current data model
Traceback (most recent call last):
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\netsvc.py", line 293, in dispatch_rpc
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\service\web_services.py", line 626, in dispatch
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\osv\osv.py", line 188, in execute_kw
  File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server\.\openerp\osv\osv.py", line 144, in wrapper
except_osv: ('View error', u"Can't find field 'mycol' in the following view parts composing the view of object model 'res.partner':\n * res.partner.form\n\nEither you wrongly customized this view, or some modules bringing those views are not compatible with your current data model")
2013-04-08 13:33:13,173 5956 INFO dev8 werkzeug: 127.0.0.1 - - [08/Apr/2013 13:33:13] "POST /web/dataset/call_kw/res.partner:fields_view_get HTTP/1.1" 200 -

What have I done wrong?

apologies for formatting here - not easy to do on this forum.

2
Avatar
Discard
Avatar
Carlos Yanez
Best Answer

Hello!

I have tested and run your code. It works properly. Did you try to un-install your module and install it again?

Cheers, CarlosY

1
Avatar
Discard
thenon
Author

Restarting the server (as opposed to just deleting the pyc files, or upgrading the module in place) worked.

Carlos Yanez

I forgot that one, I do it all the time! :-)

Avatar
patrick
Best Answer

I do not know if it is allowed to give your own view the same ID as the view you are trying to inherit. Try changing:

record id="view_partner_form" model="ir.ui.view"

to

record id="my_view_partner_form" model="ir.ui.view"

0
Avatar
Discard
thenon
Author

Made no difference unfortunately. I copied that code from an app that was published on app.openerp.com, so seems correct.

Ray Carnes

OpenERP will pre-pend the name of your module to every record id so you don't need to worry about it being unique.

AJ Schrafel Paper Corp

did you reload your module or restart your server so the new XML is loaded?

Ray Carnes

XML changes will be seen by OpenERP any time the module is updated - Python changes will not. The python code that OpenERP uses is loaded from disk once only - that happens when the server starts. Any changes made to python files that the server has already seen (loaded) remain invisible until the server is re-started (and they are re-loaded). If you add a new python file - such as when you create a brand new module - then the server sees it (loads it) when you install that module, but any subsequent changes are invisible (it already has it loaded). Always restart after Python changes.

thenon
Author

Thanks Ray and Patently - that was exactly it - I had thought the compilation was dynamic after clicking "Upgrade" on the module.

Avatar
AJ Schrafel Paper Corp
Best Answer

The field in your XML file needs the same capitalization as your python file -> MyCol

you are presently using mycol in your XML.

0
Avatar
Discard
thenon
Author

Would be surprised,since MyCol is the db column name, not the model name? Anyway, tried that, and got this: File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server.\openerp\osv\orm.py", line 2260, in fields_view_get File "C:\Program Files (x86)\OpenERP 7.0-20130407-232401\Server\server.\openerp\osv\orm.py", line 1937, in __view_look_dom_arch except_orm: ('View error', u"Can't find field 'MyCol' in the following view parts composing the view of object model 'res.partner':\n * res.partner.form\n\nEither you wrongly customized this view, or some modules bringing those views

Ray Carnes

mycol is the field name, MyCol is the label of that field..

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
Can't inherit base.view_partner_form of res.partner
inheritance
Avatar
Avatar
Avatar
Avatar
Avatar
4
Feb 25
4103
Include in inherit from JS class
inheritance
Avatar
Avatar
1
Aug 24
2945
How to Override a method in parent class in JS Solved
inheritance
Avatar
Avatar
2
Nov 24
4377
Do I have to create a new module to change the standard form view?
inheritance
Avatar
Avatar
2
Feb 23
3163
inherit problem: "cannot be located in parent view " for a <p /> inherited for sale_report_templates.line line 169
inheritance
Avatar
Avatar
1
Dec 22
1371
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