Skip to content

Commit f72246b

Browse files
committed
Merge pull request AtlasOfLivingAustralia#27 from sat01a/master
Synched with old master.
2 parents 3c3a5f7 + 09dd693 commit f72246b

File tree

1 file changed

+21
-17
lines changed

1 file changed

+21
-17
lines changed

fieldcapture-hubs-plugin/web-app/js/projects.js

+21-17
Original file line numberDiff line numberDiff line change
@@ -226,23 +226,27 @@ function isPastStage(timeline, currentStage, period) {
226226

227227
function getBugetHeaders(timeline) {
228228
var headers = [];
229-
var startYr = '';
230-
var endYr = '';
231-
$.each(timeline, function (i, period) {
232-
if (i == 0){
233-
startYr = moment(period.fromDate).format('YYYY')
234-
endYr = moment(period.toDate).format('YYYY');
235-
}
236-
else if(timeline.length == i+1)
237-
endYr = moment(period.toDate).format('YYYY');
238-
});
239-
var count = endYr - startYr;
240-
for (i = 0; i < count; i++){
241-
//todo: check whether we need to cap the budget years
242-
//if(i < 7)
243-
headers.push(startYr + '/' + ++startYr);
244-
}
245-
return headers;
229+
var startYr = moment(timeline[0].fromDate).format('YYYY');
230+
var endYr = moment(timeline[timeline.length-1].toDate).format('YYYY');;
231+
var startMonth = moment(timeline[0].fromDate).format('M');
232+
var endMonth = moment(timeline[timeline.length-1].toDate).format('M');
233+
234+
//Is startYr is between jan to june?
235+
if(startMonth >= 1 && startMonth <= 6 ){
236+
startYr--;
237+
}
238+
239+
//Is the end year is between july to dec?
240+
if(endMonth >= 7 && endMonth <= 12 ){
241+
endYr++;
242+
}
243+
244+
var count = endYr - startYr;
245+
for (i = 0; i < count; i++){
246+
headers.push(startYr + '/' + ++startYr);
247+
}
248+
return headers;
249+
246250
}
247251

248252
function isValid(p, a) {

0 commit comments

Comments
 (0)