request date fix

This commit is contained in:
relaxed 2024-08-28 19:13:43 +05:00
parent fbe65305e2
commit 33a011d723

View File

@ -76,11 +76,16 @@
} }
function get_rasp() { function get_rasp() {
const startDate = `${start_date.getDate()}.${start_date.getMonth() + 1}.${start_date.getFullYear()}`; const s_date = start_date.getDate();
const s_month = start_date.getMonth() + 1;
const startDate = `${s_date < 10 ? 0 : ""}${s_date}.${s_month < 10 ? 0 : ""}${s_month}.${start_date.getFullYear()}`;
end_date = new Date(start_date); end_date = new Date(start_date);
end_date.setDate(start_date.getDate() + 6); end_date.setDate(start_date.getDate() + 6);
end_date.setHours(23, 59, 59, 999); end_date.setHours(23, 59, 59, 999);
const endDate = `${end_date.getDate()}.${end_date.getMonth() + 1}.${end_date.getFullYear()}`;
const e_date = end_date.getDate();
const e_month = end_date.getMonth() + 1;
const endDate = `${e_date < 10 ? 0 : ""}${e_date}.${e_month < 10 ? 0 : ""}${e_month}.${end_date.getFullYear()}`;
const date_full = `${startDate}-${endDate}`; const date_full = `${startDate}-${endDate}`;