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.
17 lines
644 B
17 lines
644 B
odoo.define('pos_takeaway.receipt', function (require) {
|
|
'use strict';
|
|
const models = require('point_of_sale.models');
|
|
models.load_fields('pos.order', 'is_takeaway');
|
|
var _super_order = models.Order.prototype;
|
|
models.Order = models.Order.extend({
|
|
initialize: function() {
|
|
//@Override
|
|
/** sets the is_take_way and is_restaurant values */
|
|
_super_order.initialize.apply(this,arguments);
|
|
this.is_restaurant = this.pos.config.module_pos_restaurant || false;
|
|
this.is_take_way = this.is_take_way || false;
|
|
this.rpc = this.get('rpc');
|
|
this.save_to_db();
|
|
},
|
|
});
|
|
});
|