fix sms faltas no se envia refs #5081
gitea/salix/pipeline/head There was a failure building this commit
Details
gitea/salix/pipeline/head There was a failure building this commit
Details
This commit is contained in:
parent
bca8a324d8
commit
b53b9b91f4
|
@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- [Tickets] Al enviar un sms de falta no se enviaba el mensaje
|
||||||
|
|
||||||
## [2302.01] - 2023-01-12
|
## [2302.01] - 2023-01-12
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -42,7 +42,7 @@ class Controller extends Descriptor {
|
||||||
|
|
||||||
onSmsSend(sms) {
|
onSmsSend(sms) {
|
||||||
return this.$http.post(`Clients/${this.id}/sendSms`, sms)
|
return this.$http.post(`Clients/${this.id}/sendSms`, sms)
|
||||||
.then(() => this.vnApp.showSuccess(this.$t('SMS sent')));
|
.then(() => this.vnApp.showSuccess(this.$t('SMS sent!')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -310,7 +310,7 @@ class Controller extends Section {
|
||||||
|
|
||||||
onSmsSend(sms) {
|
onSmsSend(sms) {
|
||||||
return this.$http.post(`Tickets/${this.id}/sendSms`, sms)
|
return this.$http.post(`Tickets/${this.id}/sendSms`, sms)
|
||||||
.then(() => this.vnApp.showSuccess(this.$t('SMS sent')));
|
.then(() => this.vnApp.showSuccess(this.$t('SMS sent!')));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -441,10 +441,10 @@
|
||||||
</vn-popover>
|
</vn-popover>
|
||||||
|
|
||||||
<!-- SMS Dialog -->
|
<!-- SMS Dialog -->
|
||||||
<vn-ticket-sms
|
<vn-sms-dialog
|
||||||
vn-id="sms"
|
vn-id="sms"
|
||||||
sms="$ctrl.newSMS">
|
sms="$ctrl.newSMS">
|
||||||
</vn-ticket-sms>
|
</vn-sms-dialog>
|
||||||
|
|
||||||
<vn-confirm
|
<vn-confirm
|
||||||
vn-id="delete-lines"
|
vn-id="delete-lines"
|
||||||
|
|
Loading…
Reference in New Issue