salix/modules/order/front/descriptor/index.js

71 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-07-18 12:21:58 +00:00
import ngModule from '../module';
import './style.scss';
class Controller {
2019-08-29 11:16:38 +00:00
constructor($translate, $scope, vnApp, $http, $state) {
this.$state = $state;
this.$scope = $scope;
this.vnApp = vnApp;
this.$http = $http;
this.$translate = $translate;
this.moreOptions = [
{name: 'Delete order', callback: () => this.showDeleteOrderDialog()}
];
2018-07-18 12:21:58 +00:00
}
2018-10-03 06:00:19 +00:00
2018-12-12 10:43:57 +00:00
set order(value) {
this._order = value;
if (value.isConfirmed) {
this._quicklinks = {
btnOne: {
icon: 'icon-ticket',
state: `ticket.index({q: '{"orderFk": ${value.id}}'})`,
tooltip: 'Order ticket list'
},
btnTwo: {
icon: 'person',
state: `client.card.summary({id: ${value.clientFk}})`,
tooltip: 'Client card'
2018-12-12 10:43:57 +00:00
}
};
}
}
get order() {
return this._order;
}
2018-10-03 06:00:19 +00:00
set quicklinks(value = {}) {
this._quicklinks = Object.assign(value, this._quicklinks);
}
get quicklinks() {
return this._quicklinks;
}
2019-08-29 11:16:38 +00:00
deleteOrder(response) {
if (response === 'ACCEPT') {
const params = {id: this.order.id};
this.$http.delete(`/api/Orders/${params.id}`).then(() => {
this.$state.go('order.index');
this.vnApp.showSuccess(this.$translate.instant('Order deleted'));
});
}
}
showDeleteOrderDialog() {
this.$scope.deleteOrderConfirmation.show();
}
2018-07-18 12:21:58 +00:00
}
2019-08-29 11:16:38 +00:00
Controller.$inject = ['$translate', '$scope', 'vnApp', '$http', '$state'];
2018-07-18 12:21:58 +00:00
ngModule.component('vnOrderDescriptor', {
template: require('./index.html'),
bindings: {
order: '<'
},
controller: Controller
});