comment all console.log

This commit is contained in:
2021-08-11 10:26:59 +02:00
committed by Marc Ducobu
parent 8d98a144fd
commit a1435314a0
4 changed files with 49 additions and 49 deletions

View File

@@ -319,7 +319,7 @@ export default {
]),
startDate: {
get() {
console.log('get start date', this.$store.state.startDate);
//console.log('get start date', this.$store.state.startDate);
return dateToISO(this.$store.state.startDate);
},
set(v) {
@@ -328,7 +328,7 @@ export default {
},
endDate: {
get() {
console.log('get end date', this.$store.state.endDate);
//console.log('get end date', this.$store.state.endDate);
return dateToISO(this.$store.state.endDate);
},
set(v) {
@@ -345,20 +345,20 @@ export default {
},
availableForCheckGoal() {
let pickedIds = this.$store.state.goalsPicked.map(g => g.goal.id);
console.log('pickeds goals id', pickedIds);
console.log(this.$store.state.goalsForAction);
//console.log('pickeds goals id', pickedIds);
//console.log(this.$store.state.goalsForAction);
return this.$store.state.goalsForAction.filter(g => !pickedIds.includes(g.id));
},
personsPicked: {
get() {
let s = this.$store.state.personsPicked.map(p => p.id);
console.log('persons picked', s);
//console.log('persons picked', s);
return s;
},
set(v) {
console.log('persons picked', v);
//console.log('persons picked', v);
this.$store.commit('setPersonsPickedIds', v);
}
},
@@ -368,34 +368,34 @@ export default {
this.showAddObjective = !this.showAddObjective;
},
addGoal(g) {
console.log('add Goal', g);
//console.log('add Goal', g);
this.$store.commit('addGoal', g);
},
removeGoal(g) {
console.log('remove goal', g);
//console.log('remove goal', g);
this.$store.commit('removeGoal', g);
},
toggleAddEvaluation() {
this.showAddEvaluation = !this.showAddEvaluation;
},
setHandlingThirdParty({selected, modal}) {
console.log('setHandlingThirdParty', selected);
//console.log('setHandlingThirdParty', selected);
this.$store.commit('setHandlingThirdParty', selected.shift().result);
this.$refs.handlingThirdPartyPicker.resetSearch();
modal.showModal = false;
},
removeHandlingThirdParty() {
console.log('removeHandlingThirdParty');
//console.log('removeHandlingThirdParty');
this.$store.commit('setHandlingThirdParty', null);
},
addThirdParties({selected, modal}) {
console.log('addThirdParties', selected);
//console.log('addThirdParties', selected);
this.$store.commit('addThirdParties', selected.map(r => r.result));
this.$refs.thirdPartyPicker.resetSearch();
modal.showModal = false;
},
removeThirdParty(t) {
console.log('remove third party', t);
//console.log('remove third party', t);
this.$store.commit('removeThirdParty', t);
},
submit() {