コンテンツへスキップ
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 pass default value with fields_view_get

購読

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

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

I am using fields_view_get method in odoo to add temporary fields in form view, but i look to pass default value in edit mode unfortunately default_get work only in create mode, can someone help me please thank you.

def fields_view_get(self,view_id=None, view_type='form', toolbar=False, submenu=False):
    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
    categories = self.env['inspection.category'].search([])
    all_fields = {}
    pages = """ """
    fields = """ <group string="Categories" style="font-size:13px; color:black;"> """
    if view_type == 'form':
        xml_code = res['arch']
        for c in categories:
            all_fields['category_id_' + str(c.id)] = {
                            'type': 'boolean',
                            'string': c.name,
                             how can in pass default value ???????,
                        }
            fields = fields + """ <field name="%s" string="%s"/>"""%(('category_id_' + str(c.id)),c.name)
        xml_code = xml_code[:xml_code.find("<notebook/>")]+" "+fields+" "+xml_code[xml_code.find("<notebook/>")+len("<notebook/>"):]
        res['fields'] = dict(res['fields'].items() + all_fields.items())
        res['arch'] = xml_code
    return res

0
アバター
破棄
アバター
Gracious Joseph
最善の回答

To pass a default value to dynamically added fields in Odoo using fields_view_get, you need to manually handle the assignment of default values in the res['fields'] dictionary. While default_get works for fields defined in the model, dynamically added fields through fields_view_get require explicit handling.

Here’s how you can achieve it:

Modified fields_view_get Implementation

def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)
    categories = self.env['inspection.category'].search([])
    all_fields = {}
    fields = """<group string="Categories" style="font-size:13px; color:black;">"""
    
    if view_type == 'form':
        xml_code = res['arch']
        
        # Add dynamically generated fields
        for c in categories:
            field_name = 'category_id_' + str(c.id)
            all_fields[field_name] = {
                'type': 'boolean',
                'string': c.name,
                # Pass default value here
                'default': lambda self: self._get_default_category_value(c.id),
            }
            fields += """<field name="%s" string="%s"/>""" % (field_name, c.name)
        
        # Inject the new fields into the XML structure
        xml_code = xml_code.replace("<notebook/>", fields + "</group><notebook/>")
        
        # Merge the dynamically added fields into the fields dictionary
        res['fields'].update(all_fields)
        res['arch'] = xml_code
    
    return res

Explanation of Key Changes

  1. Adding Default Values: In the dynamically created all_fields dictionary, a default value can be set using:
    'default': lambda self: self._get_default_category_value(c.id),
    
  2. Custom Method for Default Value: Define a helper method in your model to fetch the default values for the dynamically added fields:
    def _get_default_category_value(self, category_id):
        # Example: Set default to True for specific categories
        if category_id in [1, 2, 3]:  # Adjust category IDs as needed
            return True
        return False
    
  3. Update the Fields Dictionary: Merge the dynamically generated fields with the existing ones using res['fields'].update(all_fields).
  4. Modify XML Structure: Dynamically inject the fields into the form view XML structure.

Limitations and Considerations

  • Defaults in Edit Mode: The default attribute in the field definition is typically used in the create mode. To ensure it applies in edit mode, you must populate the field values in the model's write or other record access methods.
  • Persistence: The dynamically added fields and their values are not persisted in the database unless handled separately. If you want these fields to have permanent values, you'll need to store them in a related model or JSON field.

Alternative Approach

If the default value for the dynamic fields should be assigned in the edit mode as well, consider overriding the read or default_get method to inject values dynamically.

Example with default_get:

def default_get(self, fields):
    res = super(inspection, self).default_get(fields)
    
    categories = self.env['inspection.category'].search([])
    for c in categories:
        field_name = 'category_id_' + str(c.id)
        if field_name in fields:
            res[field_name] = True if c.id in [1, 2, 3] else False  # Example condition
    
    return res

With these changes, your dynamically added fields in fields_view_get will have the default values set properly. This approach works seamlessly in both create and edit modes. Let me know if you need further clarification!

0
アバター
破棄
アバター
Nikhil Dhiman
最善の回答

Please try passing this argument

'default':1 or 'default' : True


Like this

def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):

    res = super(inspection, self).fields_view_get(view_id=view_id, view_type=view_type, toolbar=toolbar, submenu=submenu)

    categories = self.env['inspection.category'].search([])

    all_fields = {}

    pages = """ """

    fields = """ <group string="Categories" style="font-size:13px; color:black;"> """

    if view_type == 'form':

        xml_code = res['arch']

        for c in categories:

            all_fields['category_id_' + str( c.name )

        xml_code = xml_code[:xml_code.find("<notebook/>")]+" "+fields+" "+xml_code[xml_code.find("<notebook/>")+len("<notebook/>"):]

        res['fields'] = dict(res['fields'].items() + all_fields.items())

        res['arch'] = xml_code

    return res

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

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

登録
関連投稿 返信 ビュー 活動
Multiple Treeview
python fields_view_get odoo
アバター
アバター
2
5月 16
5737
Save filtered tree view to load as it is at another time 解決済
python odoo
アバター
アバター
アバター
2
8月 25
3642
Private functions and public functions in odoo python 解決済
python odoo
アバター
アバター
アバター
アバター
3
2月 25
5107
odoo ghost module
python odoo
アバター
0
5月 24
46
Call python method from inherit_id attribute
python odoo
アバター
アバター
1
4月 24
4405
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • 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