コンテンツへスキップ
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 do you define specific (not default) views for each view mode type (form, tree, etc.) in act_window xml?

購読

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

この質問にフラグが付けられました
10 返信
63941 ビュー
アバター
John Baldwin

I can't understand how to define specific views for each view mode... This is what I want to do:

in my act_window record I have "<field name="view_mode">tree,form</field>" defining that tree and form views are needed. I want to use "my_custom_tree_view" and "my_custom_form_view" for those types respectively. I've tried using a filed called "views" with (name, type) pairs. I've tried using "view_ids" the same way. I've tried using multiple "view_id" with ref's and that doesn't work.... Can someone please show me an example of assigning custom views to multiple view modes please?

<record model="ir.actions.act_window" id="test_action"> 
<field name="name">A Test Action</field> 
<field name="res_model">some.model</field>
<field name="view_mode">tree, form</field>
<!-- a field to describe my specific tree view and form view -->          <<<<<---- HELP ME HERE! 
</record>

1
アバター
破棄
アバター
Temur
最善の回答

You can specify view to use as follows:

<field name="view_id" ref="the_xml_id_of_view"/> -just xml id if the view is in the same module

<field name="view_id" ref="module_name.the_xml_id_of_view"/> -external xml id if the view is in another model (pay attention to the dot notation)

You can also specify custom search view:

<field name="search_view_id" ref="xml_id_or_external_xml_id_as_needed"/>

Also you can manipulate default views using sequence="N" property, by setting lower N than it is in the active default view.

4
アバター
破棄
Ankit H Gandhi(AHG)

Big Thanks @ Temur

+1

アバター
Reem Elobeid
最善の回答

This worked for me:

Add view_ids to your action, as follows

<field name="view_ids" eval="[(5, 0, 0),
(0, 0, {'view_mode': 'tree', 'view_id': ref('xml.id.of.tree.view')}),
(0, 0, {'view_mode': 'form', 'view_id': ref('xml.id.of.form.view')})]"/>
5
アバター
破棄
アバター
james_p
最善の回答

Please check this code from product module. This should answer the question.


<record id="product_variant_action" model="ir.actions.act_window">            
    <field name="name">Product Variants</field>
    <field name="type">ir.actions.act_window</field>
    <field name="res_model">product.product</field>
    <field name="context">
        {'search_default_product_tmpl_id': [active_id],
        'default_product_tmpl_id': active_id}
    </field>
    <field name="search_view_id" ref="product_search_form_view"/>
    <field name="view_ids" eval="[(5, 0, 0),
        (0, 0, {'view_mode': 'tree'}),
        (0, 0, {'view_mode': 'form', 'view_id': ref('product_variant_easy_edit_view')}),
        (0, 0, {'view_mode': 'kanban'})]"/>
    <field name="help" type="html">
        <p class="oe_view_nocontent_create">
            Click to define a new product.
        </p>
    </field>
</record>
2
アバター
破棄
Sanjay Jamod (sja)

Thanks.. it's works for me

アバター
Vladimir
最善の回答

You can in the action specify search_view_id, form_view_id and so on

<record id="action_res_usuarios" model="ir.actions.act_window">
            <field name="name">Usuarios</field>
            <field name="type">ir.actions.act_window</field>
            <field name="res_model">res.users</field>
            <field name="view_type">form</field>
            <field name="view_id" ref="view_usuarios_tree"/>
            <field name="search_view_id" ref="view_usuarios_search"/>
            <field name="form_view_id" ref="view_users_simple_form"/>
            <field name="help">Create and manage users that will connect to the system. Users can be deactivated should
                there be a period of time during which they will/should not connect to the system. You can assign them
                groups in order to give them specific access to the applications they need to use in the system.
    </field>
        </record>

1
アバター
破棄
アバター
Zbik
最善の回答

The easiest way is if you define additional ir.ui.view, separate for tree and form, like this (in effect three records):

     <record model="ir.actions.act_window" id="test_action"> 
       <field name="name">A Test Action</field> 
       <field name="res_model">some.model</field>
       <field name="view_type">form</field>
       <field name="view_mode">tree, form</field>
    </record>

    <record model="ir.ui.view" id="some_name_form">
      <field name="name">some_name_form</field>
      <field name="model">some.model</field>
      <field name="arch" type="xml">
        <form>
            <field name="name"/>
        </form>
      </field>
    </record>

    <record model="ir.ui.view" id="some_name_tree">
      <field name="name">some_name_tree</field>
      <field name="model">some.model</field>
      <field name="arch" type="xml">
        <tree>
            <field name="name"/>
        </tree>
      </field>
    </record>

 

0
アバター
破棄
John Baldwin
著作者

Thanks for the answer, but it does not solve the problem of multiple form/tree views and selecting the proper one.

Zbik

Why not solve? views not wroks? error? you have a menu which call test_action?

アバター
Arsenty Karamurza
最善の回答

I'll explain with an example:

This is a menuitem with an action associated to it.

<menuitem name="Measurement Sheets" id="cirem_measurements" parent="cirem_proposition" action="action_measurements" sequence="540"/>

..but it's not a simple xml-defined action:

    <record id="action_measurements" model="ir.actions.server">
<field name="name">Measurement Sheets</field>
<field name="model_id" ref="sale.model_sale_order"/>
<field name="state">code</field>
<field name="code">action = self.my_measurements(cr, uid, context=context)</field>
<field eval="True" name="condition"/>
</record>

you see, it refers to code, which uses another action as a template for creating a custom action that has specific views assigned to each particular view type (kanban, tree, form)

so, firstly, here goes an action used as a template:

        <record id="action_measurements_base" model="ir.actions.act_window">
<field name="name">Measurement Sheets</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">sale.order</field>
<field name="view_type">form</field>
<field name="view_mode">tree,form,calendar,graph</field>
<field name="domain">[('state', 'in', ('sent', 'draft', 'sale'))]</field>
<field name="help" type="html">
<p class="oe_view_nocontent_create">
Click to fill in a new measurement sheet based on the measurement template.
</p><p>
Odoo will help you efficiently handle the complete sales flow:
quotation, sales order, delivery, invoicing and payment.
</p>
</field>
</record>


The most interesting part is the code that sets different view ids to each view type (based on the template-action):

(notice how one can redefine other action's properties too)

    def my_measurements(self, cr, uid, context=None):
IrModelData = self.pool['ir.model.data']
actionObject = IrModelData.xmlid_to_object(cr, uid, 'cirem.action_measurements_base', context=context)
action = actionObject.read(['name', 'help', 'res_model', 'target', 'domain', 'context', 'type', 'search_view_id'])
if not action:
action = {}
else:
action = action[0]
# action['name'] = 'Measurements' SET OTHER PROPERTIES LIKE THIS
tree_view_id = IrModelData.xmlid_to_res_id(cr, uid, 'sale.view_order_tree')
form_view_id = IrModelData.xmlid_to_res_id(cr, uid, 'cirem.measurements_view')
action.update({
'views': [
[tree_view_id, 'tree'],
[form_view_id, 'form'],
[False, 'graph'],
[False, 'calendar'],
[False, 'pivot']
],
})
return action

Ta-Da! Please let me know if I can be of any more help to you :)

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