コンテンツへスキップ
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 domain a tree view to make admin show all data but other role only specific?

購読

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

この質問にフラグが付けられました
domaintreeviewodoo16
1 返信
3168 ビュー
アバター
Dimas Aditya Kristianto

I want to make all the data only show to admin. If it's not admin, only the assigned data will be shown

So the condition will be

( ('user_ids', 'in', uid) OR ('access_user','=', 'admin') ) AND ('proposal_type', '=', 'video_surveillance')


I make a function that compute and depends on itself because I think that's the only way to make the fields compute every time I open tree view

    
    access_user = fields.Selection(
        string='Access user',
        selection=[
            ('-', '-'),
            ('tech', 'Tech'),
            ('user', 'User'),
            ('adv', 'ADV'),
            ('admin', 'Admin')], compute='_compute_access_user')

    @api.depends('customer_id','access_user')
    def _compute_access_user(self):
        if self.env.user.has_group('configurator.group_parameter_user'):
            if self.env.user.has_group('configurator.group_parameter_adv'):
                if self.env.user.has_group('configurator.group_parameter_administrator'):
                    self.access_user = 'admin'
                else :
                    self.access_user = 'adv'
            else :
                self.access_user = 'user'
        else :
            self.access_user_inokap = 'tech'

But then I realize the value is not stored in the database. If I put store=True​, the compute is not executed when I open tree view (this is dilemma)


    <record id="action_videosurveillance" model="ir.actions.act_window">
        <field name="name">Video Surveillance</field>
        <field name="res_model">proposals</field>
        <field name="view_mode">tree,form</field>
        <field name="domain">[
            '|',
            '&amp;',
            ('user_ids', 'in', uid),
            ('access_user','=', 'admin'),
            ('proposal_type', '=', 'video_surveillance')
        ]</field>
        <field name="context">{'default_proposal_type':'video_surveillance'}</field>
        <field name="help" type="html">
            <p class="o_view_nocontent_smiling_face">
                You don't have Video Surveillance yet, let's do it!
            </p>
        </field>
    </record>


After upgrading, the view is getting error because it cannot found field access_user​ (ofc because I didn't put the store=True to make the compute execute every time I visit the treeview).


Then I try put another field but add '2' that I think will be stored when I visit the tree view and I change the compute method

    access_user2 = fields.Selection(
        string='Access user',
        selection=[
            ('-', '-'),
            ('tech', 'Tech'),
            ('user', 'User'),
            ('adv', 'ADV'),
            ('admin', 'Admin')])
    @api.depends('customer_id','access_user')
    def _compute_access_user(self):
        if self.env.user.has_group('inokap_configurator.group_parameter_user'):
            if self.env.user.has_group('inokap_configurator.group_parameter_adv'):
                if self.env.user.has_group('inokap_configurator.group_parameter_administrator'):
                    self.access_user = 'admin'
                    self.access_user2 = 'admin'
                else :
                    self.access_user = 'adv'
                    self.access_user2 = 'adv'
            else :
                self.access_user = 'user'
                self.access_user2 = 'user'
        else :
            self.access_user = 'tech'
            self.access_user2 = 'tech'
           

        <field name="domain">[
            '|',
            '&amp;',
            ('user_ids', 'in', uid),
            ('access_user2','=', 'admin'),
            ('proposal_type', '=', 'video_surveillance')
        ]</field>


The data is stored as expected. But the view still show all data even for non admin


Where is the error here?













0
アバター
破棄
アバター
Niyas Raphy (Walnut Software Solutions)
最善の回答

Hi,
How about creating one extra menu and showing that menu only for the admin ? Easily you can achieve the task without much tweaks in the code.

For the menu shown to admin, let the domain be [] so that all the records can be seen and other menu with domain to shown only user related records.


Thanks

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

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

登録
関連投稿 返信 ビュー 活動
How to domain views (kanban, tree) in crm module (crm.lead) based on choosen multiple res users with currently logged in user?
domain treeview many2many odoo16
アバター
1
7月 24
2422
How to use Domain in tree view? 解決済
domain treeview
アバター
アバター
アバター
3
3月 15
53347
How to filter records in tree view inside notebook tag
domain treeview notebook
アバター
アバター
3
11月 20
6760
How to hide a Sale Order Line based on "is_delivery"?
attrs domain treeview sale.order.line
アバター
アバター
アバター
アバター
アバター
4
11月 25
9921
What is the translated_display_name field in Odoo? 解決済
error treeview res_partner odoo16
アバター
アバター
アバター
2
1月 25
1991
コミュニティ
  • チュートリアル
  • ドキュメンテーション
  • フォーラム
オープンソース
  • ダウンロード
  • 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