Skip to content
Snippets Groups Projects
Merged Timothee P requested to merge redmine-issues/12363 into develop
1 file
+ 23
5
Compare changes
  • Side-by-side
  • Inline
@@ -346,7 +346,7 @@ export default {
},
computed: {
...mapGetters(["project"]),
...mapGetters(["project", "permissions"]),
...mapGetters("feature_type", ["feature_type"]),
...mapState(["user", "USER_LEVEL_PROJECTS"]),
...mapState("map", ["basemaps"]),
@@ -688,6 +688,15 @@ export default {
}
if (is_valid) {
//* if moderate project modified by someone else than admin or moderator, switch status to pending
if (
this.project.moderation &&
!this.permissions.is_project_administrator &&
!this.permissions.is_project_moderator
) {
this.form.status.value = {"name":"Brouillon","value":"draft"};
this.updateStore()
}
this.$store.dispatch("feature/SEND_FEATURE", this.currentRouteName);
}
},
@@ -919,10 +928,14 @@ export default {
const currentFeatureId = this.$route.params.slug_signal;
setTimeout(
function () {
let project_id=this.$route.params.slug.split('-')[0];
let project_id = this.$route.params.slug.split("-")[0];
const mvtUrl = `${this.$store.state.configuration.VUE_APP_DJANGO_API_BASE}/features.mvt/?tile={z}/{x}/{y}&project_id=${project_id}`;
mapUtil.addVectorTileLayer(mvtUrl,this.$route.params.slug,this.$store.state.feature_type.feature_types);
mapUtil.addVectorTileLayer(
mvtUrl,
this.$route.params.slug,
this.$store.state.feature_type.feature_types
);
}.bind(this),
1000
);
@@ -936,7 +949,12 @@ export default {
const allFeaturesExceptCurrent = features.filter(
(feat) => feat.id !== currentFeatureId
);
mapUtil.addFeatures(allFeaturesExceptCurrent,{},false,this.$store.state.feature_type.feature_types);
mapUtil.addFeatures(
allFeaturesExceptCurrent,
{},
false,
this.$store.state.feature_type.feature_types
);
if (this.currentRouteName === "editer-signalement") {
const currentFeature = features.filter(
(feat) => feat.id === currentFeatureId
Loading