diff --git a/modules/invoiceOut/front/summary/index.html b/modules/invoiceOut/front/summary/index.html
index 0406a39c5..924972299 100644
--- a/modules/invoiceOut/front/summary/index.html
+++ b/modules/invoiceOut/front/summary/index.html
@@ -1,6 +1,7 @@
diff --git a/modules/invoiceOut/front/summary/index.js b/modules/invoiceOut/front/summary/index.js
index 2446e986a..af0b5365e 100644
--- a/modules/invoiceOut/front/summary/index.js
+++ b/modules/invoiceOut/front/summary/index.js
@@ -7,7 +7,7 @@ class Controller extends Summary {
this._invoiceOut = value;
if (value && value.id) {
this.getSummary();
- this.getTickets();
+ this.$.ticketsModel.url = `InvoiceOuts/${this.invoiceOut.id}/getTickets`;
}
}
@@ -19,14 +19,6 @@ class Controller extends Summary {
return this.$http.get(`InvoiceOuts/${this.invoiceOut.id}/summary`)
.then(res => this.summary = res.data);
}
-
- getTickets() {
- this.$.$applyAsync(() => {
- const query = `InvoiceOuts/${this.invoiceOut.id}/getTickets`;
- this.$.ticketsModel.url = query;
- this.$.ticketsModel.refresh();
- });
- }
}
ngModule.vnComponent('vnInvoiceOutSummary', {