Skip to content
Snippets Groups Projects
Commit d7754604 authored by Hubert Van de Walle (huvw)'s avatar Hubert Van de Walle (huvw)
Browse files

[FIX] point_of_sale: fix runtime error


Steps to follow

  - Enable pos pricelists
  - Enable 'Login with Employees' and 'Advanced Pricelists'
  - Open a session
  - Select a Cashier
  - Order a product
  - Select a pricelist
  - Confirm the order
  - Lock the session
  - Select a Cashier again

  -> A stacktrace appears

Cause of the issue

  The `list` and `is_selected` options are reused from the previous
  instance
  -> The current order can be null

Solution

  Set the options before calling the super method in `show()`

opw-2649351

closes odoo/odoo#81610

Signed-off-by: default avatarMasereel Pierre <pim@odoo.com>
parent e8c5e6c0
No related branches found
No related tags found
No related merge requests found
......@@ -174,10 +174,10 @@ var SelectionPopupWidget = PopupWidget.extend({
show: function(options){
var self = this;
options = options || {};
this._super(options);
this.list = options.list || [];
this.is_selected = options.is_selected || function (item) { return false; };
this._super(options);
this.renderElement();
},
click_item : function(event) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment