Merged in release/3.8.0 (pull request #8603)

Updating develop branch with last changes in release/3.8.0

Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
Paula Quispe
2022-10-05 13:13:49 +00:00
committed by Julio Cesar Laura Avendaño
13 changed files with 597 additions and 20 deletions

View File

@@ -252,7 +252,7 @@ export default {
})
)
.then((response) => {
if (response.status === 200 ) {
if (response.status === 200 || response.status === 201) {
that.attachDocuments = false;
that.dataAttachedDocuments.items = [];
that.getCasesNotes();

View File

@@ -93,11 +93,10 @@ export default {
})
)
.then((response) => {
if (response.status === 200) {
if (response.status === 200 || response.status === 201) {
that.attachDocuments = false;
that.dataAttachedDocuments.items = [];
that.getCasesNotes();
this.$refs["modal-comments"].hide();
this.$emit("postNotes");
}
})