跳至內容
選單
此問題已被標幟
1 回覆
8458 瀏覽次數

I need to show user tagged to employee form view when user logged in to system(User should see his employee details in form view)

I tried like this

<record id="hr_profile" model="ir.actions.act_window">

<field name="name">My Information</field>

<field name="res_model">hr.employee</field>

<field name="view_type">form</field>

<field name="view_mode">form,tree,kanban</field>

<field name="domain">[('user_id','=',user.id)]</field>

<field name="context">{'my_self':1}</field> </record>

<menuitem parent ="hr.menu_hr_main" sequence="1" string="My Details" id="menu_self" action="hr_profile"/>   

I inherited search view and passed arg(i.e., [('user_id','=',user.id)]) but its not even calling the search method and its showing new form when I given default form in action,but search method called when we used default view tree or kanban

help me out
 

頭像
捨棄
最佳答案

Dear Sairam,

You need to do some change in ir.actions.act_window in xml file

Just add to 'view_id' tag in action like

<field name="view_id" ref="your_module_name.new_modify_tree_id"/>

Example

<field name="view_id" ref="base.res_partner_kanban_view"/>

Hope this help for you.

Best Regards,

Ankit H Gandhi.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
8月 16
3637
1
3月 25
1272
3
1月 24
8614
0
1月 24
7
1
10月 23
8396