@@ -107,7 +108,8 @@
-
+
@@ -127,15 +129,16 @@ import DialogSuppression from '@/components/Dialog/DialogSuppression.vue';
import DialogCommentaire from '@/components/Dialog/DialogCommentaire.vue';
import MenuDownloadFile from '@/components/MenuDownloadFile.vue';
import moment from 'moment/moment';
-import {useAuthStore} from "@/store/authStore";
-import BtnStop from "@/components/Supp/BtnStop.vue";
+import { useAuthStore } from '@/store/authStore';
+import BtnStop from '@/components/Supp/BtnStop.vue';
import itemService from "@/service/ItemService";
//Emit
const emit = defineEmits(['backendError', 'backendSuccess']);
//Data
-const isAdmin = useAuthStore().isAdmin();
+const isAdmin = useAuthStore()
+ .isAdmin();
const extendedAllILN = ref(false);
const headingsDemandes = [
{
@@ -228,7 +231,7 @@ const headingsDemandes = [
];
const filteredHeadingsDemandes = computed(() =>
headingsDemandes.filter(heading => heading.display !== false)
-)
+);
const listStatut = [
'En saisie',
@@ -359,7 +362,7 @@ function canCancel(item) {
}
function canStop(item) {
- return item.etatDemande === 'En cours de traitement' || item.etatDemande === 'En attente'
+ return item.etatDemande === 'En cours de traitement' || item.etatDemande === 'En attente';
}
//Suppression d'une demande
|