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

Attribution de notes

parent 60367944
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,7 @@ class AccessLevelHelper ...@@ -55,7 +55,7 @@ class AccessLevelHelper
{ {
$default_access_groups = self::getDefaultAccessGroups(); $default_access_groups = self::getDefaultAccessGroups();
$user_alloweds = []; $user_alloweds = [];
$user_role = 'responsable'; // formateur $user_role = 'formateur'; // formateur
$user_groups = explode(',', $user_groups); $user_groups = explode(',', $user_groups);
foreach ($default_access_groups as $group => $accesses) { foreach ($default_access_groups as $group => $accesses) {
......
...@@ -41,7 +41,7 @@ class MarkersController extends Controller ...@@ -41,7 +41,7 @@ class MarkersController extends Controller
public function getUserMarkerOnApplicant($id) public function getUserMarkerOnApplicant($id)
{ {
$marker = DB::table('marker')->where('fk_applicant_id', $id)->where('marker_owner_sciper', $this->user_sciper)->first(); $marker = DB::table('marker')->where('fk_applicant_id', $id)->where('marker_owner_sciper', $this->user_sciper)->first();
return ["marker" => $marker]; return $marker ? ["marker" => $marker] : ["marker" => ['marker_value' => null]];
} }
public function create() public function create()
......
No preview for this file type
No preview for this file type
...@@ -9,8 +9,10 @@ ...@@ -9,8 +9,10 @@
<v-rating <v-rating
color="warning" color="warning"
background-color="warning" background-color="warning"
:value="ratingValue" v-model="markerValue"
v-if="!$store.getters['moduleUser/userIsResponsible']" v-if="!$store.getters['moduleUser/userIsResponsible']"
:clearable="true"
:hover="true"
></v-rating> ></v-rating>
<v-tooltip bottom v-else> <v-tooltip bottom v-else>
<template v-slot:activator="{ on }"> <template v-slot:activator="{ on }">
...@@ -54,11 +56,17 @@ ...@@ -54,11 +56,17 @@
<script> <script>
export default { export default {
name: 'application-title', name: 'application-title',
computed: { data() {
ratingValue() { return {
return this.$store.state.moduleApplications.currentApplication.marker ? this.$store.state.moduleApplications.currentApplication.marker.marker_value : null markerValue: null
} }
}, },
created() {
this.markerValue = this.$store.state.moduleApplications.currentApplication.marker.marker_value
},
watch: {
markerValue() { this.rate() }
},
methods: { methods: {
print() { window.print() }, print() { window.print() },
contact() { window.location.href = 'mailto:' + this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_mail }, contact() { window.location.href = 'mailto:' + this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_mail },
...@@ -69,7 +77,22 @@ export default { ...@@ -69,7 +77,22 @@ export default {
} }
}, },
exportData() { this.$store.dispatch('moduleApplications/exportData', { id: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_id, name: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_name + this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_fsname }) }, exportData() { this.$store.dispatch('moduleApplications/exportData', { id: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_id, name: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_name + this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_fsname }) },
rate() { } rate() {
// Already a value => update
if (this.$store.state.moduleApplications.currentApplication.marker.marker_value) {
if (this.markerValue == 0) {
// New value is 0 => delete
this.$store.dispatch('moduleApplications/deleteMarker', { id: this.$store.state.moduleApplications.currentApplication.marker.marker_id })
} else {
// New value => update
this.$store.dispatch('moduleApplications/updateMarker', { id: this.$store.state.moduleApplications.currentApplication.marker.marker_id, applicant: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_id, value: this.markerValue })
}
} else {
// No existing value => create
this.$store.dispatch('moduleApplications/createMarker', { applicant: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_id, value: this.markerValue })
}
this.$store.dispatch('moduleApplications/getCurrentApplicationMarker', { id: this.$store.state.moduleApplications.currentApplication.application_data.personal_data.applicant_id })
}
} }
} }
</script> </script>
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
</v-card-title> </v-card-title>
<v-divider></v-divider> <v-divider></v-divider>
<v-list-tile <v-list-tile
avatar
v-for="file in $store.state.moduleApplications.currentApplication.application_data.files" v-for="file in $store.state.moduleApplications.currentApplication.application_data.files"
:key="file.file_id" :key="file.file_id"
@click="getFile(file.file_id, file.file_name)" @click="getFile(file.file_id, file.file_name)"
......
...@@ -24,23 +24,29 @@ export function getCurrentApplicationData(context, data) { ...@@ -24,23 +24,29 @@ export function getCurrentApplicationData(context, data) {
} }
export function getCurrentApplicationComments(context, data) { export function getCurrentApplicationComments(context, data) {
axios({ return new Promise((resolve) => {
method: 'get', axios({
url: '/applicant/' + data.id + '/comments' method: 'get',
}) url: '/applicant/' + data.id + '/comments'
.then(response => {
context.commit('setCurrentApplicationComments', response.data)
}) })
.then(response => {
context.commit('setCurrentApplicationComments', response.data)
resolve()
})
})
} }
export function getCurrentApplicationMarker(context, data) { export function getCurrentApplicationMarker(context, data) {
axios({ return new Promise((resolve) => {
method: 'get', axios({
url: '/applicant/' + data.id + '/marker' method: 'get',
}) url: '/applicant/' + data.id + '/marker'
.then(response => {
context.commit('setCurrentApplicationMarker', response.data.marker)
}) })
.then(response => {
context.commit('setCurrentApplicationMarker', response.data.marker)
resolve()
})
})
} }
export function getAvailableStatus(context) { export function getAvailableStatus(context) {
...@@ -104,4 +110,33 @@ function generateBlob(response, filename) { ...@@ -104,4 +110,33 @@ function generateBlob(response, filename) {
link.setAttribute('download', filename) link.setAttribute('download', filename)
document.body.appendChild(link) document.body.appendChild(link)
link.click() link.click()
}
export function createMarker(context, data) {
axios({
method: 'put',
url: '/marker',
data: {
value: data.value,
applicant_id: data.applicant
}
})
}
export function updateMarker(context, data) {
axios({
method: 'patch',
url: '/marker/' + data.id,
data: {
value: data.value,
applicant_id: data.applicant
}
})
}
export function deleteMarker(context, data) {
axios({
method: 'delete',
url: '/marker/' + data.id
})
} }
\ No newline at end of file
<template> <template>
<div id="application-view"> <div id="application-view">
<v-container fluid grid-list-sm v-if="loaded" justify-space-around> <v-container fluid grid-list-sm v-if="loaded === 3" justify-space-around>
<v-flex justify-space-around> <v-flex justify-space-around>
<ApplicationTitle></ApplicationTitle> <ApplicationTitle></ApplicationTitle>
</v-flex> </v-flex>
...@@ -55,7 +55,7 @@ export default { ...@@ -55,7 +55,7 @@ export default {
name: 'application-view', name: 'application-view',
data() { data() {
return { return {
loaded: false loaded: 0
} }
}, },
created() { this.init() }, created() { this.init() },
...@@ -64,9 +64,9 @@ export default { ...@@ -64,9 +64,9 @@ export default {
}, },
methods: { methods: {
init() { init() {
this.$store.dispatch('moduleApplications/getCurrentApplicationData', { id: this.$route.params.id }).then(() => this.loaded = true) this.$store.dispatch('moduleApplications/getCurrentApplicationData', { id: this.$route.params.id }).then(() => this.loaded++)
this.$store.dispatch('moduleApplications/getCurrentApplicationComments', { id: this.$route.params.id }) this.$store.dispatch('moduleApplications/getCurrentApplicationComments', { id: this.$route.params.id }).then(() => this.loaded++)
this.$store.dispatch('moduleApplications/getCurrentApplicationMarker', { id: this.$route.params.id }) this.$store.dispatch('moduleApplications/getCurrentApplicationMarker', { id: this.$route.params.id }).then(() => this.loaded++)
} }
}, },
components: { components: {
......
...@@ -128,7 +128,7 @@ export default { ...@@ -128,7 +128,7 @@ export default {
{ text: 'Indications', value: 'indications' }, { text: 'Indications', value: 'indications' },
{ text: 'Actions', value: 'actions', sortable: false }, { text: 'Actions', value: 'actions', sortable: false },
], ],
pagination: { 'sortBy': 'applicant_application_date', 'descending': true, 'rowsPerPage': -1 } pagination: { sortBy: 'applicant_application_date', descending: true, rowsPerPage: 25 }
} }
}, },
created() { created() {
......
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