vorstand can change group for jobkind
This commit is contained in:
parent
4af0d77584
commit
9bd854209e
|
@ -1,43 +1,62 @@
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<v-card tile :loading="jobkindsLoading">
|
<v-data-table
|
||||||
<v-card-title>
|
:items="jobkinds"
|
||||||
|
:headers="header"
|
||||||
|
:loading="jobkindsLoading || workgroupsLoading"
|
||||||
|
:search="search"
|
||||||
|
>
|
||||||
|
<template v-slot:top>
|
||||||
|
<v-toolbar flat color="white">
|
||||||
|
<v-toolbar-title>
|
||||||
Dienstarten
|
Dienstarten
|
||||||
|
</v-toolbar-title>
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
|
<v-text-field
|
||||||
|
v-model="search"
|
||||||
|
label="Suche Dienstart"
|
||||||
|
single-line
|
||||||
|
hide-details
|
||||||
|
>
|
||||||
|
<template v-slot:append>
|
||||||
|
<v-icon>{{ searchIcon }}</v-icon>
|
||||||
|
</template>
|
||||||
|
</v-text-field>
|
||||||
<v-btn fab small color="primary" @click="add()">
|
<v-btn fab small color="primary" @click="add()">
|
||||||
<v-icon>
|
<v-icon>{{ plusIcon }}</v-icon>
|
||||||
{{ plusIcon }}
|
|
||||||
</v-icon>
|
|
||||||
</v-btn>
|
</v-btn>
|
||||||
</v-card-title>
|
</v-toolbar>
|
||||||
<v-card-text>
|
</template>
|
||||||
<v-card tile v-for="jobkind in jobkinds" :key="jobkind.id">
|
<template v-slot:item.workgroup="{ item }">
|
||||||
<v-card-text class="black--text">
|
{{ item.workgroup === null ? 'Alle' : item.workgroup.name }}
|
||||||
<v-row class="ml-3 mr-3">
|
</template>
|
||||||
{{ jobkind.name }}
|
<template v-slot:item.actions="{item}">
|
||||||
<v-spacer />
|
<v-icon x-small @click="editJobKind(item)">{{editIcon}}</v-icon>
|
||||||
<v-btn icon @click="editJobKind(jobkind)">
|
<v-icon x-small @click="deleteJobKind(item)">{{deleteIcon}}</v-icon>
|
||||||
<v-icon>
|
</template>
|
||||||
{{ editIcon }}
|
</v-data-table>
|
||||||
</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
<v-btn icon @click="deleteJobKind(jobkind)">
|
|
||||||
<v-icon>
|
|
||||||
{{ deleteIcon }}
|
|
||||||
</v-icon>
|
|
||||||
</v-btn>
|
|
||||||
</v-row>
|
|
||||||
</v-card-text>
|
|
||||||
</v-card>
|
|
||||||
</v-card-text>
|
|
||||||
</v-card>
|
|
||||||
<v-dialog v-model="dialog">
|
<v-dialog v-model="dialog">
|
||||||
<v-card>
|
<v-card>
|
||||||
<v-card-title>
|
<v-card-title>
|
||||||
{{ title }}
|
{{ title }}
|
||||||
</v-card-title>
|
</v-card-title>
|
||||||
<v-card-text>
|
<v-card-text>
|
||||||
|
<v-row>
|
||||||
|
<v-col>
|
||||||
<v-text-field outlined label="Name" v-model="editedItem.name" />
|
<v-text-field outlined label="Name" v-model="editedItem.name" />
|
||||||
|
</v-col>
|
||||||
|
<v-col>
|
||||||
|
<v-autocomplete
|
||||||
|
outlined
|
||||||
|
return-object
|
||||||
|
label="Arbeitsgruppe"
|
||||||
|
v-model="editedItem.workgroup"
|
||||||
|
item-text="name"
|
||||||
|
item-value="id"
|
||||||
|
:items="[...workgroups, { id: -1, name: 'Alle' }]"
|
||||||
|
/>
|
||||||
|
</v-col>
|
||||||
|
</v-row>
|
||||||
</v-card-text>
|
</v-card-text>
|
||||||
<v-card-actions>
|
<v-card-actions>
|
||||||
<v-spacer />
|
<v-spacer />
|
||||||
|
@ -51,31 +70,52 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters, mapActions } from 'vuex'
|
import { mapGetters, mapActions } from 'vuex'
|
||||||
import { mdiPencil, mdiDelete, mdiPlus } from '@mdi/js'
|
import { mdiPencil, mdiDelete, mdiPlus, mdiMagnify } from '@mdi/js'
|
||||||
export default {
|
export default {
|
||||||
name: 'JobKindManager',
|
name: 'JobKindManager',
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
search: null,
|
||||||
editIcon: mdiPencil,
|
editIcon: mdiPencil,
|
||||||
deleteIcon: mdiDelete,
|
deleteIcon: mdiDelete,
|
||||||
plusIcon: mdiPlus,
|
plusIcon: mdiPlus,
|
||||||
|
searchIcon: mdiMagnify,
|
||||||
dialog: false,
|
dialog: false,
|
||||||
|
header: [
|
||||||
|
{ text: 'Name', value: 'name' },
|
||||||
|
{ text: 'Zugewiesene Arbeitsgruppe', value: 'workgroup' },
|
||||||
|
{
|
||||||
|
text: 'Aktionen',
|
||||||
|
value: 'actions',
|
||||||
|
filterable: false,
|
||||||
|
sortable: false
|
||||||
|
}
|
||||||
|
],
|
||||||
editedItem: {
|
editedItem: {
|
||||||
|
id: -1,
|
||||||
|
name: null,
|
||||||
|
workgroup: {
|
||||||
id: -1,
|
id: -1,
|
||||||
name: null
|
name: null
|
||||||
|
}
|
||||||
},
|
},
|
||||||
defaultItem: {
|
defaultItem: {
|
||||||
|
id: -1,
|
||||||
|
name: null,
|
||||||
|
workgroup: {
|
||||||
id: -1,
|
id: -1,
|
||||||
name: null
|
name: null
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions({
|
...mapActions({
|
||||||
getAllJobKinds: 'jkm/getAllJobKinds',
|
getAllJobKinds: 'jkm/getAllJobKinds',
|
||||||
addingJobKind: 'jkm/addJobKind',
|
addingJobKind: 'jkm/addJobKind',
|
||||||
updateJobKind: 'jkm/updateJobKind',
|
updateJobKind: 'jkm/updateJobKind',
|
||||||
deletingJobKind: 'jkm/deleteJobKind'
|
deletingJobKind: 'jkm/deleteJobKind',
|
||||||
|
getAllWorkgroups: 'wm/getAllWorkgroups'
|
||||||
}),
|
}),
|
||||||
add() {
|
add() {
|
||||||
this.dialog = true
|
this.dialog = true
|
||||||
|
@ -83,9 +123,13 @@ export default {
|
||||||
editJobKind(jobkind) {
|
editJobKind(jobkind) {
|
||||||
this.dialog = true
|
this.dialog = true
|
||||||
this.editedItem = Object.assign({}, jobkind)
|
this.editedItem = Object.assign({}, jobkind)
|
||||||
|
if (this.editedItem.workgroup === null) {
|
||||||
|
this.editedItem.workgroup = Object.assign({}, this.defaultItem.workgroup)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
deleteJobKind(jobkind) {
|
deleteJobKind(jobkind) {
|
||||||
confirm("Willst du diese Dienstart wirklich löschen") && this.deletingJobKind(jobkind)
|
confirm('Willst du diese Dienstart wirklich löschen') &&
|
||||||
|
this.deletingJobKind(jobkind)
|
||||||
this.close()
|
this.close()
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
|
@ -95,14 +139,20 @@ export default {
|
||||||
}, 200)
|
}, 200)
|
||||||
},
|
},
|
||||||
save() {
|
save() {
|
||||||
this.editedItem.id === -1 ? this.addingJobKind(this.editedItem) : this.updateJobKind(this.editedItem)
|
if (this.editedItem.workgroup.id === -1)
|
||||||
|
this.editedItem.workgroup = null
|
||||||
|
this.editedItem.id === -1
|
||||||
|
? this.addingJobKind(this.editedItem)
|
||||||
|
: this.updateJobKind(this.editedItem)
|
||||||
this.close()
|
this.close()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
jobkinds: 'jkm/jobkinds',
|
jobkinds: 'jkm/jobkinds',
|
||||||
jobkindsLoading: 'jkm/jobkindsLoading'
|
jobkindsLoading: 'jkm/jobkindsLoading',
|
||||||
|
workgroups: 'wm/workgroups',
|
||||||
|
workgroupsLoading: 'wm/workgroupLoading'
|
||||||
}),
|
}),
|
||||||
title() {
|
title() {
|
||||||
return this.editedItem.id === -1
|
return this.editedItem.id === -1
|
||||||
|
@ -112,6 +162,8 @@ export default {
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.getAllJobKinds()
|
this.getAllJobKinds()
|
||||||
|
this.getAllWorkgroups()
|
||||||
|
console.log(this.jobkinds)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -53,7 +53,8 @@
|
||||||
:items="workgroups"
|
:items="workgroups"
|
||||||
item-value="id"
|
item-value="id"
|
||||||
item-text="name"
|
item-text="name"
|
||||||
return-object></v-autocomplete>
|
return-object
|
||||||
|
></v-autocomplete>
|
||||||
</v-col>
|
</v-col>
|
||||||
</v-row>
|
</v-row>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
@ -65,7 +66,12 @@
|
||||||
</v-card-actions>
|
</v-card-actions>
|
||||||
</v-card>
|
</v-card>
|
||||||
</v-dialog>
|
</v-dialog>
|
||||||
<v-data-table :headers="header" :items="users" :search="search" :loading="usersLoading || statusLoading">
|
<v-data-table
|
||||||
|
:headers="header"
|
||||||
|
:items="users"
|
||||||
|
:search="search"
|
||||||
|
:loading="usersLoading || statusLoading"
|
||||||
|
>
|
||||||
<template v-slot:top>
|
<template v-slot:top>
|
||||||
<v-toolbar flat color="white">
|
<v-toolbar flat color="white">
|
||||||
<v-toolbar-title>Mitgliederliste</v-toolbar-title>
|
<v-toolbar-title>Mitgliederliste</v-toolbar-title>
|
||||||
|
@ -138,7 +144,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mdiPencil, mdiMagnify, } from '@mdi/js'
|
import { mdiPencil, mdiMagnify } from '@mdi/js'
|
||||||
import { mapActions, mapGetters } from 'vuex'
|
import { mapActions, mapGetters } from 'vuex'
|
||||||
export default {
|
export default {
|
||||||
name: 'UserManager',
|
name: 'UserManager',
|
||||||
|
@ -153,7 +159,7 @@ export default {
|
||||||
header: [
|
header: [
|
||||||
{ text: 'Nachname', value: 'lastname' },
|
{ text: 'Nachname', value: 'lastname' },
|
||||||
{ text: 'Vorname(n)', value: 'firstname' },
|
{ text: 'Vorname(n)', value: 'firstname' },
|
||||||
{ text: 'AG\'s', value: 'workgroups'},
|
{ text: "AG's", value: 'workgroups' },
|
||||||
{ text: 'Status', value: 'statusgroup' },
|
{ text: 'Status', value: 'statusgroup' },
|
||||||
{ text: 'Stimmrecht', value: 'voting' },
|
{ text: 'Stimmrecht', value: 'voting' },
|
||||||
{
|
{
|
||||||
|
@ -196,9 +202,8 @@ export default {
|
||||||
|
|
||||||
mounted() {
|
mounted() {
|
||||||
this.$nextTick(function() {
|
this.$nextTick(function() {
|
||||||
window.addEventListener('resize', this.getWindowWidth);
|
window.addEventListener('resize', this.getWindowWidth)
|
||||||
this.getWindowWidth()
|
this.getWindowWidth()
|
||||||
|
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -212,7 +217,7 @@ export default {
|
||||||
getAllWorkgroups: 'wm/getAllWorkgroups'
|
getAllWorkgroups: 'wm/getAllWorkgroups'
|
||||||
}),
|
}),
|
||||||
getWindowWidth() {
|
getWindowWidth() {
|
||||||
this.isFulllineText = document.documentElement.clientWidth <= 750;
|
this.isFulllineText = document.documentElement.clientWidth <= 750
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
this.editUser = false
|
this.editUser = false
|
||||||
|
@ -226,8 +231,12 @@ export default {
|
||||||
{},
|
{},
|
||||||
this.status.find(a => a.id == item.statusgroup)
|
this.status.find(a => a.id == item.statusgroup)
|
||||||
)
|
)
|
||||||
this.editedItem.voting = Object.assign({},
|
this.editedItem.voting = Object.assign(
|
||||||
item.voting ? {value: true, text: 'ja'} : {value: false, text: 'nein'})
|
{},
|
||||||
|
item.voting
|
||||||
|
? { value: true, text: 'ja' }
|
||||||
|
: { value: false, text: 'nein' }
|
||||||
|
)
|
||||||
this.clickItem(this.editedItem.statusgroup)
|
this.clickItem(this.editedItem.statusgroup)
|
||||||
this.editUser = true
|
this.editUser = true
|
||||||
},
|
},
|
||||||
|
@ -255,8 +264,14 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
save() {
|
save() {
|
||||||
this.updateStatusUser({username: this.editedItem.username, status: this.editedItem.statusgroup})
|
this.updateStatusUser({
|
||||||
this.updateVoting({username: this.editedItem.username, voting: this.editedItem.voting.value})
|
username: this.editedItem.username,
|
||||||
|
status: this.editedItem.statusgroup
|
||||||
|
})
|
||||||
|
this.updateVoting({
|
||||||
|
username: this.editedItem.username,
|
||||||
|
voting: this.editedItem.voting.value
|
||||||
|
})
|
||||||
this.updateWorkgroups(this.editedItem)
|
this.updateWorkgroups(this.editedItem)
|
||||||
this.close()
|
this.close()
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,6 +18,7 @@ const mutations = {
|
||||||
console.log(exists)
|
console.log(exists)
|
||||||
if (exists) {
|
if (exists) {
|
||||||
exists.name = jobkind.name
|
exists.name = jobkind.name
|
||||||
|
exists.workgroup = jobkind.workgroup
|
||||||
} else {
|
} else {
|
||||||
state.jobkinds.push(jobkind)
|
state.jobkinds.push(jobkind)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue