Compare commits
1 Commits
dev
...
5081-fix-s
Author | SHA1 | Date |
---|---|---|
Pau | 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/),
|
||||
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
|
||||
|
||||
### Added
|
||||
|
|
|
@ -42,7 +42,7 @@ class Controller extends Descriptor {
|
|||
|
||||
onSmsSend(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) {
|
||||
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>
|
||||
|
||||
<!-- SMS Dialog -->
|
||||
<vn-ticket-sms
|
||||
<vn-sms-dialog
|
||||
vn-id="sms"
|
||||
sms="$ctrl.newSMS">
|
||||
</vn-ticket-sms>
|
||||
</vn-sms-dialog>
|
||||
|
||||
<vn-confirm
|
||||
vn-id="delete-lines"
|
||||
|
|
Loading…
Reference in New Issue