コンテンツへスキップ
メニュー
この質問にフラグが付けられました
1 返信
7001 ビュー

I wanted to know that how may I call the tree view(of different records) through a button . Because returning form view is easy but when I tried to do exact thing for tree view it shows a list only.

The scenario is that I have a search product form. Now when the search is generated,a domain of records is filled in the field.

I want to add a button to call the tree view showing me the records present in that domain. I added a function to button but it showed me all the record in a list , didnot even show only the records in the domain.

I have tried to call the following function through a button-click but it did not meet my needs:

 

def views(self,cr,uid,ids,context=None):

       for id in ids:

             deg_obj=self.pool.get('deg.form').browse(cr,uid,id)    

             my_id=int(deg_obj.my_products)

       return{ 'view_type': 'tree',

                    'view_mode': 'tree',

                    'res_model': 'product.product',

                    'res_id':my_id,

                    'context': context,

                    'type': 'ir.actions.act_window',

                    'readonly':True, }

アバター
破棄
最善の回答

You have to return a domain in your object, either that or a search_default_FIELDNAME in the context.

アバター
破棄
関連投稿 返信 ビュー 活動
2
12月 23
12963
3
7月 22
23393
2
6月 21
18738
0
9月 20
3827
0
5月 16
4273