コンテンツへスキップ
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
このフォーラムについて
ヘルプ

[V8.0] How to inherit calendar.event

購読

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

この質問にフラグが付けられました
2 返信
7178 ビュー
アバター
Thomas Fossoul

Hi,

I'm currently trying to make a simple inherit of the table "calendar.event". 

It work fine until i try to create a record in my new table.

Here is my code and the error:

from openerp.osv import osv, fields
from openerp import models, api


class re_calendar_event(osv.osv):
    _name = 're.calendar.event'
    _inherit = 'calendar.event'

Note the form view is the exact copy of the calendar.event form :

<?xml version="1.0"?>
<openerp>
    <data>
    <record model="ir.ui.view" id="re_view_calendar_event_form">
        <field name="name">Calendar - Event Form</field>
        <field name="model">re.calendar.event</field>
        <field name="priority" eval="1"/>
        <field name="arch" type="xml">
            <form string="Meetings">
                <sheet>
                    <field name="state" invisible="1"/>
                    <field name="is_attendee" invisible="1"/>
                    <field name="attendee_status" invisible="1"/>
                    <div class="oe_title">
                        <div class="oe_edit_only">
                            <label for="name"/>
                        </div>
                        <h1>
                            <field name="name"/>
                        </h1>
                        <label for="partner_ids" string="Attendees" class="oe_edit_only"/>
                        <h2>
                            <field name="partner_ids" widget="many2manyattendee"
                                context="{'force_email':True}"
                                on_change="onchange_partner_ids(partner_ids)"
                                class="oe_inline"/>
                        </h2>
                    </div>
                    <notebook>
                        <page string="Meeting Details">
                            <group attrs="{'invisible': [('recurrency','==',False)]}" class="oe_edit_only ">
                                <p class='alert alert-warning'> This event is linked to a recurrence...<br/>
                                    <button type="object" name="open_after_detach_event"  string="Update only this instance"  help="Click here to update only this instance and not all recurrences. " class="oe_link"/>
                                </p>
                            </group>
                            <group>
                                <group>
                                    <field name="start" attrs="{'invisible': True}"/>
                                    <field name="stop" attrs="{'invisible': True}"/>

                                    <field name="start_date" string="Starting at" on_change="onchange_dates('start', start_date, stop_date, allday, True)" attrs="{'invisible': [('allday','=',False)]}"/>
                                    <field name="stop_date" string="Ending at" on_change="onchange_dates('stop', start_date, stop_date, allday, True)" attrs="{'invisible': [('allday','=',False)]}"/>

                                    <field name="start_datetime" string="Starting at" on_change="onchange_dates('start', start_datetime, stop_datetime, allday, False)" attrs="{'invisible': [('allday','=',True)]}"/>
                                    <field name="stop_datetime" string="Ending at" on_change="onchange_dates('stop', start_datetime, stop_datetime, allday, False)" attrs="{'invisible': [('allday','=',True)]}"/>
                                    <label for="allday"/>
                                    <div>
                                        <field name="allday"  class="oe_inline" on_change="onchange_allday(start, stop, start_date, stop_date, start_datetime, stop_datetime, allday)"/>
                                    </div>
                                    <field name="duration" widget="float_time" class="oe_inline" attrs="{ 'invisible': True }"/>
                                </group>
                                <group>
                                    <field name="categ_ids" widget="many2many_tags" />
                                    <field name="alarm_ids" widget="many2many_tags" />
                                    <field name="location" />
                                </group>

                            </group>
                            <label for="description"/>
                            <field name="description"/>
                        </page>
                        <page string="Options">
                            <group>
                                <group col="1">
                                    <group>
                                        <field name="recurrency"/>
                                    </group>
                                    <group attrs="{'invisible': [('recurrency','=',False)]}">
                                        <label for="interval"/>
                                        <div>
                                            <field name="interval" attrs="{'required': [('recurrency','==',True)]}" class="oe_inline"/>
                                            <field name="rrule_type" attrs="{'required': [('recurrency','==',True)]}" class="oe_inline"/>
                                        </div>
                                        <label string="Until" for="end_type"/>
                                        <div>
                                            <field name="end_type" attrs="{'required': [('recurrency','==',True)]}" class="oe_inline"/>
                                            <field name="count" attrs="{'invisible': [('end_type', '!=', 'count')], 'required': [('recurrency','==',True)]}" class="oe_inline"/>
                                            <field name="final_date" attrs="{'invisible': [('end_type', '!=', 'end_date')], 'required': [('end_type', '=', 'end_date')]}" class="oe_inline"/>
                                        </div>
                                        <label string="Select Weekdays" attrs="{'invisible' :[('rrule_type','not in', ['weekly'])]}"/>
                                        <group col="2" colspan="1" name="weekdays" attrs="{'invisible' :[('rrule_type','not in', ['weekly'])]}" >
                                            <field name="mo" />
                                            <field name="tu" />
                                            <field name="we" />
                                            <field name="th" />
                                            <field name="fr" />
                                            <field name="sa" />
                                            <field name="su" />
                                        </group>
    
                                        <label string="Day of Month"
                                            attrs="{'invisible': [('rrule_type','!=','monthly')]}"/>
    
                                        <div attrs="{'invisible': [('rrule_type','!=','monthly')]}">
                                            <field name="month_by"/>
                                            <field name="day"
                                                attrs="{'required': [('month_by','=','date'), ('rrule_type','=','monthly')],
                                                    'invisible': [('month_by','=','day')]}"/>
                                            <field name="byday" string="The"
                                                attrs="{'required': [('month_by','=','day'), ('rrule_type','=','monthly')], 'invisible': [('month_by','=','date')]}"/>
                                            <field name="week_list" nolabel="1"
                                                attrs="{'required': [('month_by','=','day'), ('rrule_type','=','monthly')], 'invisible': [('month_by','=','date')]}"/>
                                        </div>
                                    </group>
                                </group>
                                <group>
                                    <field name="class"/>
                                    <field name="show_as"/>
                                    <field name="rrule" invisible="1" readonly="0" />                                    
                                    <field name="recurrent_id" invisible="1" />
                                </group>
                            </group>
                        </page>
                        
                        <page string="Invitations" groups="base.group_no_one">
                            <button name="do_sendmail" type="object" string="Send mail" icon="terp-mail-message-new" class="oe_link"/>
                            <field name="attendee_ids" widget="one2many" >
                                <tree string="Invitation details" editable="top" create="false" delete="false">
                                    <field name="partner_id" />
                                    <field name="state" />
                                    <field name="email" widget="email"/>
                                     
                                    <button name="do_tentative" states="needsAction,declined,accepted" string="Uncertain" type="object" icon="terp-crm" />
                                    <button name="do_accept" string="Accept" states="needsAction,tentative,declined" type="object" icon="gtk-apply"/>
                                    <button name="do_decline" string="Decline" states="needsAction,tentative,accepted" type="object" icon="gtk-cancel"/>
                                </tree>
                            </field>
                        </page>
                        <page string="Misc" groups="base.group_no_one">
                            <label string="Owner"/>
                            <field name="user_id" />
                            
                        </page>

                    </notebook>
                </sheet>
                <div class="oe_chatter">
                    <field name="message_follower_ids" widget="mail_followers"/>
                    <field name="message_ids" widget="mail_thread" />
                </div>
            </form>
        </field>
    </record>
</data>
</openerp>

The error I got : 

Traceback (most recent call last):
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 508, in _handle_exception
    return super(JsonRequest, self)._handle_exception(exception)
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 526, in dispatch
    result = self._call_function(**self.params)
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 285, in _call_function
    return checked_call(self.db, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/service/model.py", line 113, in wrapper
    return f(dbname, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 282, in checked_call
    return self.endpoint(*a, **kw)
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 742, in __call__
    return self.method(*args, **kw)
  File "/home/odoo/openerp-8.0-1125/openerp/http.py", line 378, in response_wrap
    response = f(*args, **kw)
  File "/home/odoo/openerp-8.0/openerp/addons/web/controllers/main.py", line 948, in call_kw
    return self._call_kw(model, method, args, kwargs)
  File "/home/odoo/openerp-8.0/openerp/addons/web/controllers/main.py", line 940, in _call_kw
    return getattr(request.registry.get(model), method)(request.cr, request.uid, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/home/odoo/openerp-8.0/openerp/addons/calendar/calendar.py", line 1595, in create
    res = super(calendar_event, self).create(cr, uid, vals, context=context)
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/home/odoo/openerp-8.0/openerp/addons/mail/mail_thread.py", line 377, in create
    thread_id = super(mail_thread, self).create(cr, uid, values, context=context)
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 237, in wrapper
    return old_api(self, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 332, in old_api
    result = method(recs, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/models.py", line 3994, in create
    record = self.browse(self._create(old_vals))
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 235, in wrapper
    return new_api(self, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/api.py", line 464, in new_api
    result = method(self._model, cr, uid, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/models.py", line 4179, in _create
    result += self._columns[field].set(cr, self, id_new, field, vals[field], user, rel_context) or []
  File "/home/odoo/openerp-8.0-1125/openerp/osv/fields.py", line 978, in set
    cr.execute('delete from '+rel+' where '+id1+'=%s AND '+id2+' IN (SELECT '+rel+'.'+id2+' FROM '+rel+', '+','.join(tables)+' WHERE '+rel+'.'+id1+'=%s AND '+rel+'.'+id2+' = '+obj._table+'.id '+ d1 +')', [id, id]+d2)
  File "/home/odoo/openerp-8.0-1125/openerp/sql_db.py", line 158, in wrapper
    return f(self, *args, **kwargs)
  File "/home/odoo/openerp-8.0-1125/openerp/sql_db.py", line 234, in execute
    res = self._obj.execute(query, params)
ProgrammingError: column "re_calendar_event_id" does not exist
LINE 1: delete from calendar_event_res_partner_rel where re_calendar...

 

Thanks in advance

 

 

0
アバター
破棄
アバター
sameer alhwety
最善の回答

The problem is that you are trying to add non exist column/s to view 
Make sure that you add the column re_calendar_event_id before install your module

1
アバター
破棄
アバター
Thomas Fossoul
著作者 最善の回答

no. i don't add column. Here is the content on my python file : 

from openerp.osv import osv, fields
from openerp import models, api


class re_calendar_event(osv.osv):
    _name = 're.calendar.event'
    _inherit = 'calendar.event'

There is no more line.

The re_calendar_event_id come from the many2many table calendar_event_res_partner_rel. I don't know why he try to acces to this unknow/unaddedbymy field

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

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

登録
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • 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