This commit is contained in:
parent
40ccc4f409
commit
1302665d98
|
@ -17,6 +17,10 @@ class Controller extends Descriptor {
|
|||
}
|
||||
|
||||
sendPickupOrder() {
|
||||
if (!this.claim.client.email) {
|
||||
this.vnApp.showSuccess(this.$t('The client does not have an email'));
|
||||
return;
|
||||
}
|
||||
return this.vnEmail.send(`Claims/${this.claim.id}/claim-pickup-email`, {
|
||||
recipient: this.claim.client.email,
|
||||
recipientId: this.claim.clientFk
|
||||
|
|
|
@ -20,3 +20,4 @@ Photos: Fotos
|
|||
Go to the claim: Ir a la reclamación
|
||||
Sale tracking: Líneas preparadas
|
||||
Ticket tracking: Estados del ticket
|
||||
The client does not have an email: El cliente no tiene email
|
||||
|
|
Loading…
Reference in New Issue