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

Hi all,

Is it possible to add delete button next to save and discard in odoo 12 form instead inside action??

頭像
捨棄

Odoo is one of the best option for the ERP.

#odoo #openerp #ERP #customization

#tips #training #development #guide #python

These tips help you to get the basic idea about customization in odoo

https://learnopenerp.tumblr.com/

最佳答案

Yes, it's possible.

1) <button t-if="widget.is_action_enabled('delete')" type="button" class="btn btn-danger o_form_button_delete" accesskey="d">Delete</button>
Add after a line https://github.com/odoo/odoo/blob/12.0/addons/web/static/src/xml/base.xml#L408

2) this.$buttons.on('click', '.o_form_button_delete', this._onDeleteRecord.bind(this));
Add after a line https://github.com/odoo/odoo/blob/12.0/addons/web/static/src/js/views/form/form_controller.js#L150
        ​

頭像
捨棄
作者 最佳答案

Hi Jigar Patel,

Thank you for the answer, I did the same thing.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
2
5月 19
3138
1
10月 21
3519
3
12月 16
8648
1
5月 22
4602
2
8月 25
219