2017-06-03 11:01:47 +00:00
|
|
|
import ngModule from '../module';
|
2017-01-31 13:13:06 +00:00
|
|
|
|
2018-05-23 12:26:51 +00:00
|
|
|
class Controller {
|
2018-07-18 10:21:08 +00:00
|
|
|
constructor($http, $state) {
|
|
|
|
this.$state = $state;
|
2018-03-09 15:44:18 +00:00
|
|
|
this.$http = $http;
|
2018-08-02 08:06:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set client(value) {
|
|
|
|
this._client = value;
|
|
|
|
|
|
|
|
if (!value) return;
|
|
|
|
|
|
|
|
this._quicklinks = {
|
2018-08-01 10:15:09 +00:00
|
|
|
btnOne: {
|
|
|
|
icon: 'icon-ticket',
|
2018-09-04 09:49:00 +00:00
|
|
|
state: `ticket.index({q: '{"clientFk": ${value.id}}'})`,
|
2018-08-01 10:15:09 +00:00
|
|
|
tooltip: 'Client ticket list'
|
2018-11-23 06:59:51 +00:00
|
|
|
},
|
|
|
|
btnTwo: {
|
|
|
|
icon: 'shopping_cart',
|
|
|
|
state: `order.create({clientFk: ${value.id}})`,
|
|
|
|
tooltip: 'New order'
|
2018-08-01 10:15:09 +00:00
|
|
|
}
|
|
|
|
};
|
2018-03-09 15:44:18 +00:00
|
|
|
}
|
2018-08-01 10:15:09 +00:00
|
|
|
|
2018-08-02 08:06:11 +00:00
|
|
|
get client() {
|
|
|
|
return this._client;
|
2018-08-01 10:15:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
set quicklinks(value = {}) {
|
2018-08-02 08:06:11 +00:00
|
|
|
this._quicklinks = Object.assign(value, this._quicklinks);
|
2018-08-01 10:15:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get quicklinks() {
|
|
|
|
return this._quicklinks;
|
|
|
|
}
|
2018-03-09 15:44:18 +00:00
|
|
|
}
|
2018-05-31 06:57:25 +00:00
|
|
|
|
2018-07-18 10:21:08 +00:00
|
|
|
Controller.$inject = ['$http', '$state'];
|
2018-03-09 15:44:18 +00:00
|
|
|
|
2018-02-12 12:16:49 +00:00
|
|
|
ngModule.component('vnClientDescriptor', {
|
2018-05-23 12:26:51 +00:00
|
|
|
template: require('./index.html'),
|
2017-01-31 13:13:06 +00:00
|
|
|
bindings: {
|
2018-07-26 10:06:53 +00:00
|
|
|
client: '<',
|
2018-08-01 10:15:09 +00:00
|
|
|
quicklinks: '<'
|
2018-03-09 15:44:18 +00:00
|
|
|
},
|
2018-05-23 12:26:51 +00:00
|
|
|
controller: Controller
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|