Bug #313 Cuando cancelas vn-confirm guarda los datos igualmente
This commit is contained in:
parent
7f54bcb019
commit
6f45a8fa5b
|
@ -56,13 +56,12 @@ class Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
returnDialog(response) {
|
returnDialog(response) {
|
||||||
if (response === 'CANCEL')
|
if (response === 'ACCEPT') {
|
||||||
return;
|
let params = {finished: Date.now()};
|
||||||
|
this.$http.patch(`/client/api/CreditClassifications/${this.classificationId}`, params).then(() => {
|
||||||
let params = {finished: Date.now()};
|
this._getClassifications(this.client.id);
|
||||||
this.$http.patch(`/client/api/CreditClassifications/${this.classificationId}`, params).then(() => {
|
});
|
||||||
this._getClassifications(this.client.id);
|
}
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,10 +18,8 @@ class Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
returnDialog(response) {
|
returnDialog(response) {
|
||||||
if (response === 'CANCEL')
|
if (response === 'ACCEPT')
|
||||||
return;
|
this.addCredit();
|
||||||
|
|
||||||
this.addCredit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addCredit() {
|
addCredit() {
|
||||||
|
|
Loading…
Reference in New Issue