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-04-30 10:48:52 +00:00
|
|
|
get entity() {
|
|
|
|
return super.entity;
|
|
|
|
}
|
|
|
|
|
|
|
|
set entity(value) {
|
|
|
|
super.entity = value;
|
|
|
|
|
2020-06-18 10:59:37 +00:00
|
|
|
if (value && this.$params.sendSMS)
|
2020-04-30 10:48:52 +00:00
|
|
|
this.showSMSDialog();
|
2018-08-02 08:06:11 +00:00
|
|
|
}
|
|
|
|
|
2019-10-21 12:21:52 +00:00
|
|
|
get client() {
|
2020-04-28 12:26:02 +00:00
|
|
|
return this.entity;
|
2019-10-21 12:21:52 +00:00
|
|
|
}
|
|
|
|
|
2018-08-02 08:06:11 +00:00
|
|
|
set client(value) {
|
2020-04-28 12:26:02 +00:00
|
|
|
this.entity = value;
|
2018-03-09 15:44:18 +00:00
|
|
|
}
|
2018-08-01 10:15:09 +00:00
|
|
|
|
2020-04-25 09:50:04 +00:00
|
|
|
get filter() {
|
2020-04-30 10:48:52 +00:00
|
|
|
return JSON.stringify({clientFk: this.id});
|
|
|
|
}
|
|
|
|
|
|
|
|
loadData() {
|
|
|
|
return this.getData(`Clients/${this.id}/getCard`)
|
|
|
|
.then(res => this.entity = res.data);
|
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-04-30 10:48:52 +00:00
|
|
|
destinationFk: this.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
|
|
|
};
|
2022-11-25 08:59:02 +00:00
|
|
|
this.$.sms.open();
|
|
|
|
}
|
2022-11-21 07:45:45 +00:00
|
|
|
|
2022-11-25 08:59:02 +00:00
|
|
|
onSmsSend(sms) {
|
|
|
|
return this.$http.post(`Clients/${this.id}/sendSms`, sms)
|
|
|
|
.then(() => this.vnApp.showSuccess(this.$t('SMS sent')));
|
2019-11-21 13:00:27 +00:00
|
|
|
}
|
2023-02-13 12:04:22 +00:00
|
|
|
|
|
|
|
clientUnpaid() {
|
|
|
|
return this.$t(`Unpaid Dated`, {dated: this.client.unpaid.dated}) +
|
|
|
|
'<br/>' + this.$t(`Unpaid Amount`, {amount: this.client.unpaid.amount});
|
|
|
|
}
|
2018-03-09 15:44:18 +00:00
|
|
|
}
|
|
|
|
|
2020-04-25 09:50:04 +00:00
|
|
|
ngModule.vnComponent('vnClientDescriptor', {
|
2020-04-30 10:48:52 +00:00
|
|
|
template: require('./index.html'),
|
|
|
|
controller: Controller,
|
2017-01-31 13:13:06 +00:00
|
|
|
bindings: {
|
2020-04-25 09:50:04 +00:00
|
|
|
client: '<'
|
2020-04-30 10:48:52 +00:00
|
|
|
}
|
2017-06-03 11:01:47 +00:00
|
|
|
});
|