From 73a6148a7776c6a974a961ab3f3e6b2f391a05ec Mon Sep 17 00:00:00 2001 From: Joan Sanchez Date: Mon, 25 May 2020 14:45:26 +0200 Subject: [PATCH] 2273 - Fixed transfer sales --- modules/ticket/front/sale/index.html | 2 +- modules/ticket/front/sale/index.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/ticket/front/sale/index.html b/modules/ticket/front/sale/index.html index 29294fd97..8c8d8c3cd 100644 --- a/modules/ticket/front/sale/index.html +++ b/modules/ticket/front/sale/index.html @@ -42,7 +42,7 @@ diff --git a/modules/ticket/front/sale/index.js b/modules/ticket/front/sale/index.js index f422fefa1..84c4870cb 100644 --- a/modules/ticket/front/sale/index.js +++ b/modules/ticket/front/sale/index.js @@ -228,6 +228,12 @@ class Controller extends Section { } } + showTransferPopover(event) { + this.setTransferParams(); + this.$.transfer.parent = event.target; + this.$.transfer.show(); + } + setTransferParams() { const checkedSales = JSON.stringify(this.checkedLines()); const sales = JSON.parse(checkedSales);