Compare commits
2 Commits
091cee308a
...
6a0b0b9c6e
Author | SHA1 | Date | |
---|---|---|---|
6a0b0b9c6e | |||
5e241dadb8 |
@ -1,21 +1,47 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<div id="create-month" >
|
||||||
<div class="month-presentation" id="new-month">
|
<div class="month-presentation" id="new-month">
|
||||||
<div class="date">
|
<div class="date">
|
||||||
<input type="month" v-model="monthDate">
|
<input type="month" v-model="monthDate">
|
||||||
</div>
|
</div>
|
||||||
<div class="infos">
|
<div class="datas">
|
||||||
<month-form></month-form>
|
<ul>
|
||||||
|
<li>
|
||||||
|
<label for="ca-theo">CA théorique</label>
|
||||||
|
<input type="number" v-model="monthCopy.ca_theo" id="ca-theo" class="value" >
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="ca-retro">CA rétrocession</label>
|
||||||
|
<input type="number" v-model="monthCopy.ca_retro" id="ca-retro" class="value" >
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="ca-react">CA réactualisé</label>
|
||||||
|
<input type="number" v-model="monthCopy.ca_react" id="ca-react" class="value" >
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="nbr-seances">Nombre de séances effectuées</label>
|
||||||
|
<input type="number" v-model="monthCopy.nbr_seances" id="nbr-seances" class="value" >
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="retro">Montant de la rétrocession</label>
|
||||||
|
<input type="number" v-model="monthCopy.retro" id="retro" class="value" >
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="remumeration">Rémunération effectuée</label>
|
||||||
|
<input type="number" v-model="monthCopy.remumeration" id="remumeration" class="value">
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button class="validate"> Valider </button>
|
<button class="validate" @click="save"> Valider </button>
|
||||||
<button class="cancel"> Annuler </button>
|
<button class="cancel" @click="cancel"> Annuler </button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import MonthForm from "./MonthForm"
|
import { mapGetters, mapActions } from 'vuex'
|
||||||
|
|
||||||
const today = new Date();
|
const today = new Date();
|
||||||
function formatDate(date) {
|
function formatDate(date) {
|
||||||
var y = ''+date.getFullYear()
|
var y = ''+date.getFullYear()
|
||||||
@ -29,14 +55,33 @@ export default {
|
|||||||
props: {
|
props: {
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
MonthForm: MonthForm,
|
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
monthDate: formatDate(today),
|
monthDate: formatDate(today),
|
||||||
|
monthCopy: Object,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mounted () {
|
||||||
|
this.monthCopy = this.theEmptyMonth
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
...mapGetters('travail', {
|
||||||
|
'theEmptyMonth': 'TheEmptyMonth',
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
...mapActions('travail', {
|
||||||
|
'createMonth': 'createMonth',
|
||||||
|
}),
|
||||||
|
save: function () {
|
||||||
|
console.log("save")
|
||||||
|
console.log(this.monthCopy)
|
||||||
|
this.createMonth({date: this.monthDate, month: this.monthCopy})
|
||||||
|
},
|
||||||
|
cancel: function () {
|
||||||
|
this.monthCopy = this.theEmptyMonth
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -55,8 +100,31 @@ export default {
|
|||||||
.month-presentation > * {
|
.month-presentation > * {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
.date > input {
|
|
||||||
width: 150px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
.date > input {
|
||||||
|
font-size: 1.2em;
|
||||||
|
font-weight: bold;
|
||||||
|
display: inline-flex;
|
||||||
|
width: 6rem;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-content: flex-start;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin: 3px;
|
||||||
|
width: 30%;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
.value {
|
||||||
|
font-size: 1.5em;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -34,6 +34,7 @@ import { mapGetters } from 'vuex'
|
|||||||
export default {
|
export default {
|
||||||
name: 'MonthForm',
|
name: 'MonthForm',
|
||||||
props: {
|
props: {
|
||||||
|
editMonth: {}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
|
@ -1,34 +1,87 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="month-presentation">
|
<div class="month-presentation">
|
||||||
<div class="date">
|
<div class="date">
|
||||||
{{ month.date }}
|
{{ TheDate }}
|
||||||
</div>
|
</div>
|
||||||
<div class="infos">
|
<div id="display">
|
||||||
<ul>
|
<ul>
|
||||||
<li> <span class="label"> CA théorique </span> <span class="value">{{ month.ca_theo ?? "∅"}}€</span></li>
|
<li>
|
||||||
<li> <span class="label"> CA à la rétrocession </span> <span class="value">{{ month.ca_retro ?? "∅"}}€</span></li>
|
<label for="ca-theo">CA théorique</label>
|
||||||
<li> <span class="label"> CA réactualisé </span> <span class="value">{{ month.ca_react ?? "∅"}}€</span></li>
|
<span class="value" v-show="!editing">{{ TheMonth.ca_theo ?? "∅"}}€</span>
|
||||||
<li> <span class="label"> Nombre de séances effectuée</span> <span class="value">{{ month.nbr_seances ?? "∅"}}</span></li>
|
<input type="number" v-model="monthCopy.ca_theo" id="ca-theo" class="value" v-show="editing">
|
||||||
<li> <span class="label"> Montant de la rétrocession </span> <span class="value">{{ month.retro ?? "∅"}}€</span></li>
|
</li>
|
||||||
<li> <span class="label"> Rémunération effectuée </span> <span class="value">{{ month.remumeration ?? "∅"}}€</span></li>
|
<li>
|
||||||
|
<label for="ca-retro">CA rétrocession</label>
|
||||||
|
<span class="value" v-show="!editing">{{ TheMonth.ca_retro ?? "∅"}}€</span>
|
||||||
|
<input type="number" v-model="monthCopy.ca_retro" id="ca-retro" class="value" v-show="editing">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="ca-react">CA réactualisé</label>
|
||||||
|
<span class="value" v-show="!editing">{{ TheMonth.ca_react ?? "∅"}}€</span>
|
||||||
|
<input type="number" v-model="monthCopy.ca_react" id="ca-react" class="value" v-show="editing">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="nbr-seances">Nombre de séances effectuées</label>
|
||||||
|
<span class="value" v-show="!editing">{{ TheMonth.nbr_seances ?? "∅"}}</span>
|
||||||
|
<input type="number" v-model="monthCopy.nbr_seances" id="nbr-seances" class="value" v-show="editing">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="retro">Montant de la rétrocession</label>
|
||||||
|
<span class="value" v-show="!editing">{{ TheMonth.retro ?? "∅"}}€</span>
|
||||||
|
<input type="number" v-model="monthCopy.retro" id="retro" class="value" v-show="editing">
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<label for="remumeration">Rémunération effectuée</label>
|
||||||
|
<span class="value" v-show="!editing">{{ TheMonth.remumeration ?? "∅"}}€</span>
|
||||||
|
<input type="number" v-model="monthCopy.remumeration" id="remumeration" class="value" v-show="editing">
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="actions">
|
<div class="actions">
|
||||||
<button class="edit"> Éditer </button>
|
<button class="edit" @click="toggleEdit" v-show="!editing"> Éditer </button>
|
||||||
|
<button class="validate" @click="save" v-show="editing"> Valider </button>
|
||||||
|
<button class="cancel" @click="cancel" v-show="editing"> Annuler </button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { mapActions } from 'vuex'
|
||||||
export default {
|
export default {
|
||||||
name: 'MonthPresentation',
|
name: 'MonthPresentation',
|
||||||
props: {
|
props: {
|
||||||
month: {
|
TheDate: String,
|
||||||
|
TheMonth: {
|
||||||
type: Object,
|
type: Object,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
editing: false,
|
||||||
|
monthCopy: Object,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted: function () {
|
||||||
|
this.monthCopy = {...this.TheMonth}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
},
|
},
|
||||||
|
methods: {
|
||||||
|
...mapActions('travail', {
|
||||||
|
'updateMonth': 'updateMonth',
|
||||||
|
}),
|
||||||
|
toggleEdit: function () {
|
||||||
|
this.editing = !this.editing
|
||||||
|
},
|
||||||
|
save: function () {
|
||||||
|
this.updateMonth({date: this.TheDate, month: this.monthCopy})
|
||||||
|
this.toggleEdit()
|
||||||
|
},
|
||||||
|
cancel: function () {
|
||||||
|
this.monthCopy = {...this.TheMonth}
|
||||||
|
this.toggleEdit()
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -69,4 +122,7 @@ li {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.novisible {
|
||||||
|
display: None;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<ul>
|
<ul>
|
||||||
<li v-for="month in months" :key="month.date">
|
<li v-for="date in dates" :key="date">
|
||||||
<month-presentation :month=month></month-presentation>
|
<month-presentation :TheDate=date :TheMonth=getMonth(date)></month-presentation>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
@ -19,7 +19,8 @@ export default {
|
|||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
...mapGetters({
|
...mapGetters({
|
||||||
months: "travail/Months",
|
dates: "travail/MonthsDate",
|
||||||
|
getMonth: "travail/getMonth",
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -3,81 +3,102 @@ const travail = {
|
|||||||
state () {
|
state () {
|
||||||
return {
|
return {
|
||||||
empty: {
|
empty: {
|
||||||
date: "",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: null, // ca au moment de la rétrocession
|
ca_retro: null, // ca au moment de la rétrocession
|
||||||
ca_react: null, // ca réactualisé
|
ca_react: null, // ca réactualisé
|
||||||
retro: 0, // montant de la rétrocession
|
retro: 0, // montant de la rétrocession
|
||||||
remumeration: 0, // rémunération décidée
|
remumeration: 0, // rémunération décidée
|
||||||
},
|
},
|
||||||
months: [
|
months: {
|
||||||
{
|
"2021-01": {
|
||||||
date: "2021/01",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 6747, // ca au moment de la rétrocession
|
ca_retro: 6747, // ca au moment de la rétrocession
|
||||||
ca_react: null, // ca réactualisé
|
ca_react: null, // ca réactualisé
|
||||||
retro: 893, // montant de la rétrocession
|
retro: 893, // montant de la rétrocession
|
||||||
remumeration: 2000, // rémunération décidée
|
remumeration: 2000, // rémunération décidée
|
||||||
},
|
},
|
||||||
{
|
"2021-02": {
|
||||||
date: "2021/02",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 5183, // ca au moment de la rétrocession
|
ca_retro: 5183, // ca au moment de la rétrocession
|
||||||
ca_react: null, // ca réactualisé
|
ca_react: null, // ca réactualisé
|
||||||
retro: 665, // montant de la rétrocession
|
retro: 665, // montant de la rétrocession
|
||||||
remumeration: 1500, // rémunération décidée
|
remumeration: 1500, // rémunération décidée
|
||||||
},
|
},
|
||||||
{
|
"2021-03": {
|
||||||
date: "2021/03",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 7088, // ca au moment de la rétrocession
|
ca_retro: 7088, // ca au moment de la rétrocession
|
||||||
ca_react: null, // ca réactualisé
|
ca_react: null, // ca réactualisé
|
||||||
retro: 855, // montant de la rétrocession
|
retro: 855, // montant de la rétrocession
|
||||||
remumeration: 2000, // rémunération décidée
|
remumeration: 2000, // rémunération décidée
|
||||||
},
|
},
|
||||||
{
|
"2021-04": {
|
||||||
date: "2021/04",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 4194, // ca au moment de la rétrocession
|
ca_retro: 4194, // ca au moment de la rétrocession
|
||||||
ca_react: 5630, // ca réactualisé
|
ca_react: 5630, // ca réactualisé
|
||||||
retro: 627, // montant de la rétrocession
|
retro: 627, // montant de la rétrocession
|
||||||
remumeration: 2000, // rémunération décidée
|
remumeration: 2000, // rémunération décidée
|
||||||
},
|
},
|
||||||
{
|
"2021-05": {
|
||||||
date: "2021/05",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 5564, // ca au moment de la rétrocession
|
ca_retro: 5564, // ca au moment de la rétrocession
|
||||||
ca_react: 6335, // ca réactualisé
|
ca_react: 6335, // ca réactualisé
|
||||||
retro: 699, // montant de la rétrocession
|
retro: 699, // montant de la rétrocession
|
||||||
remumeration: 2800, // rémunération décidée
|
remumeration: 2800, // rémunération décidée
|
||||||
},
|
},
|
||||||
{
|
"2021-06": {
|
||||||
date: "2021/06",
|
|
||||||
ca_theo: null, // ca théorique basé sur les séances effectuées
|
ca_theo: null, // ca théorique basé sur les séances effectuées
|
||||||
nbr_seances: 0, // Nombre de séances effectuées sur le mois
|
nbr_seances: null, // Nombre de séances effectuées sur le mois
|
||||||
ca_retro: 5442, // ca au moment de la rétrocession
|
ca_retro: 5442, // ca au moment de la rétrocession
|
||||||
ca_react: 6335, // ca réactualisé
|
ca_react: 6335, // ca réactualisé
|
||||||
retro: 638, // montant de la rétrocession
|
retro: 638, // montant de la rétrocession
|
||||||
remumeration: 2800, // rémunération décidée
|
remumeration: 2800, // rémunération décidée
|
||||||
},
|
},
|
||||||
],
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getters: {
|
getters: {
|
||||||
cCount (state) {return state.months.length},
|
Count (state) {return state.months.length},
|
||||||
TheEmptyMonth (state) {return state.empty},
|
TheEmptyMonth (state) {return {...state.empty}},
|
||||||
Months (state) {
|
MonthsDate (state) {
|
||||||
return state.months.sort((a, b) => new Date(b.date) - new Date(a.date))
|
return Object.keys(state.months).sort()
|
||||||
|
//return state.months.sort((a, b) => new Date(b.date) - new Date(a.date))
|
||||||
|
},
|
||||||
|
getMonth: (state) => (date) => {
|
||||||
|
return state.months[date]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mutations: {
|
mutations: {
|
||||||
|
updateMonth (state, {date, month}) {
|
||||||
|
state.months[date] = month
|
||||||
|
},
|
||||||
|
createMonth (state, {date, month}) {
|
||||||
|
state.months[date] = month
|
||||||
|
},
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
updateMonth (context, {date, month}) {
|
||||||
|
if (date in context.state.months) {
|
||||||
|
context.commit('updateMonth', {date, month})
|
||||||
|
} else {
|
||||||
|
console.log("This month does not exists")
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
createMonth (context, {date, month}) {
|
||||||
|
if (!(date in context.state.months)) {
|
||||||
|
console.log(date)
|
||||||
|
context.commit('createMonth', {date, month})
|
||||||
|
console.log(context.state.months)
|
||||||
|
} else {
|
||||||
|
console.log("This month already exists")
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export default travail
|
export default travail
|
||||||
|
Loading…
Reference in New Issue
Block a user