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

69 lines
1.8 KiB
JavaScript
Raw Normal View History

2017-06-03 11:01:47 +00:00
import ngModule from '../module';
2020-04-25 09:50:04 +00:00
import Descriptor from 'salix/components/descriptor';
2019-11-21 13:00:27 +00:00
2020-04-25 09:50:04 +00:00
class Controller extends Descriptor {
2020-02-11 12:25:41 +00:00
constructor($element, $, $httpParamSerializer) {
2019-11-21 13:00:27 +00:00
super($element, $);
2020-02-11 12:25:41 +00:00
this.$httpParamSerializer = $httpParamSerializer;
2018-08-02 08:06:11 +00:00
}
2019-10-21 12:21:52 +00:00
get client() {
return this._client;
}
2018-08-02 08:06:11 +00:00
set client(value) {
this._client = value;
if (!value) return;
2019-11-21 13:00:27 +00:00
if (this.$params.sendSMS)
this.showSMSDialog();
2018-08-02 08:06:11 +00:00
this._quicklinks = {
btnOne: {
icon: 'icon-ticket',
2018-09-04 09:49:00 +00:00
state: `ticket.index({q: '{"clientFk": ${value.id}}'})`,
tooltip: 'Client ticket list'
},
btnTwo: {
icon: 'icon-basketadd',
state: `order.create({clientFk: ${value.id}})`,
tooltip: 'New order'
}
};
}
2020-04-25 09:50:04 +00:00
get filter() {
return this.client ? JSON.stringify({clientFk: this.client.id}) : null;
2019-01-07 07:49:01 +00:00
}
2019-11-21 13:00:27 +00:00
showSMSDialog() {
2020-04-25 09:50:04 +00:00
const client = this.client || {};
2019-11-21 13:00:27 +00:00
this.newSMS = {
2020-02-21 07:37:37 +00:00
destinationFk: client.id,
2020-04-25 09:50:04 +00:00
destination: this.$params.phone || client.mobile || client.phone,
message: this.$params.message || ''
2019-11-21 13:00:27 +00:00
};
this.$.sms.open();
}
2020-02-11 12:25:41 +00:00
2020-04-25 09:50:04 +00:00
onConsumerReportAccept() {
const params = this.$httpParamSerializer({
authorization: this.vnToken.token,
clientId: this.client.id,
from: this.from,
to: this.to,
});
window.open(`api/report/campaign-metrics?${params}`);
2020-02-11 12:25:41 +00:00
}
}
2018-05-31 06:57:25 +00:00
2020-02-11 12:25:41 +00:00
Controller.$inject = ['$element', '$scope', '$httpParamSerializer'];
2020-04-25 09:50:04 +00:00
ngModule.vnComponent('vnClientDescriptor', {
2018-05-23 12:26:51 +00:00
template: require('./index.html'),
bindings: {
2020-04-25 09:50:04 +00:00
client: '<'
},
2018-05-23 12:26:51 +00:00
controller: Controller
2017-06-03 11:01:47 +00:00
});