salix/modules/client/front/sample/create/index.js

144 lines
4.2 KiB
JavaScript
Raw Normal View History

2018-07-31 09:08:22 +00:00
import ngModule from '../../module';
2020-03-17 10:17:50 +00:00
import Section from 'salix/components/section';
2018-07-31 09:08:22 +00:00
import './style.scss';
2020-03-17 10:17:50 +00:00
class Controller extends Section {
constructor($element, $) {
super($element, $);
2018-07-31 09:08:22 +00:00
this.clientSample = {
clientFk: this.$params.id,
2020-03-17 10:17:50 +00:00
companyId: this.vnConfig.companyFk
2018-07-31 09:08:22 +00:00
};
}
2019-11-04 12:55:20 +00:00
get client() {
return this._client;
}
set client(value) {
this._client = value;
2021-04-07 12:14:31 +00:00
if (value) {
2019-11-04 12:55:20 +00:00
this.clientSample.recipient = value.email;
2021-04-07 12:14:31 +00:00
this.getWorkerEmail();
}
2019-11-04 12:55:20 +00:00
}
get companyId() {
if (!this.clientSample.companyFk)
this.clientSample.companyFk = this.vnConfig.companyFk;
return this.clientSample.companyFk;
}
set companyId(value) {
this.clientSample.companyFk = value;
}
2020-02-18 10:14:02 +00:00
onSubmit() {
this.$.watcher.check();
this.$.watcher.realSubmit().then(() =>
this.sendSample()
);
}
2018-07-31 09:08:22 +00:00
2022-09-22 13:44:35 +00:00
// showPreview() {
// this.send(true, res => {
// this.$.showPreview.show();
// const dialog = document.body.querySelector('div.vn-dialog');
// const body = dialog.querySelector('tpl-body');
// const scroll = dialog.querySelector('div:first-child');
// body.innerHTML = res.data;
// scroll.scrollTop = 0;
// });
// }
// sendSample() {
// this.send(false, () => {
// this.vnApp.showSuccess(this.$t('Notification sent!'));
// this.$state.go('client.card.sample.index');
// });
// }
// send(isPreview, cb) {
// const sampleType = this.$.sampleType.selection;
// const params = {
// recipientId: this.$params.id,
// recipient: this.clientSample.recipient,
// replyTo: this.clientSample.replyTo
// };
// if (!params.recipient)
// return this.vnApp.showError(this.$t('Email cannot be blank'));
// if (!sampleType)
// return this.vnApp.showError(this.$t('Choose a sample'));
// if (sampleType.hasCompany && !this.clientSample.companyFk)
// return this.vnApp.showError(this.$t('Choose a company'));
// if (sampleType.hasCompany)
// params.companyId = this.clientSample.companyFk;
// if (sampleType.datepickerEnabled && !this.clientSample.from)
// return this.vnApp.showError(this.$t('Choose a date'));
// if (sampleType.datepickerEnabled)
// params.from = this.clientSample.from;
// let query = `email/${sampleType.code}`;
// if (isPreview)
// query = `email/${sampleType.code}/preview`;
// this.$http.get(query, {params}).then(cb);
// }
preview() {
2020-02-18 10:14:02 +00:00
const sampleType = this.$.sampleType.selection;
2022-09-22 13:44:35 +00:00
2020-02-18 10:14:02 +00:00
const params = {
2020-05-22 13:20:55 +00:00
recipientId: this.$params.id,
recipient: this.clientSample.recipient,
replyTo: this.clientSample.replyTo
2019-11-04 12:55:20 +00:00
};
2018-07-31 09:08:22 +00:00
2022-09-22 13:44:35 +00:00
const path = `${sampleType.model}/${this.$params.id}/${sampleType.property}Html`;
this.$http.get(path, {params})
.then(response => {
this.$.showPreview.show();
const dialog = document.body.querySelector('div.vn-dialog');
const body = dialog.querySelector('tpl-body');
const scroll = dialog.querySelector('div:first-child');
body.innerHTML = response.data;
scroll.scrollTop = 0;
});
}
2022-09-22 13:44:35 +00:00
send() {
this.vnEmail.send(`tickets/${this.id}/credit-request-email`, {
recipientId: this.ticket.client.id,
recipient: $data.email
});
2018-07-31 09:08:22 +00:00
}
getWorkerEmail() {
const userId = window.localStorage.currentUserWorkerId;
const params = {filter: {where: {userFk: userId}}};
this.$http.get('EmailUsers', params).then(res => {
const [worker] = res && res.data;
this.clientSample.replyTo = worker.email;
});
}
2018-07-31 09:08:22 +00:00
}
2020-03-17 10:17:50 +00:00
Controller.$inject = ['$element', '$scope'];
2018-07-31 09:08:22 +00:00
ngModule.vnComponent('vnClientSampleCreate', {
2018-07-31 09:08:22 +00:00
template: require('./index.html'),
2019-11-04 12:55:20 +00:00
controller: Controller,
bindings: {
client: '<'
}
2018-07-31 09:08:22 +00:00
});