You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
420 B
13 lines
420 B
odoo.define('pos_discount_manager.NumberPopup', function(require) {
|
|
'use strict';
|
|
|
|
const Registries = require('point_of_sale.Registries');
|
|
const NumberPopup = require('point_of_sale.NumberPopup');
|
|
|
|
const Managers = (NumberPopup) =>
|
|
class extends NumberPopup {
|
|
}
|
|
NumberPopup.template = 'NumberPopupNumber';
|
|
Registries.Component.extend(NumberPopup, Managers);
|
|
return Managers;
|
|
});
|
|
|