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

I am creating new module and want to attachment button to attach file with every new record.

アバター
破棄
最善の回答

Install Document Management System module or give dependency in your module so attachment button will appearer on each record.

アバター
破棄
著作者

Thanks alot dear...

最善の回答

Hello,

you can add your attachment button in header like this,


 <record model="ir.ui.view" id="action_view_demo">

<field name="name">demo</field>

<field name="model">demo.demo</field>

<field name="arch" type="xml">

<form string="Demo Form">

 <header>

<button name="button_attachment" string="Attachment"

type="object" icon="gtk-go-forward" colspan='1' />

</header>

アバター
破棄