PMCORE-2718

This commit is contained in:
Andrea Adamczyk
2021-01-15 14:46:37 -04:00
parent 9cbf4361d5
commit 9d061b967e

View File

@@ -221,8 +221,10 @@ export default {
claimCase(item) {
let that = this;
api.cases.open(_.extend({ ACTION: "unassigned" }, item)).then(() => {
that.$refs["modal-claim-case"].data = item;
that.$refs["modal-claim-case"].show();
api.cases.cases_open(_.extend({ ACTION: "todo" }, item)).then(() => {
that.$refs["modal-claim-case"].data = item;
that.$refs["modal-claim-case"].show();
});
});
},
/**