odoo.define('pos_restaurant.notes', function (require) { "use strict"; var models = require('point_of_sale.models'); var _super_orderline = models.Orderline.prototype; models.Orderline = models.Orderline.extend({ initialize: function(attr, options) { _super_orderline.initialize.call(this,attr,options); this.note = this.note || ""; }, set_note: function(note){ this.note = note; this.trigger('change',this); }, get_note: function(note){ return this.note; }, can_be_merged_with: function(orderline) { if (orderline.get_note() !== this.get_note()) { return false; } else { return _super_orderline.can_be_merged_with.apply(this,arguments); } }, clone: function(){ var orderline = _super_orderline.clone.call(this); orderline.note = this.note; return orderline; }, export_as_JSON: function(){ var json = _super_orderline.export_as_JSON.call(this); json.note = this.note; return json; }, init_from_JSON: function(json){ _super_orderline.init_from_JSON.apply(this,arguments); this.note = json.note; }, }); });