This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/static/js/check.js
2024-11-22 22:56:11 +03:00

8 lines
377 B
JavaScript

function check_month(now_month, now_year) {
let selected_month = document.getElementById('month').value;
let selected_year = document.getElementById('year').value;
if (selected_month > now_month && selected_year == now_year) {
alert('Невозможно сформировать отчет за будущий период!');
return false;
}
}