2017-06-03 11:01:47 +00:00
|
|
|
import ngModule from '../module';
|
2019-11-21 13:00:27 +00:00
|
|
|
import Component from 'core/lib/component';
|
|
|
|
|
|
|
|
class Controller extends Component {
|
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;
|
2020-03-05 12:56:45 +00:00
|
|
|
|
2019-01-07 07:49:01 +00:00
|
|
|
this.moreOptions = [
|
2019-11-21 13:00:27 +00:00
|
|
|
{name: 'Simple ticket', callback: this.newTicket},
|
|
|
|
{name: 'Send SMS', callback: this.showSMSDialog},
|
2020-02-11 12:25:41 +00:00
|
|
|
{name: 'Send consumer report', callback: this.showConsumerReportDialog}
|
2019-01-07 07:49:01 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
onMoreChange(callback) {
|
|
|
|
callback.call(this);
|
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 = {
|
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: {
|
2019-05-07 09:55:47 +00:00
|
|
|
icon: 'icon-basketadd',
|
2018-11-23 06:59:51 +00:00
|
|
|
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
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2019-01-07 07:49:01 +00:00
|
|
|
|
|
|
|
newTicket() {
|
|
|
|
this.$state.go('ticket.create', {clientFk: this.client.id});
|
|
|
|
}
|
2019-11-21 13:00:27 +00:00
|
|
|
|
|
|
|
showSMSDialog() {
|
2020-02-21 07:37:37 +00:00
|
|
|
const client = this.client;
|
|
|
|
const phone = this.$params.phone || client.mobile || client.phone;
|
2019-11-21 13:00:27 +00:00
|
|
|
const message = this.$params.message || '';
|
|
|
|
this.newSMS = {
|
2020-02-21 07:37:37 +00:00
|
|
|
destinationFk: client.id,
|
2019-11-21 13:00:27 +00:00
|
|
|
destination: phone,
|
|
|
|
message: message
|
|
|
|
};
|
|
|
|
this.$.sms.open();
|
|
|
|
}
|
2020-02-11 12:25:41 +00:00
|
|
|
|
|
|
|
showConsumerReportDialog() {
|
|
|
|
this.$.consumerReportDialog.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
sendConsumerReport(response) {
|
|
|
|
if (response === 'accept') {
|
2020-03-05 12:56:45 +00:00
|
|
|
const params = {
|
|
|
|
authorization: this.vnToken.token,
|
|
|
|
clientId: this.client.id,
|
|
|
|
from: this.from,
|
|
|
|
to: this.to,
|
|
|
|
};
|
|
|
|
const serializedParams = this.$httpParamSerializer(params);
|
2020-02-11 12:25:41 +00:00
|
|
|
const url = `api/report/campaign-metrics?${serializedParams}`;
|
|
|
|
window.open(url);
|
|
|
|
}
|
|
|
|
}
|
2018-03-09 15:44:18 +00:00
|
|
|
}
|
2018-05-31 06:57:25 +00:00
|
|
|
|
2020-02-11 12:25:41 +00:00
|
|
|
Controller.$inject = ['$element', '$scope', '$httpParamSerializer'];
|
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
|
|
|
});
|