PMCORE-3394:Unassigned > The user can pause a case
remove pause
This commit is contained in:
@@ -233,7 +233,6 @@
|
|||||||
@postNotes="onPostNotes"
|
@postNotes="onPostNotes"
|
||||||
></ModalComments>
|
></ModalComments>
|
||||||
<ModalClaimCase ref="modal-claim-case"></ModalClaimCase>
|
<ModalClaimCase ref="modal-claim-case"></ModalClaimCase>
|
||||||
<ModalPauseCase ref="modal-pause-case"></ModalPauseCase>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -251,7 +250,6 @@ import MultiviewHeader from "../../components/headers/MultiviewHeader.vue";
|
|||||||
import VueCardView from "../../components/dataViews/vueCardView/VueCardView.vue";
|
import VueCardView from "../../components/dataViews/vueCardView/VueCardView.vue";
|
||||||
import VueListView from "../../components/dataViews/vueListView/VueListView.vue";
|
import VueListView from "../../components/dataViews/vueListView/VueListView.vue";
|
||||||
import defaultMixins from "./defaultMixins";
|
import defaultMixins from "./defaultMixins";
|
||||||
import ModalPauseCase from '../modal/ModalPauseCase.vue';
|
|
||||||
import ModalComments from "../modal/ModalComments.vue";
|
import ModalComments from "../modal/ModalComments.vue";
|
||||||
import { Event } from 'vue-tables-2';
|
import { Event } from 'vue-tables-2';
|
||||||
import CurrentUserCell from "../../components/vuetable/CurrentUserCell.vue";
|
import CurrentUserCell from "../../components/vuetable/CurrentUserCell.vue";
|
||||||
@@ -270,7 +268,6 @@ export default {
|
|||||||
MultiviewHeader,
|
MultiviewHeader,
|
||||||
VueCardView,
|
VueCardView,
|
||||||
VueListView,
|
VueListView,
|
||||||
ModalPauseCase,
|
|
||||||
CurrentUserCell,
|
CurrentUserCell,
|
||||||
ModalComments
|
ModalComments
|
||||||
},
|
},
|
||||||
@@ -680,14 +677,6 @@ export default {
|
|||||||
this.$refs["vueListView"].getData();
|
this.$refs["vueListView"].getData();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
|
||||||
* Show modal to pause a case
|
|
||||||
* @param {objec} data
|
|
||||||
*/
|
|
||||||
showModalPause(data) {
|
|
||||||
this.$refs["modal-pause-case"].data = data;
|
|
||||||
this.$refs["modal-pause-case"].show();
|
|
||||||
},
|
|
||||||
/**
|
/**
|
||||||
* Show options in the ellipsis
|
* Show options in the ellipsis
|
||||||
* @param {object} data
|
* @param {object} data
|
||||||
@@ -705,13 +694,6 @@ export default {
|
|||||||
that.openComments(data);
|
that.openComments(data);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
pause: {
|
|
||||||
name: "pause case",
|
|
||||||
icon: "far fa-pause-circle",
|
|
||||||
fn: function() {
|
|
||||||
that.showModalPause(data);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
claim: {
|
claim: {
|
||||||
name: "claim case",
|
name: "claim case",
|
||||||
icon: "fas fa-briefcase",
|
icon: "fas fa-briefcase",
|
||||||
|
|||||||
Reference in New Issue
Block a user