Skip to content
Snippets Groups Projects
Commit cd9d56d5 authored by nicrausaz's avatar nicrausaz
Browse files

Nouvelles candidatures

parent fb75fa3c
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ class AccessLevelHelper
{
$default_access_groups = self::getDefaultAccessGroups();
$user_alloweds = [];
$user_role = 'formateur'; // formateur
$user_role = 'responsable'; // formateur
$user_groups = explode(',', $user_groups);
foreach ($default_access_groups as $group => $accesses) {
......
No preview for this file type
This diff is collapsed.
......@@ -8,20 +8,19 @@
<v-list-tile
v-for="file in $store.state.moduleApplications.currentApplication.application_data.files"
:key="file.file_id"
@click="getFile(file.file_id, file.file_name)"
>
<v-list-tile-avatar>
<img src="@/assets/logo_pdf.png" height="75px">
<img src="@/assets/logo_pdf.png" height="75px" @click="getFile(file.file_id, file.file_name)" style="cursor: pointer;">
</v-list-tile-avatar>
<v-list-tile-content>
<v-list-tile-title>
<a>
<a @click="getFile(file.file_id, file.file_name)">
<u>{{ file.file_name }}</u>
</a>
</v-list-tile-title>
</v-list-tile-content>
<v-list-tile-action>
<v-btn icon ripple>
<v-btn icon ripple @click="getFile(file.file_id, file.file_name)">
<v-icon color="grey">cloud_download</v-icon>
</v-btn>
</v-list-tile-action>
......
......@@ -11,6 +11,7 @@ instance.interceptors.response.use(function (response) {
}, function (error) {
if (!error.response) {
store.commit('moduleSnackbar/toggle', { open: true, message: 'API non atteignable', type: 'warning' }, { root: true })
store.dispatch('moduleUser/logout', false)
} else if (error.response.status == 400 || error.response.status == 401) {
// Erreur de token
store.commit('moduleSnackbar/toggle', { open: true, message: error.response.data.error, type: 'warning' }, { root: true })
......
......@@ -26,4 +26,12 @@ export function getFormatedApplicationUpdateDate(state) {
} else {
return null
}
}
\ No newline at end of file
}
export function getResponsibleNewApplications(state) {
return state.applications.filter(x => x.fk_status == 'Nouveau')
}
// export function getFormateurNewApplication(state) {
// }
\ No newline at end of file
......@@ -85,7 +85,6 @@
></v-select>
<span v-else>{{props.item.fk_status}}</span>
</td>
<td></td>
<td>
<v-tooltip bottom class="mr-2">
<template v-slot:activator="{ on }">
......@@ -125,7 +124,6 @@ export default {
{ text: 'Fin de scolarité', value: 'applicant_scolarity_end' },
{ text: 'Date postulation', value: 'applicant_application_date' },
{ text: 'Statut', value: 'fk_status' },
{ text: 'Indications', value: 'indications' },
{ text: 'Actions', value: 'actions', sortable: false },
],
pagination: { sortBy: 'applicant_application_date', descending: true, rowsPerPage: 25 }
......
<template>
<div id="home-view">
<h1>Accueil</h1>
Accueil: statistiques
Dernière connexion le: {{lastLogin}}
<v-container id="grid" fluid grid-list-sm tag="section">
<v-layout row wrap>
<v-flex d-flex xs12 order-xs5>
<v-layout column>
<v-flex>
<v-card flat>
<h2>{{this.$store.getters['moduleApplications/getResponsibleNewApplications'].length}} nouvelles candidatures à traiter</h2>
Voir: <router-link to="applications">lien</router-link>
</v-card>
</v-flex>
<v-flex>
<v-card flat>
<v-card-text>test</v-card-text>
</v-card>
</v-flex>
</v-layout>
</v-flex>
</v-layout>
</v-container>
</div>
</template>
<script>
export default {
name: 'home-view',
created() {
this.$store.dispatch('moduleApplications/getApplications')
},
computed: {
lastLogin() { return localStorage.getItem('last_login') }
}
}
</script>
<style>
</style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment