コンテンツへスキップ
Odoo メニュー
  • サインイン
  • 無料で15日試す
  • アプリ
    財務
    • 会計
    • 請求
    • 経費
    • スプレッドシート(BI)
    • ドキュメント管理
    • 署名
    販売
    • CRM
    • 販売
    • POS店舗
    • POSレストラン
    • サブスクリプション
    • レンタル
    ウェブサイト
    • ウェブサイトビルダー
    • eコマース
    • ブログ
    • フォーラム
    • ライブチャット
    • eラーニング
    サプライチェーン
    • 在庫
    • 製造
    • 製品ライフサイクル管理 (PLM)
    • 購買
    • 整備
    • 品質
    人事業務
    • 従業員管理
    • 採用
    • 休暇管理
    • 人事評価
    • リファラル
    • フリート
    マーケティング
    • ソーシャルマーケティング
    • メールマーケティング
    • SMSマーケティング
    • イベント
    • マーケティングオートメーション
    • アンケート調査
    サービス
    • プロジェクト管理
    • タイムシート
    • フィールドサービス
    • ヘルプデスク
    • 計画
    • アポイントメント
    生産性向上ツール
    • ディスカッション
    • 承認
    • IoT
    • VoIP
    • ナレッジ
    • WhatsApp
    サードパーティアプリ Odooスタジオ Odooクラウドプラットホーム
  • インダストリー(業種別ソリューション)
    小売
    • 書店
    • アパレルショップ
    • 家具専門店
    • 食料品店
    • 金物店
    • 玩具店
    飲食・ホスピタリティ業界
    • バー・パブ
    • レストラン
    • ファストフード
    • ゲストハウス
    • 飲料販売代理店
    • ホテル
    不動産
    • 不動産会社
    • 建築事務所
    • 建設
    • 不動産管理
    • 造園
    • 住宅所有者組合
    コンサルティング
    • 会計事務所
    • Odooパートナー
    • マーケティングエージェンシー
    • 法律事務所
    • 人材派遣
    • 監査・認証
    製造
    • テキスタイル
    • 金属
    • 家具
    • 飲食
    • 醸造所
    • コーポレートギフト
    ヘルス & フィットネス
    • スポーツクラブ
    • 眼鏡店
    • フィットネスセンター
    • ウェルネス専門家
    • 薬局
    • ヘアサロン
    業種
    • 便利屋
    • IT ハードウェア・サポート
    • 太陽エネルギーシステム
    • 靴メーカー
    • クリーニングサービス
    • 空調設備サービス
    その他
    • 非営利団体
    • 環境機関
    • ビルボードレンタル
    • 写真
    • 自転車リース
    • ソフトウェアリセラー
    すべての業種を見る
  • コミュニティ
    学ぶ
    • チュートリアル
    • ドキュメンテーション
    • 認定
    • トレーニング
    • ブログ
    • ポッドキャスト
    教育サポート
    • 教育プログラム
    • Scale Up! ビジネスゲーム
    • Odooオフィス訪問
    ソフトを入手
    • ダウンロード
    • エディションを比較
    • リリース
    コラボレーション
    • Github
    • フォーラム
    • イベント
    • 翻訳
    • パートナーになる
    • パートナー様向けサービス
    • 会計事務所を登録
    サービス利用
    • パートナー一覧
    • 会計事務所一覧
    • 今すぐ相談する
    • 導入支援サービス
    • お客様一覧
    • サポート
    • アップグレード
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    製品デモを利用する
  • 料金
  • ヘルプ

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

  • CRM
  • e-Commerce
  • 会計
  • 在庫
  • PoS
  • プロジェクト
  • MRP
All apps
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
コミュニティで交流するには登録する必要があります。
全てのポスト 人々 バッジ
タグ (全て表示)
odoo accounting v14 pos v15
このフォーラムについて
ヘルプ

How to add a simple field to partner?

購読

この投稿に活動があった際に通知を受け取ります

この質問にフラグが付けられました
inheritance
3 返信
15711 ビュー
アバター
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
アバター
破棄
アバター
Carlos Yanez
最善の回答

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
アバター
破棄
thenon
著作者

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

アバター
patrick
最善の回答

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
アバター
破棄
thenon
著作者

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
著作者

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

アバター
AJ Schrafel Paper Corp
最善の回答

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

you are presently using mycol in your XML.

0
アバター
破棄
thenon
著作者

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

ディスカッションを楽しんでいますか?読むだけでなく、参加しましょう!

今すぐアカウントを作成して、限定機能を利用したり、素晴らしいコミュニティと交流しましょう!

登録
関連投稿 返信 ビュー 活動
Can't inherit base.view_partner_form of res.partner
inheritance
アバター
アバター
アバター
アバター
アバター
4
2月 25
4092
Include in inherit from JS class
inheritance
アバター
アバター
1
8月 24
2942
How to Override a method in parent class in JS 解決済
inheritance
アバター
アバター
2
11月 24
4371
Do I have to create a new module to change the standard form view?
inheritance
アバター
アバター
2
2月 23
3159
inherit problem: "cannot be located in parent view " for a <p /> inherited for sale_report_templates.line line 169
inheritance
アバター
アバター
1
12月 22
1371
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • Github
  • Runbot
  • 翻訳
サービス
  • Odoo.shホスティング
  • サポート
  • アップグレード
  • カスタム開発
  • 教育プログラム
  • 会計事務所一覧
  • パートナー一覧
  • パートナーになる
企業情報
  • 会社概要
  • ブランドアセット
  • お問い合わせ
  • 採用情報
  • イベント
  • ポッドキャスト
  • ブログ
  • お客様一覧
  • リーガル情報 • プライバシーポリシー
  • セキュリティ
الْعَرَبيّة 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(オドゥー)は、CRM、eコマース、会計、在庫管理、POS、プロジェクト管理など、企業のさまざまな業務を一つのシステムで管理できる、ベルギー発のオープンソースのERPソフトウェアです。

高機能で使いやすく、完全に統合されたERPとして、ユニークな価値を提供しています。

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