Skip to content

Commit 3a10c85

Browse files
committed
Re-add project area #3436
1 parent 5d604d3 commit 3a10c85

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

grails-app/controllers/au/org/ala/merit/ProjectController.groovy

+4
Original file line numberDiff line numberDiff line change
@@ -918,6 +918,10 @@ class ProjectController {
918918
if (model.activity.siteId) {
919919
model.reportSite = sites?.find { it.siteId == model.activity.siteId }
920920
}
921+
Map projectArea = sites?.find { it.type == SiteService.SITE_TYPE_PROJECT_AREA }
922+
if (projectArea) {
923+
model.projectArea = siteService.getSiteGeoJson(projectArea.siteId)
924+
}
921925
model.selectableFeaturesUrl = g.createLink(action:'ajaxProjectSites', id:projectId)
922926
}
923927
model

grails-app/views/activity/activityReport.gsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
};
144144
145145
var locked = ${locked};
146-
var metaModel = <fc:modelAsJavascript model="${metaModel}" default="{}"/>
146+
var metaModel = <fc:modelAsJavascript model="${metaModel}" default="{}"/>;
147147
var master = null;
148148
var mapPopupSelector = '#map-modal';
149149
var reportMasterOptions = {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
load("../../utils/audit.js");
2+
let projectId = '7743afa2-6a8d-4476-a38d-964c037421bd';
3+
let excludedNames = ['219', '259', '284', '1022', '1331', '830', '228', '1434', '1047'];
4+
5+
db.site.find({projects:projectId, type:'worksArea', name: {$nin: excludedNames}}).forEach(function(site) {
6+
site.status = 'active';
7+
site.notes = null;
8+
9+
db.site.replaceOne({_id:site._id}, site);
10+
11+
audit('site', site.siteId, 'update', '<system>');
12+
});

0 commit comments

Comments
 (0)