mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Miglioramento modulo Statistiche
This commit is contained in:
91
modules/statistiche/js/functions.js
Normal file
91
modules/statistiche/js/functions.js
Normal file
@ -0,0 +1,91 @@
|
||||
var manager = manager ? manager : undefined;
|
||||
|
||||
function remove_calendar(button) {
|
||||
var name = $(button).parent().find("input").attr("id");
|
||||
|
||||
if (manager.remove(name)) {
|
||||
$("#group-" + name).remove();
|
||||
} else {
|
||||
swal({
|
||||
title: globals.translations.singleCalendar,
|
||||
type: "info",
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function add_calendar() {
|
||||
var last = $("#calendars").find("input").last().attr("id");
|
||||
var last_id = last ? last.split("-")[1] : 0;
|
||||
last_id = parseInt(last_id) + 1;
|
||||
|
||||
var name = "calendar-" + last_id;
|
||||
|
||||
$("#calendars").append(`<div class="col-md-4" id="group-` + name + `">
|
||||
<div class="input-group">
|
||||
<span class="input-group-addon before">` + last_id + `</span>
|
||||
<input class="form-control calendar-input text-center" type="text" name="` + name + `" id="` + name + `"/>
|
||||
<span class="input-group-addon after clickable btn btn-danger" onclick="remove_calendar(this)">
|
||||
<i class="fa fa-trash-o"></i>
|
||||
</span>
|
||||
</div>
|
||||
<br>
|
||||
</div>`);
|
||||
|
||||
// Calendario principale
|
||||
ranges = {};
|
||||
ranges[globals.translations.today] = [moment(), moment()];
|
||||
ranges[globals.translations.firstThreemester] = [moment("01", "MM"), moment("03", "MM").endOf('month')];
|
||||
ranges[globals.translations.secondThreemester] = [moment("04", "MM"), moment("06", "MM").endOf('month')];
|
||||
ranges[globals.translations.thirdThreemester] = [moment("07", "MM"), moment("09", "MM").endOf('month')];
|
||||
ranges[globals.translations.fourthThreemester] = [moment("10", "MM"), moment("12", "MM").endOf('month')];
|
||||
ranges[globals.translations.firstSemester] = [moment("01", "MM"), moment("06", "MM").endOf('month')];
|
||||
ranges[globals.translations.secondSemester] = [moment("06", "MM"), moment("12", "MM").endOf('month')];
|
||||
ranges[globals.translations.thisMonth] = [moment().startOf('month'), moment().endOf('month')];
|
||||
ranges[globals.translations.lastMonth] = [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')];
|
||||
ranges[globals.translations.thisYear] = [moment().startOf('year'), moment().endOf('year')];
|
||||
ranges[globals.translations.lastYear] = [moment().subtract(1, 'year').startOf('year'), moment().subtract(1, 'year').endOf('year')];
|
||||
|
||||
|
||||
$("#" + name).daterangepicker({
|
||||
locale: {
|
||||
customRangeLabel: globals.translations.custom,
|
||||
applyLabel: globals.translations.apply,
|
||||
cancelLabel: globals.translations.cancel,
|
||||
fromLabel: globals.translations.from,
|
||||
toLabel: globals.translations.to,
|
||||
},
|
||||
startDate: globals.start_date_formatted,
|
||||
endDate: globals.end_date_formatted,
|
||||
applyClass: "btn btn-success btn-sm",
|
||||
cancelClass: "btn btn-danger btn-sm",
|
||||
ranges: ranges,
|
||||
linkedCalendars: false
|
||||
}, function (start, end) {
|
||||
var name = $(this.element).attr("id");
|
||||
var start = start.format("YYYY-MM-DD");
|
||||
var end = end.format("YYYY-MM-DD");
|
||||
|
||||
manager.update(name, start, end);
|
||||
});
|
||||
|
||||
// Inizializzazone calendario
|
||||
var calendar = manager.add(last_id, name);
|
||||
|
||||
init_calendar(calendar);
|
||||
|
||||
manager.init(name);
|
||||
}
|
||||
|
||||
function get_months(start, end) {
|
||||
var months = [];
|
||||
while (start.isSameOrBefore(end, "month")) {
|
||||
string = start.format("MMMM YYYY");
|
||||
|
||||
months.push(string.charAt(0).toUpperCase() + string.slice(1));
|
||||
|
||||
start.add(1, "months");
|
||||
}
|
||||
|
||||
return months;
|
||||
}
|
||||
|
Reference in New Issue
Block a user