Skip to content

Commit 0fd7391

Browse files
committed
Added fundingVerificationDate to Project AtlasOfLivingAustralia/fieldcapture#2973
1 parent 00deb0b commit 0fd7391

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

grails-app/conf/data/mapping.json

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
"fundingType": {
6161
"type" : "keyword"
6262
},
63+
"fundingVerificationDate": {
64+
"type": "date",
65+
"ignore_malformed": true
66+
},
6367
"status": {
6468
"type" : "keyword"
6569
},

grails-app/domain/au/org/ala/ecodata/Project.groovy

+3
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ class Project {
7070
List <String> ecoScienceType = []
7171
List <String> tags = []
7272
double funding
73+
/** The most recent date the correctness of the project funding was checked */
74+
Date fundingVerificatonDate
7375
String orgIdGrantee, orgIdSponsor, orgIdSvcProvider
7476
String userCreated, userLastModified
7577
boolean isExternal = false // An external project only has a listing with the ALA and is not using data capture capabilities
@@ -236,6 +238,7 @@ class Project {
236238
mapDisplays nullable: true
237239
terminationReason nullable: true
238240
fundingType nullable: true
241+
fundingVerificatonDate nullable: true
239242
electionCommitmentYear nullable: true
240243
geographicInfo nullable:true
241244
portfolio nullable: true

0 commit comments

Comments
 (0)