Browse Source

[FIX] pos_customer_display: don't crash if get_order() is null, that occures if pos_restaurant is enabled

pull/540/head
Sylvain LE GAL 4 years ago
parent
commit
4b5a3d5756
  1. 5
      pos_customer_display/static/src/js/screens.js

5
pos_customer_display/static/src/js/screens.js

@ -12,7 +12,10 @@ odoo.define('pos_customer_display.screens', function (require) {
screens.PaymentScreenWidget.include({
render_paymentlines: function() {
if (this.pos.get_order().get_total_with_tax() === 0) {
if (
!this.pos.get_order() ||
(this.pos.get_order() && this.pos.get_order().get_total_with_tax() === 0)
) {
// Render payment is called each time a new order is created
// (and so when lauching the PoS)
// in that case, we display the welcome message

Loading…
Cancel
Save