콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
6852 화면
I want to remove the top "Save" button from the formview of my custom module.because i want create action with my custom button I know that we perform this by setting write/create to false in the XML,but button still appear
 my form view :
<field name="name">sales_inquiry</field>
<field name="model">sales_report_custom.sales_inquiry</field>
<field name="type">form</field> <field name="arch" type="xml">
<form create="false" edit="false" string="Sales Inquiry" version="7.0" >
<button string="View" name="action_open_form_report" type="object" class="btn-primary" /> </sheet>
</form>
</field>

my action : 

<record id="action_salesinquiry_list" model="ir.actions.act_window">
<field name="name">Sales Results Inquiry</field>
<field name="res_model">sales_report_custom.sales_inquiry</field>
<field name="view_id" ref="sales_results_form" />
<field name="target">current</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>

Do you have an idea ? Thanks!
아바타
취소
베스트 답변

Set those property like create="false" edit="false" in Tree view itself, that will eliminate rest of the things,


Suppose if you are loading the view from py method,  then you set the flags on a return action

'flags': {'form': {'action_buttons': False}}

아바타
취소
베스트 답변


Hi Wendra,

  kindly replace  "target" mode for action to "inline" and update module.

<field name="target">inline</field> 

ps: pls add option: create='false' into form view which you want remove button.
<form create="false" >




아바타
취소
관련 게시물 답글 화면 활동
1
12월 15
4125
2
7월 23
784
2
1월 22
48321
1
10월 24
1796
Non-dict expression 해결 완료
2
7월 22
3008