summaryrefslogtreecommitdiff
path: root/addons/lunch/static/src/js/lunch_payment_dialog.js
blob: ae624403f1297b80f55e097c30519fdf20b810f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
odoo.define('lunch.LunchPaymentDialog', function (require) {
"use strict";

var Dialog = require('web.Dialog');

var LunchPaymentDialog = Dialog.extend({
    template: 'lunch.LunchPaymentDialog',

    init: function (parent, options) {
        this._super.apply(this, arguments);

        options = options || {};

        this.message = options.message || '';
    },
});

return LunchPaymentDialog;

});