Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3 Відповіді
1692 Переглядів

Hi, how to disable button disc on module point of sale on odoo12? thanks.

Аватар
Відмінити
Найкраща відповідь

Hi,

Using through code you can disable the discount button in the POS

var screens = require('point_of_sale.screens');

screens.ActionButtonWidget.include({
button_click: function () {
if (this.button_data.action === 'discount') {
// Disable the action for the Discount button
return;
}
this._super.apply(this, arguments);
},
});

Regards

Аватар
Відмінити
Найкраща відповідь

You can disable the button element in HTML by adding the disabled attribute to the element. The disabled attribute is a boolean attribute that allows you to disable an element, making the element unusable from the browser.

Greetings,
Peter

Аватар
Відмінити
Найкраща відповідь

Hi Ananda Khairum Nur Fajr

You can achieve mention feature by purchasing third party application from Odoo Apps Store. Many of them are free with this feature.

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
квіт. 24
1085
1
бер. 24
2341
3
вер. 18
3852
0
бер. 15
4206
2
груд. 20
6879