Compare commits
11 Commits
e7eb6f87b1
...
a61fe7e10c
Author | SHA1 | Date | |
---|---|---|---|
a61fe7e10c | |||
2212ff4afe | |||
ed90959687 | |||
deb5a61add | |||
e082bf7164 | |||
803c695909 | |||
c2cc0d0e9c | |||
52c627c4f4 | |||
43e29653ba | |||
9328e2c821 | |||
a092549c15 |
@ -0,0 +1,5 @@
|
|||||||
|
"eslint.validate": [
|
||||||
|
"javascript",
|
||||||
|
"javascriptreact",
|
||||||
|
"vue"
|
||||||
|
]
|
@ -95,7 +95,8 @@ export default {
|
|||||||
.month-presentation {
|
.month-presentation {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
background-color: palegreen;
|
box-shadow: 5px 5px 10px gray;
|
||||||
|
border-left: 1rem solid green;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -1,7 +1,17 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="month-presentation">
|
<div class="boxed month-presentation">
|
||||||
<div class="date">
|
<div class="date">
|
||||||
{{ TheDate }}
|
<div class="month">
|
||||||
|
{{ theMonth }}
|
||||||
|
</div>
|
||||||
|
<div class="year">
|
||||||
|
{{ theYear }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button class="edit" @click="toggleEdit" v-show="!editing"> Mettre à jour </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 id="display">
|
<div id="display">
|
||||||
<ul>
|
<ul>
|
||||||
@ -37,16 +47,12 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="actions">
|
|
||||||
<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>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapActions } from 'vuex'
|
import { mapActions } from 'vuex'
|
||||||
|
import { parseISO, format } from 'date-fns'
|
||||||
export default {
|
export default {
|
||||||
name: 'MonthPresentation',
|
name: 'MonthPresentation',
|
||||||
props: {
|
props: {
|
||||||
@ -65,6 +71,15 @@ export default {
|
|||||||
this.monthCopy = {...this.TheMonth}
|
this.monthCopy = {...this.TheMonth}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
rawDate: function () {
|
||||||
|
return parseISO(this.TheDate, "yyyy-MM", new Date())
|
||||||
|
},
|
||||||
|
theMonth: function () {
|
||||||
|
return format(this.rawDate, "MMM", )
|
||||||
|
},
|
||||||
|
theYear: function () {
|
||||||
|
return format(this.rawDate, "YYY", )
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions('travail', {
|
...mapActions('travail', {
|
||||||
@ -92,21 +107,26 @@ export default {
|
|||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.month-presentation {
|
.month-presentation {
|
||||||
|
/*
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
background-color: mintcream;
|
*/
|
||||||
align-items: center;
|
display: grid;
|
||||||
justify-content: space-between;
|
grid-template-columns: 140px 6fr;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 10px;
|
|
||||||
}
|
}
|
||||||
.month-presentation > * {
|
.month-presentation > * {
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
font-size: 1.5em;
|
font-size: 1em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
border-right: 1px solid black;
|
||||||
|
}
|
||||||
|
.month{
|
||||||
|
font-size: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
ul {
|
ul {
|
||||||
@ -129,4 +149,11 @@ export default {
|
|||||||
.novisible {
|
.novisible {
|
||||||
display: None;
|
display: None;
|
||||||
}
|
}
|
||||||
|
button {
|
||||||
|
margin-top: 5px;
|
||||||
|
padding: 4px;
|
||||||
|
font-size: 0.8em;
|
||||||
|
width: auto;
|
||||||
|
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
86
src/components/caOnPeriod.vue
Normal file
86
src/components/caOnPeriod.vue
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
<template>
|
||||||
|
<div class="hightlights">
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ ca }} €</li>
|
||||||
|
<li>CA</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ remuneration }} €</li>
|
||||||
|
<li>Rémunération</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ caPersoUntouch }} €</li>
|
||||||
|
<li>13e mois</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<revenus-chart/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import { caTotal,
|
||||||
|
caMean,
|
||||||
|
remuneration,
|
||||||
|
caPersoUntouch
|
||||||
|
} from '../lib/months'
|
||||||
|
import RevenusChart from '../components/graphs/RevenusChart.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'caOnPeriod',
|
||||||
|
components: {
|
||||||
|
RevenusChart: RevenusChart,
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters('config', {
|
||||||
|
caProPercentage: 'caProPercentage',
|
||||||
|
}),
|
||||||
|
...mapGetters('travail', {
|
||||||
|
months: "months",
|
||||||
|
}),
|
||||||
|
ca: function () {return caTotal(this.months).toLocaleString()},
|
||||||
|
caMean: function () {return caMean(this.months).toLocaleString()},
|
||||||
|
remuneration: function () {return remuneration(this.months).toLocaleString()},
|
||||||
|
caPersoUntouch: function () {return caPersoUntouch(this.months, this.caProPercentage).toLocaleString()},
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.hightlights {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-gap: 20px;
|
||||||
|
}
|
||||||
|
.hightlight > ul{
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column wrap;
|
||||||
|
padding-inline-start: 0;
|
||||||
|
}
|
||||||
|
.hightlight > ul > li {
|
||||||
|
margin: 5px;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
.hightlight > ul :first-child{
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.hightlight > ul :last-child{
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
|
</style>
|
66
src/components/caRepartition.vue
Normal file
66
src/components/caRepartition.vue
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
<template>
|
||||||
|
<div class="hightlights">
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ caTheo }} €</li>
|
||||||
|
<li>CA "séances effectuées"</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ notInvoiced }} €</li>
|
||||||
|
<li>Non facturé</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="hightlight boxed">
|
||||||
|
<ul>
|
||||||
|
<li>{{ retrocession }} €</li>
|
||||||
|
<li>Rétrocession</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<repartition-chart/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import {
|
||||||
|
caTheo,
|
||||||
|
notInvoiced,
|
||||||
|
retrocession,
|
||||||
|
} from '../lib/months'
|
||||||
|
import RepartitionChart from './graphs/RepartitionChart.vue'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'caRepartition',
|
||||||
|
components: {
|
||||||
|
RepartitionChart: RepartitionChart,
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters('config', {
|
||||||
|
caProPercentage: 'caProPercentage',
|
||||||
|
}),
|
||||||
|
...mapGetters('travail', {
|
||||||
|
months: "months",
|
||||||
|
}),
|
||||||
|
caTheo: function () {return caTheo(this.months).toLocaleString()},
|
||||||
|
notInvoiced: function () {return notInvoiced(this.months).toLocaleString()},
|
||||||
|
retrocession: function () {return retrocession(this.months).toLocaleString()},
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.hightlights{
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
69
src/components/graphs/RepartitionChart.vue
Normal file
69
src/components/graphs/RepartitionChart.vue
Normal file
@ -0,0 +1,69 @@
|
|||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<canvas id="repartition-chart"></canvas>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Chart from 'chart.js'
|
||||||
|
import { mapGetters } from 'vuex'
|
||||||
|
import {
|
||||||
|
notInvoiced,
|
||||||
|
caPro,
|
||||||
|
remuneration,
|
||||||
|
retrocession,
|
||||||
|
caPersoUntouch,
|
||||||
|
} from '../../lib/months'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'RepartitionChart',
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
months: function () {
|
||||||
|
const ctx = document.getElementById('repartition-chart');
|
||||||
|
new Chart(ctx, this.graphDatas);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters('config', {
|
||||||
|
caProPercentage: 'caProPercentage',
|
||||||
|
}),
|
||||||
|
...mapGetters('travail', {
|
||||||
|
months: "months",
|
||||||
|
}),
|
||||||
|
graphDatas: function () {
|
||||||
|
var datas = {
|
||||||
|
type: "pie",
|
||||||
|
data: {
|
||||||
|
labels: ['Partie pro', 'Non facturé', 'Retrocession', 'Salaire', '13e mois'],
|
||||||
|
datasets: [
|
||||||
|
{
|
||||||
|
label: "Difference CA perso et remuneration",
|
||||||
|
data: [
|
||||||
|
caPro(this.months, this.caProPercentage),
|
||||||
|
notInvoiced(this.months),
|
||||||
|
retrocession(this.months),
|
||||||
|
remuneration(this.months),
|
||||||
|
caPersoUntouch(this.months, this.caProPercentage),
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
options: {
|
||||||
|
legend: {position: 'right'},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return datas
|
||||||
|
},
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
const ctx = document.getElementById('repartition-chart');
|
||||||
|
new Chart(ctx, this.graphDatas);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
@ -1,68 +1,72 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="hightlights">
|
<div class="hightlights">
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ ca }}</li>
|
<li>{{ ca }} €</li>
|
||||||
<li>CA</li>
|
<li>CA</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caMean }}</li>
|
<li>{{ caMean }} €</li>
|
||||||
<li>CA moyen</li>
|
<li>CA moyen</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<!--
|
||||||
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caTheo }}</li>
|
<li>{{ caTheo }}</li>
|
||||||
<li>CA des séances effectuées</li>
|
<li>CA des séances effectuées</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
-->
|
||||||
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caTheo - ca }}</li>
|
<li>{{ caUnFactured }} €</li>
|
||||||
<li>Non facturé</li>
|
<li>Non facturé</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ remuneration }}</li>
|
<li>{{ remuneration }} €</li>
|
||||||
<li>Rémunération</li>
|
<li>Rémunération</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ remunerationMean }}</li>
|
<li>{{ remunerationMean }} €</li>
|
||||||
<li>Rémunération moyenne</li>
|
<li>Rémunération moyenne</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<!--
|
||||||
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ retrocession }}</li>
|
<li>{{ retrocession }}</li>
|
||||||
<li>Rétrocession</li>
|
<li>Rétrocession</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ retrocessionMean }}</li>
|
<li>{{ retrocessionMean }}</li>
|
||||||
<li>Rétrocession moyenne</li>
|
<li>Rétrocession moyenne</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caPro }}</li>
|
<li>{{ caPro }}</li>
|
||||||
<li> CA pour la partie pro ({{ caProPercentage*100}}% du CA)</li>
|
<li> CA pour la partie pro ({{ caProPercentage*100}}% du CA)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caPerso }}</li>
|
<li>{{ caPerso }}</li>
|
||||||
<li> CA pour la partie perso</li>
|
<li> CA pour la partie perso</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="hightlight">
|
-->
|
||||||
|
<div class="hightlight boxed">
|
||||||
<ul>
|
<ul>
|
||||||
<li>{{ caPersoUntouch }}</li>
|
<li>{{ caPersoUntouch }} €</li>
|
||||||
<li> CA perso non utilisé pour se rémunérer</li>
|
<li> CA perso non utilisé pour se rémunérer</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -97,16 +101,17 @@ export default {
|
|||||||
...mapGetters('travail', {
|
...mapGetters('travail', {
|
||||||
months: "months",
|
months: "months",
|
||||||
}),
|
}),
|
||||||
ca: function () {return caTotal(this.months)},
|
ca: function () {return caTotal(this.months).toLocaleString()},
|
||||||
caMean: function () {return caMean(this.months)},
|
caMean: function () {return caMean(this.months).toLocaleString()},
|
||||||
caTheo: function () {return caTheo(this.months)},
|
caTheo: function () {return caTheo(this.months).toLocaleString()},
|
||||||
remuneration: function () {return remuneration(this.months)},
|
caUnFactured: function () {return (caTheo(this.months) - caTotal(this.months)).toLocaleString()},
|
||||||
remunerationMean: function () {return remunerationMean(this.months)},
|
remuneration: function () {return remuneration(this.months).toLocaleString()},
|
||||||
retrocession: function () {return retrocession(this.months)},
|
remunerationMean: function () {return remunerationMean(this.months).toLocaleString()},
|
||||||
retrocessionMean: function () {return retrocessionMean(this.months)},
|
retrocession: function () {return retrocession(this.months).toLocaleString()},
|
||||||
caPro: function () {return caPro(this.months, this.caProPercentage)},
|
retrocessionMean: function () {return retrocessionMean(this.months).toLocaleString()},
|
||||||
caPerso: function () {return caPerso(this.months, this.caProPercentage)},
|
caPro: function () {return caPro(this.months, this.caProPercentage).toLocaleString()},
|
||||||
caPersoUntouch: function () {return caPersoUntouch(this.months, this.caProPercentage)},
|
caPerso: function () {return caPerso(this.months, this.caProPercentage).toLocaleString()},
|
||||||
|
caPersoUntouch: function () {return caPersoUntouch(this.months, this.caProPercentage).toLocaleString()},
|
||||||
|
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
@ -117,4 +122,27 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
.hightlights {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-gap: 20px;
|
||||||
|
}
|
||||||
|
.hightlight > ul{
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column wrap;
|
||||||
|
padding-inline-start: 0;
|
||||||
|
}
|
||||||
|
.hightlight > ul > li {
|
||||||
|
margin: 5px;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
.hightlight > ul :first-child{
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.hightlight > ul :last-child{
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
|
<h1>Sous Margot</h1>
|
||||||
|
<!--
|
||||||
<nav>
|
<nav>
|
||||||
<router-link to="/"> Home </router-link>
|
<router-link to="/"> Home </router-link>
|
||||||
<router-link to="/config"> Config </router-link>
|
<router-link to="/config"> Config </router-link>
|
||||||
</nav>
|
</nav>
|
||||||
|
-->
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -15,7 +18,4 @@ export default {
|
|||||||
|
|
||||||
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
<!-- Add "scoped" attribute to limit CSS to this component only -->
|
||||||
<style scoped>
|
<style scoped>
|
||||||
nav {
|
|
||||||
background-color: green;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
@ -22,10 +22,10 @@ export function caTotal (months) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function caMean (months) {
|
export function caMean (months) {
|
||||||
return caTotal(months) / count(months)
|
// Mean of CA
|
||||||
|
return Math.floor(caTotal(months) / count(months))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export function caTheo (months) {
|
export function caTheo (months) {
|
||||||
// Total theorical CA
|
// Total theorical CA
|
||||||
return Object.values(months).map(a => a.ca_theo).reduce(
|
return Object.values(months).map(a => a.ca_theo).reduce(
|
||||||
@ -34,6 +34,11 @@ export function caTheo (months) {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function notInvoiced (months) {
|
||||||
|
// Total of not invoiced sessions
|
||||||
|
return caTheo(months) - caTotal(months)
|
||||||
|
}
|
||||||
|
|
||||||
export function remuneration (months) {
|
export function remuneration (months) {
|
||||||
// Total remuneration
|
// Total remuneration
|
||||||
return Object.values(months).map(a => a.remuneration).reduce(
|
return Object.values(months).map(a => a.remuneration).reduce(
|
||||||
|
@ -15,54 +15,54 @@ const travail = {
|
|||||||
remuneration: 0, // rémunération décidée
|
remuneration: 0, // rémunération décidée
|
||||||
},
|
},
|
||||||
months: {
|
months: {
|
||||||
"2021-01": {
|
// "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: null, // 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
|
||||||
remuneration: 2000, // rémunération décidée
|
// remuneration: 2000, // rémunération décidée
|
||||||
},
|
// },
|
||||||
"2021-02": {
|
// "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: null, // 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
|
||||||
remuneration: 1500, // rémunération décidée
|
// remuneration: 1500, // rémunération décidée
|
||||||
},
|
// },
|
||||||
"2021-03": {
|
// "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: null, // 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
|
||||||
remuneration: 2000, // rémunération décidée
|
// remuneration: 2000, // rémunération décidée
|
||||||
},
|
// },
|
||||||
"2021-04": {
|
// "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: null, // 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
|
||||||
remuneration: 2000, // rémunération décidée
|
// remuneration: 2000, // rémunération décidée
|
||||||
},
|
// },
|
||||||
"2021-05": {
|
// "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: null, // 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
|
||||||
remuneration: 2800, // rémunération décidée
|
// remuneration: 2800, // rémunération décidée
|
||||||
},
|
// },
|
||||||
"2021-06": {
|
// "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: null, // 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
|
||||||
remuneration: 2800, // rémunération décidée
|
// remuneration: 2800, // rémunération décidée
|
||||||
},
|
// },
|
||||||
},
|
},
|
||||||
range: {
|
range: {
|
||||||
start: "2021-01",
|
start: "2021-01",
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
body {
|
||||||
|
background-color: whitesmoke;
|
||||||
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
@ -6,22 +9,75 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
button {
|
button {
|
||||||
border: none;
|
|
||||||
color: white;
|
color: white;
|
||||||
padding: 15px 32px;
|
padding: 15px 32px;
|
||||||
|
box-shadow: 1px 1px 2px gray;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
color: black;
|
background-color: white;
|
||||||
|
transition: all 0.2s ease-out;
|
||||||
}
|
}
|
||||||
|
button:hover {
|
||||||
|
transition: all 0.2s ease-out;
|
||||||
|
}
|
||||||
|
|
||||||
.validate {
|
.validate {
|
||||||
|
border: 2px solid green;
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
.validate:hover {
|
||||||
background-color: green;
|
background-color: green;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
.cancel {
|
.cancel {
|
||||||
|
border: 2px solid red;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
.cancel:hover {
|
||||||
background-color: red;
|
background-color: red;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
.edit {
|
.edit {
|
||||||
background-color: orange;
|
border: 2px solid orange;
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
.edit:hover {
|
||||||
|
background-color: orange;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.boxed {
|
||||||
|
box-shadow: 2px 2px 5px gray;
|
||||||
|
border-left: 1rem solid black;
|
||||||
|
border-radius: 10px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hightlights {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 1fr);
|
||||||
|
grid-gap: 20px;
|
||||||
|
}
|
||||||
|
.hightlight > ul{
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
flex-flow: column wrap;
|
||||||
|
padding-inline-start: 0;
|
||||||
|
margin-block-start: 0;
|
||||||
|
margin-block-end: 0;
|
||||||
|
}
|
||||||
|
.hightlight > ul > li {
|
||||||
|
margin: 5px;
|
||||||
|
flex-direction: column-reverse;
|
||||||
|
}
|
||||||
|
.hightlight > ul :first-child{
|
||||||
|
font-size: 3rem;
|
||||||
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.hightlight > ul :last-child{
|
||||||
|
text-align: end;
|
||||||
}
|
}
|
||||||
|
@ -1,18 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<h1>Home</h1>
|
|
||||||
<revenus-chart/>
|
|
||||||
<section id="selector">
|
<section id="selector">
|
||||||
<month-selector/>
|
<month-selector/>
|
||||||
</section>
|
</section>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
<section id="months">
|
<section id="months">
|
||||||
<h2> Mois </h2>
|
|
||||||
<create-month/>
|
<create-month/>
|
||||||
<months-list/>
|
<months-list/>
|
||||||
</section>
|
</section>
|
||||||
<section id="stats">
|
<section id="stats">
|
||||||
<h2>Résumé</h2>
|
<ca-on-period/>
|
||||||
<highlights/>
|
<ca-repartition/>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -22,16 +19,16 @@ import { mapActions } from 'vuex'
|
|||||||
import MonthsList from '../components/MonthsUl.vue'
|
import MonthsList from '../components/MonthsUl.vue'
|
||||||
import CreateMonth from '../components/CreateMonth.vue'
|
import CreateMonth from '../components/CreateMonth.vue'
|
||||||
import MonthSelector from '../components/monthSelector.vue'
|
import MonthSelector from '../components/monthSelector.vue'
|
||||||
import Highlights from '../components/hightlights.vue'
|
import caOnPeriod from '../components/caOnPeriod.vue'
|
||||||
import RevenusChart from '../components/graphs/RevenusChart.vue'
|
import caRepartition from '../components/caRepartition.vue'
|
||||||
export default {
|
export default {
|
||||||
name: 'home',
|
name: 'home',
|
||||||
components: {
|
components: {
|
||||||
MonthsList: MonthsList,
|
MonthsList: MonthsList,
|
||||||
CreateMonth: CreateMonth,
|
CreateMonth: CreateMonth,
|
||||||
MonthSelector: MonthSelector,
|
MonthSelector: MonthSelector,
|
||||||
highlights: Highlights,
|
caOnPeriod: caOnPeriod,
|
||||||
RevenusChart: RevenusChart,
|
caRepartition: caRepartition,
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
return {}
|
return {}
|
||||||
@ -44,22 +41,25 @@ export default {
|
|||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
//this.loadMonths()
|
this.loadMonths()
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
#selector {
|
||||||
|
display: none;
|
||||||
|
background-color: gray;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
#content {
|
#content {
|
||||||
display: inline-flex;
|
display: grid;
|
||||||
flex-direction: row;
|
grid-template-columns: 1fr 3fr;
|
||||||
background-color: red;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
#content > * {
|
#content > * {
|
||||||
margin: 10px;
|
margin: 20px;
|
||||||
}
|
}
|
||||||
#months {
|
#stats {
|
||||||
flex-basis: 60%;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
ca_theo,nbr_seances,ca_retro,ca_react,retro,remuneration,date
|
ca_theo,nbr_seances,ca_retro,ca_react,retro,remuneration,date
|
||||||
,,6747,,893,2000,2021-01
|
7000,,6747,,893,2000,2021-01
|
||||||
,,5183,,665,1500,2021-02
|
5200,,5183,,665,1500,2021-02
|
||||||
,,7088,,855,2000,2021-03
|
7100,,7088,,855,2000,2021-03
|
||||||
,,4194,5630,627,2000,2021-04
|
5700,,4194,5630,627,2000,2021-04
|
||||||
,,5564,6335,699,2800,2021-05
|
6500,,5564,6335,699,2800,2021-05
|
||||||
,,5442,6335,638,2800,2021-06
|
6725,235,5442,6376,638,2800,2021-06
|
||||||
|
2176,81,1274,,172,2000,2021-07
|
|
Loading…
Reference in New Issue
Block a user