#5081-hotfix-sms-faltas #1250
|
@ -1,7 +1,7 @@
|
|||
Send SMS: Enviar SMS
|
||||
Destination: Destinatario
|
||||
Message: Mensaje
|
||||
SMS sent!: ¡SMS enviado!
|
||||
SMS sent: ¡SMS enviado!
|
||||
Characters remaining: Carácteres restantes
|
||||
The destination can't be empty: El destinatario no puede estar vacio
|
||||
The message can't be empty: El mensaje no puede estar vacio
|
||||
|
|
|
@ -26,7 +26,7 @@ class Controller extends Component {
|
|||
throw new Error(`The message it's too long`);
|
||||
|
||||
this.$http.post(`Routes/sendSms`, this.sms).then(res => {
|
||||
this.vnApp.showMessage(this.$t('SMS sent!'));
|
||||
this.vnApp.showMessage(this.$t('SMS sent'));
|
||||
|
||||
if (res.data) this.emit('send', {response: res.data});
|
||||
});
|
||||
|
|
|
@ -30,7 +30,7 @@ describe('Route', () => {
|
|||
controller.onResponse();
|
||||
$httpBackend.flush();
|
||||
|
||||
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('SMS sent!');
|
||||
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('SMS sent');
|
||||
});
|
||||
|
||||
it('should call onResponse without the destination and show an error snackbar', () => {
|
||||
|
|
|
@ -441,10 +441,11 @@
|
|||
</vn-popover>
|
||||
|
||||
<!-- SMS Dialog -->
|
||||
<vn-ticket-sms
|
||||
<vn-sms-dialog
|
||||
vn-id="sms"
|
||||
sms="$ctrl.newSMS">
|
||||
</vn-ticket-sms>
|
||||
sms="$ctrl.newSMS"
|
||||
on-send="$ctrl.onSmsSend($sms)">
|
||||
</vn-sms-dialog>
|
||||
|
||||
<vn-confirm
|
||||
vn-id="delete-lines"
|
||||
|
|
|
@ -389,6 +389,11 @@ class Controller extends Section {
|
|||
this.$.sms.open();
|
||||
}
|
||||
|
||||
onSmsSend(sms) {
|
||||
return this.$http.post(`Tickets/${this.ticket.id}/sendSms`, sms)
|
||||
.then(() => this.vnApp.showSuccess(this.$t('SMS sent')));
|
||||
}
|
||||
|
||||
/**
|
||||
* Inserts a new instance
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue