import ngModule from '../module'; export default class Controller { constructor($stateParams, $http) { this.$http = $http; this.$stateParams = $stateParams; this.route = null; this.filter = { fields: [ 'id', 'ref', 'issued', 'amount', 'clientFk', 'companyFk' ], include: [ { relation: 'company', scope: { fields: ['id', 'code'] } }, { relation: 'client', scope: { fields: ['id', 'socialName'] } } ] }; } $onInit() { this.getCard(); } getCard() { const params = {filter: this.filter}; this.$http.get(`/api/InvoiceOuts/${this.$stateParams.id}`, {params}).then(response => { this.invoiceOut = response.data; }); } reload() { this.getCard(); } } Controller.$inject = ['$stateParams', '$http']; ngModule.component('vnInvoiceOutCard', { template: require('./index.html'), controller: Controller });