Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to add a simple field to partner?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
inheritance
3 Odpowiedzi
15718 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Carlos Yanez
Najlepsza odpowiedź

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
Awatar
Odrzuć
thenon
Autor

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! :-)

Awatar
patrick
Najlepsza odpowiedź

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
Awatar
Odrzuć
thenon
Autor

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
Autor

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

Awatar
AJ Schrafel Paper Corp
Najlepsza odpowiedź

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

you are presently using mycol in your XML.

0
Awatar
Odrzuć
thenon
Autor

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..

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Can't inherit base.view_partner_form of res.partner
inheritance
Awatar
Awatar
Awatar
Awatar
Awatar
4
lut 25
4102
Include in inherit from JS class
inheritance
Awatar
Awatar
1
sie 24
2945
How to Override a method in parent class in JS Rozwiązane
inheritance
Awatar
Awatar
2
lis 24
4377
Do I have to create a new module to change the standard form view?
inheritance
Awatar
Awatar
2
lut 23
3163
inherit problem: "cannot be located in parent view " for a <p /> inherited for sale_report_templates.line line 169
inheritance
Awatar
Awatar
1
gru 22
1371
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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